ETH Price: $3,361.50 (-2.69%)
Gas: 2 Gwei

Token

LordOfEth (LOE)
 

Overview

Max Total Supply

7,000,000,000 LOE

Holders

90

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
103,755,770.045080988 LOE

Value
$0.00
0x2733c36638ce886e4c528fd523dc11094fb5b8fe
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:
LORDOFETH

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-04
*/

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

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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

contract LORDOFETH is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    address deadAddress = 0x000000000000000000000000000000000000dEaD;

    string private _name = "LordOfEth";
    string private _symbol = "LOE";
    uint8 private _decimals = 9;    
    uint256 private initialsupply = 7_000_000_000;
    uint256 private _tTotal = initialsupply * 10 ** _decimals;
    address payable private _marketingWallet;
    
    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping(address => uint256) private buycooldown;
    mapping(address => uint256) private sellcooldown;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _isExcluded;
    mapping (address => bool) private _isBlacklisted;
    address[] private _excluded;
    bool private cooldownEnabled = true;
    uint256 public cooldown = 30 seconds;
    
    uint256 private constant MAX = ~uint256(0);
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;
    uint256 public _liquidityFee = 2;
    uint256 private _previousLiquidityFee = _liquidityFee;
    uint256 public _marketingFee = 5;
    uint256 private _previousMarketingFee = _marketingFee;
    
    uint256 private maxBuyPercent = 1;
    uint256 private maxBuyDivisor = 100;
    uint256 private _maxBuyAmount = (_tTotal * maxBuyPercent) / maxBuyDivisor;
   
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 private numTokensSellToAddToLiquidity = _tTotal / 100; // 1%
    
    event ToMarketing(uint256 bnbSent);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor (address marketingWallet) {
        _rOwned[_msgSender()] = _rTotal;
         _marketingWallet = payable(marketingWallet);
        // Pancake Swap V2 address
        // IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E);
        // uniswap address
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingWallet] = 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 allowance(address owner, address spender) public view override returns (uint256) {return _allowances[owner][spender];}
    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function setNumTokensSellToAddToLiquidity(uint256 percent, uint256 divisor) external onlyOwner() {
        uint256 swapAmount = _tTotal.mul(percent).div(divisor);
        numTokensSellToAddToLiquidity = swapAmount;
    }
        
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }    
    
    function setMarketingFeePercent(uint256 marketingFee) external onlyOwner() {
        _marketingFee = marketingFee;
    }    
    
    function setCooldown(uint256 _cooldown) external onlyOwner() {
        cooldown = _cooldown;
    }
    
    function setMaxBuyPercent(uint256 percent, uint divisor) external onlyOwner {
        require(percent >= 1 && divisor <= 1000); // cannot set lower than .1%
        uint256 new_tx = _tTotal.mul(percent).div(divisor);
        require(new_tx >= (_tTotal / 1000), "Max tx must be above 0.1% of total supply.");
        _maxBuyAmount = new_tx;
    }

    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 setBlacklistStatus(address account, bool Blacklisted) external onlyOwner {
            if (Blacklisted = true) {
                _isBlacklisted[account] = true; 
            } else if(Blacklisted = false) {
                _isBlacklisted[account] = false;
                }
    }
    
    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 isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function excludeFromReward(address account) public onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        // require(account != 0x10ED43C718714eb63d5aA57B78B54704E256024E, '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 excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    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) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity, tMarketing);
    }

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rMarketing = tMarketing.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rMarketing);
        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 _takeMarketing(uint256 tMarketing) private {
        uint256 currentRate =  _getRate();
        uint256 rMarketing = tMarketing.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing);
    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateMarketingFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_marketingFee).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 && _marketingFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousMarketingFee = _marketingFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _marketingFee = 0;
        _liquidityFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _marketingFee = _previousMarketingFee;
        _liquidityFee = _previousLiquidityFee;
    }

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

    // swapAndLiquify takes the balance to be liquified and make sure it is equally distributed
    // in BNB and Harold
    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // 1/2 balance is sent to the marketing wallet, 1/2 is added to the liquidity pool
        uint256 marketingTokenBalance = contractTokenBalance.div(2);
        uint256 liquidityTokenBalance = contractTokenBalance.sub(marketingTokenBalance);
        uint256 tokenBalanceToLiquifyAsBNB = liquidityTokenBalance.div(2);
        uint256 tokenBalanceToLiquify = liquidityTokenBalance.sub(tokenBalanceToLiquifyAsBNB);
        uint256 initialBalance = address(this).balance;

        // 75% of the balance will be converted into BNB
        uint256 tokensToSwapToBNB = tokenBalanceToLiquifyAsBNB.add(marketingTokenBalance);

        swapTokensForEth(tokensToSwapToBNB);

        uint256 bnbSwapped = address(this).balance.sub(initialBalance);

        uint256 bnbToLiquify = bnbSwapped.div(3);

        addLiquidity(tokenBalanceToLiquify, bnbToLiquify);

        emit SwapAndLiquify(tokenBalanceToLiquifyAsBNB, bnbToLiquify, tokenBalanceToLiquify);

        uint256 marketingBNB = bnbSwapped.sub(bnbToLiquify);

        // Transfer the BNB to the marketing wallet
        _marketingWallet.transfer(marketingBNB);
        emit ToMarketing(marketingBNB);
    }

    function clearStuckBalance(uint256 amountPercentage) external onlyOwner {
        require(amountPercentage <= 100);
        uint256 amountBNB = address(this).balance;
        payable(_marketingWallet).transfer(amountBNB.mul(amountPercentage).div(100));
    }

    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
        );
    }
    
    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 _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(_isBlacklisted[from] == false, "Hehe");
        require(_isBlacklisted[to] == false, "Hehe");
        if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] && cooldownEnabled) {
                require(amount <= _maxBuyAmount);
                require(buycooldown[to] < block.timestamp);
                buycooldown[to] = block.timestamp.add(cooldown);        
            } else if(from == uniswapV2Pair && cooldownEnabled && !_isExcludedFromFee[to]) {
            require(sellcooldown[from] <= block.timestamp);
            sellcooldown[from] = block.timestamp.add(cooldown);
        }
            
        uint256 contractTokenBalance = balanceOf(address(this));

        if(contractTokenBalance >= numTokensSellToAddToLiquidity)
        {
            contractTokenBalance = numTokensSellToAddToLiquidity;
        }

        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled            
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            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 transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    //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, uint256 tMarketing) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);        
        _takeMarketing(tMarketing);
        _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, uint256 tMarketing) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);        
        _takeMarketing(tMarketing);
        _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, uint256 tMarketing) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);       
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _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);        
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function cooldownStatus() public view returns (bool) {
        return cooldownEnabled;
    }
    
    function setCooldownEnabled(bool onoff) external onlyOwner() {
        cooldownEnabled = onoff;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"marketingWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"bnbSent","type":"uint256"}],"name":"ToMarketing","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":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountPercentage","type":"uint256"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"Blacklisted","type":"bool"}],"name":"setBlacklistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cooldown","type":"uint256"}],"name":"setCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"setMaxBuyPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600380546001600160a01b03191661dead179055610100604052600960c081905268098dee4c89ecc8ae8d60bb1b60e090815262000041916004919062000468565b50604080518082019091526003808252624c4f4560e81b60209092019182526200006e9160059162000468565b506006805460ff191660099081179091556401a13b86006007556200009590600a620005a0565b600754620000a4919062000661565b60088190556013805460ff19166001179055601e601455620000c990600019620006da565b620000d79060001962000683565b60155560006017556017546018556002601955601954601a556005601b55601b54601c556001601d556064601e55601e54601d546008546200011a919062000661565b62000126919062000540565b601f556020805461ff001916610100179055600854620001499060649062000540565b6021553480156200015957600080fd5b50604051620036a7380380620036a78339810160408190526200017c916200050e565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601554336000908152600a602090815260409182902092909255600980546001600160a01b0319166001600160a01b038516179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b1580156200023a57600080fd5b505afa1580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027591906200050e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002be57600080fd5b505afa158015620002d3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f991906200050e565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200034257600080fd5b505af115801562000357573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037d91906200050e565b6001600160601b0319606091821b811660a0529082901b166080526001600f6000620003b16000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600f909352818320805485166001908117909155600954909116835291208054909216179055620004103390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200045891815260200190565b60405180910390a350506200071d565b82805462000476906200069d565b90600052602060002090601f0160209004810192826200049a5760008555620004e5565b82601f10620004b557805160ff1916838001178555620004e5565b82800160010185558215620004e5579182015b82811115620004e5578251825591602001919060010190620004c8565b50620004f3929150620004f7565b5090565b5b80821115620004f35760008155600101620004f8565b6000602082840312156200052157600080fd5b81516001600160a01b03811681146200053957600080fd5b9392505050565b60008262000552576200055262000707565b500490565b600181815b80851115620005985781600019048211156200057c576200057c620006f1565b808516156200058a57918102915b93841c93908002906200055c565b509250929050565b60006200053960ff841683600082620005bc575060016200065b565b81620005cb575060006200065b565b8160018114620005e45760028114620005ef576200060f565b60019150506200065b565b60ff841115620006035762000603620006f1565b50506001821b6200065b565b5060208310610133831016604e8410600b841016171562000634575081810a6200065b565b62000640838362000557565b8060001904821115620006575762000657620006f1565b0290505b92915050565b60008160001904831182151516156200067e576200067e620006f1565b500290565b600082821015620006985762000698620006f1565b500390565b600181811c90821680620006b257607f821691505b60208210811415620006d457634e487b7160e01b600052602260045260246000fd5b50919050565b600082620006ec57620006ec62000707565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60805160601c60a05160601c612f1f62000788600039600081816104f401528181611a3501528181611b3f0152611c3201526000818161032501528181611a71015281816123de015281816124a6015281816124e201528181612554015261257b0152612f1f6000f3fe60806040526004361061026b5760003560e01c806352390c02116101445780638fcc250d116100b6578063b6c523241161007a578063b6c5232414610768578063c49b9a801461077d578063dd4670641461079d578063dd62ed3e146107bd578063ea2f0b3714610803578063f2fde38b1461082357600080fd5b80638fcc250d146106de57806395d89b41146106fe578063a457c2d714610713578063a69df4b514610733578063a9059cbb1461074857600080fd5b8063715018a611610108578063715018a614610624578063787a08a614610639578063809157c51461064f57806388f82020146106675780638da5cb5b146106a05780638ee88c53146106be57600080fd5b806352390c02146105755780635342acb4146105955780635932ead1146105ce5780636bc87c3a146105ee57806370a082311461060457600080fd5b80633685d419116101dd5780634549b039116101a15780634549b039146104a2578063457c194c146104c257806349bd5a5e146104e25780634a74bb02146105165780634f662566146105355780634fc3f41a1461055557600080fd5b80633685d4191461040c578063395093511461042c5780633b124fe71461044c5780633bd5d17314610462578063437823ec1461048257600080fd5b806318160ddd1161022f57806318160ddd1461035f5780631da1db5e1461037457806322976e0d1461039457806323b872dd146103aa5780632d838119146103ca578063313ce567146103ea57600080fd5b806303d29d281461027757806306fdde0314610299578063095ea7b3146102c457806313114a9d146102f45780631694505e1461031357600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004612b59565b610843565b005b3480156102a557600080fd5b506102ae6108a1565b6040516102bb9190612c61565b60405180910390f35b3480156102d057600080fd5b506102e46102df366004612b8e565b610933565b60405190151581526020016102bb565b34801561030057600080fd5b506016545b6040519081526020016102bb565b34801561031f57600080fd5b506103477f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102bb565b34801561036b57600080fd5b50600854610305565b34801561038057600080fd5b5061029761038f366004612bd5565b61094a565b3480156103a057600080fd5b50610305601b5481565b3480156103b657600080fd5b506102e46103c5366004612b18565b6109d5565b3480156103d657600080fd5b506103056103e5366004612bd5565b610a3e565b3480156103f657600080fd5b5060065460405160ff90911681526020016102bb565b34801561041857600080fd5b50610297610427366004612aa5565b610ac2565b34801561043857600080fd5b506102e4610447366004612b8e565b610c75565b34801561045857600080fd5b5061030560175481565b34801561046e57600080fd5b5061029761047d366004612bd5565b610cab565b34801561048e57600080fd5b5061029761049d366004612aa5565b610d97565b3480156104ae57600080fd5b506103056104bd366004612bee565b610de5565b3480156104ce57600080fd5b506102976104dd366004612bd5565b610e74565b3480156104ee57600080fd5b506103477f000000000000000000000000000000000000000000000000000000000000000081565b34801561052257600080fd5b506020546102e490610100900460ff1681565b34801561054157600080fd5b50610297610550366004612c11565b610ea3565b34801561056157600080fd5b50610297610570366004612bd5565b610f7f565b34801561058157600080fd5b50610297610590366004612aa5565b610fae565b3480156105a157600080fd5b506102e46105b0366004612aa5565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156105da57600080fd5b506102976105e9366004612bba565b611179565b3480156105fa57600080fd5b5061030560195481565b34801561061057600080fd5b5061030561061f366004612aa5565b6111b6565b34801561063057600080fd5b50610297611215565b34801561064557600080fd5b5061030560145481565b34801561065b57600080fd5b5060135460ff166102e4565b34801561067357600080fd5b506102e4610682366004612aa5565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156106ac57600080fd5b506000546001600160a01b0316610347565b3480156106ca57600080fd5b506102976106d9366004612bd5565b611277565b3480156106ea57600080fd5b506102976106f9366004612c11565b6112a6565b34801561070a57600080fd5b506102ae6112f3565b34801561071f57600080fd5b506102e461072e366004612b8e565b611302565b34801561073f57600080fd5b50610297611351565b34801561075457600080fd5b506102e4610763366004612b8e565b611457565b34801561077457600080fd5b50600254610305565b34801561078957600080fd5b50610297610798366004612bba565b611464565b3480156107a957600080fd5b506102976107b8366004612bd5565b6114da565b3480156107c957600080fd5b506103056107d8366004612adf565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561080f57600080fd5b5061029761081e366004612aa5565b61155f565b34801561082f57600080fd5b5061029761083e366004612aa5565b6115aa565b6000546001600160a01b031633146108765760405162461bcd60e51b815260040161086d90612cb6565b60405180910390fd5b5060016001600160a01b0382166000908152601160205260409020805460ff191660011790555b5050565b6060600480546108b090612dcc565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612dcc565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b6000610940338484611682565b5060015b92915050565b6000546001600160a01b031633146109745760405162461bcd60e51b815260040161086d90612cb6565b606481111561098257600080fd5b60095447906001600160a01b03166108fc6109a860646109a285876117a6565b90611825565b6040518115909202916000818181858888f193505050501580156109d0573d6000803e3d6000fd5b505050565b60006109e2848484611867565b610a348433610a2f85604051806060016040528060288152602001612e7d602891396001600160a01b038a166000908152600e602090815260408083203384529091529020549190611cec565b611682565b5060019392505050565b6000601554821115610aa55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161086d565b6000610aaf611d26565b9050610abb8382611825565b9392505050565b6000546001600160a01b03163314610aec5760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03811660009081526010602052604090205460ff16610b545760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b60005b60125481101561089d57816001600160a01b031660128281548110610b7e57610b7e612e4e565b6000918252602090912001546001600160a01b03161415610c635760128054610ba990600190612db5565b81548110610bb957610bb9612e4e565b600091825260209091200154601280546001600160a01b039092169183908110610be557610be5612e4e565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600b82526040808220829055601090925220805460ff191690556012805480610c3d57610c3d612e38565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c6d81612e07565b915050610b57565b336000818152600e602090815260408083206001600160a01b03871684529091528120549091610940918590610a2f9086611d49565b3360008181526010602052604090205460ff1615610d205760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161086d565b6000610d2b83611da8565b5050506001600160a01b0386166000908152600a6020526040902054939450610d5993925084915050611e03565b6001600160a01b0383166000908152600a6020526040902055601554610d7f9082611e03565b601555601654610d8f9084611d49565b601655505050565b6000546001600160a01b03163314610dc15760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6000600854831115610e395760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161086d565b81610e59576000610e4984611da8565b5094965061094495505050505050565b6000610e6484611da8565b5093965061094495505050505050565b6000546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161086d90612cb6565b601b55565b6000546001600160a01b03163314610ecd5760405162461bcd60e51b815260040161086d90612cb6565b60018210158015610ee057506103e88111155b610ee957600080fd5b6000610f04826109a2856008546117a690919063ffffffff16565b90506103e8600854610f169190612d74565b811015610f785760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b606482015260840161086d565b601f555050565b6000546001600160a01b03163314610fa95760405162461bcd60e51b815260040161086d90612cb6565b601455565b6000546001600160a01b03163314610fd85760405162461bcd60e51b815260040161086d90612cb6565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156110505760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b606482015260840161086d565b6001600160a01b03811660009081526010602052604090205460ff16156110b95760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b6001600160a01b0381166000908152600a602052604090205415611113576001600160a01b0381166000908152600a60205260409020546110f990610a3e565b6001600160a01b0382166000908152600b60205260409020555b6001600160a01b03166000818152601060205260408120805460ff191660019081179091556012805491820181559091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319169091179055565b6000546001600160a01b031633146111a35760405162461bcd60e51b815260040161086d90612cb6565b6013805460ff1916911515919091179055565b6001600160a01b03811660009081526010602052604081205460ff16156111f357506001600160a01b03166000908152600b602052604090205490565b6001600160a01b0382166000908152600a602052604090205461094490610a3e565b6000546001600160a01b0316331461123f5760405162461bcd60e51b815260040161086d90612cb6565b600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112a15760405162461bcd60e51b815260040161086d90612cb6565b601955565b6000546001600160a01b031633146112d05760405162461bcd60e51b815260040161086d90612cb6565b60006112eb826109a2856008546117a690919063ffffffff16565b602155505050565b6060600580546108b090612dcc565b60006109403384610a2f85604051806060016040528060258152602001612ec560259139336000908152600e602090815260408083206001600160a01b038d1684529091529020549190611cec565b6001546001600160a01b031633146113b75760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b606482015260840161086d565b60025442116114085760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015260640161086d565b600154600080546040516001600160a01b039384169390911691600080516020612ea583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610940338484611867565b6000546001600160a01b0316331461148e5760405162461bcd60e51b815260040161086d90612cb6565b6020805461ff0019166101008315159081029190911782556040519081527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159910160405180910390a150565b6000546001600160a01b031633146115045760405162461bcd60e51b815260040161086d90612cb6565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556115338142612d5c565b600255600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a350565b6000546001600160a01b031633146115895760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b6000546001600160a01b031633146115d45760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b0381166116395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086d565b600080546040516001600160a01b0380851693921691600080516020612ea583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166116e45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161086d565b6001600160a01b0382166117455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161086d565b6001600160a01b038381166000818152600e602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000826117b557506000610944565b60006117c18385612d96565b9050826117ce8583612d74565b14610abb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161086d565b6000610abb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e45565b6001600160a01b0383166118cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161086d565b6001600160a01b03821661192d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161086d565b6000811161198f5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161086d565b6001600160a01b03831660009081526011602052604090205460ff16156119e15760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526011602052604090205460ff1615611a335760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015611aa657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611acb57506001600160a01b0382166000908152600f602052604090205460ff16155b8015611ad9575060135460ff165b15611b3d57601f54811115611aed57600080fd5b6001600160a01b0382166000908152600c60205260409020544211611b1157600080fd5b601454611b1f904290611d49565b6001600160a01b0383166000908152600c6020526040902055611bf7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015611b80575060135460ff165b8015611ba557506001600160a01b0382166000908152600f602052604090205460ff16155b15611bf7576001600160a01b0383166000908152600d6020526040902054421015611bcf57600080fd5b601454611bdd904290611d49565b6001600160a01b0384166000908152600d60205260409020555b6000611c02306111b6565b90506021548110611c1257506021545b60215481108015908190611c29575060205460ff16155b8015611c6757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611c7a5750602054610100900460ff165b15611c8d576021549150611c8d82611e73565b6001600160a01b0385166000908152600f602052604090205460019060ff1680611ccf57506001600160a01b0385166000908152600f602052604090205460ff165b15611cd8575060005b611ce486868684611fcb565b505050505050565b60008184841115611d105760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612db5565b95945050505050565b6000806000611d3361214e565b9092509050611d428282611825565b9250505090565b600080611d568385612d5c565b905083811015610abb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161086d565b6000806000806000806000806000806000611dc28c6122d0565b93509350935093506000806000611de38f878787611dde611d26565b612325565b919f509d509b509599509397509195509350505050919395979092949650565b6000610abb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cec565b60008183611e665760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612d74565b6020805460ff191660011790556000611e8d826002611825565b90506000611e9b8383611e03565b90506000611eaa826002611825565b90506000611eb88383611e03565b9050476000611ec78487611d49565b9050611ed281612387565b6000611ede4784611e03565b90506000611eed826003611825565b9050611ef9858261254e565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a16000611f468383611e03565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611f81573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506020805460ff191690555050505050505050565b80611fd857611fd8612663565b6001600160a01b03841660009081526010602052604090205460ff16801561201957506001600160a01b03831660009081526010602052604090205460ff16155b1561202e576120298484846126a8565b61212c565b6001600160a01b03841660009081526010602052604090205460ff1615801561206f57506001600160a01b03831660009081526010602052604090205460ff165b1561207f576120298484846127ee565b6001600160a01b03841660009081526010602052604090205460ff161580156120c157506001600160a01b03831660009081526010602052604090205460ff16155b156120d1576120298484846128ad565b6001600160a01b03841660009081526010602052604090205460ff16801561211157506001600160a01b03831660009081526010602052604090205460ff165b1561212157612029848484612907565b61212c8484846128ad565b8061214857612148601854601755601c54601b55601a54601955565b50505050565b6015546008546000918291825b6012548110156122a05782600a60006012848154811061217d5761217d612e4e565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121e8575081600b6000601284815481106121c1576121c1612e4e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156121fe57601554600854945094505050509091565b612244600a60006012848154811061221857612218612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e03565b925061228c600b60006012848154811061226057612260612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e03565b91508061229881612e07565b91505061215b565b506008546015546122b091611825565b8210156122c7576015546008549350935050509091565b90939092509050565b60008060008060006122e186612990565b905060006122ee876129ac565b905060006122fb886129c8565b905060006123158361230f84818d89611e03565b90611e03565b9993985091965094509092505050565b600080808061233489866117a6565b9050600061234289876117a6565b9050600061235088886117a6565b9050600061235e8a896117a6565b905060006123728361230f84818989611e03565b949d949c50929a509298505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bc576123bc612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243557600080fd5b505afa158015612449573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246d9190612ac2565b8160018151811061248057612480612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250506124cb307f000000000000000000000000000000000000000000000000000000000000000084611682565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612520908590600090869030904290600401612ceb565b600060405180830381600087803b15801561253a57600080fd5b505af1158015611ce4573d6000803e3d6000fd5b612579307f000000000000000000000000000000000000000000000000000000000000000084611682565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806125c06000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561262357600080fd5b505af1158015612637573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061265c9190612c33565b5050505050565b6017541580156126735750601954155b801561267f5750601b54155b1561268657565b60178054601855601b8054601c5560198054601a556000928390559082905555565b60008060008060008060006126bc88611da8565b965096509650965096509650965061270288600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546127319088611e03565b6001600160a01b03808c166000908152600a602052604080822093909355908b16815220546127609087611d49565b6001600160a01b038a166000908152600a6020526040902055612782826129e4565b61278b816129e4565b6127958584612a6c565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516127da91815260200190565b60405180910390a350505050505050505050565b600080600080600080600061280288611da8565b965096509650965096509650965061284887600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b03808c166000908152600a6020908152604080832094909455918c168152600b909152205461287e9085611d49565b6001600160a01b038a166000908152600b6020908152604080832093909355600a905220546127609087611d49565b60008060008060008060006128c188611da8565b965096509650965096509650965061273187600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b600080600080600080600061291b88611da8565b965096509650965096509650965061296188600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546128489088611e03565b600061094460646109a2601754856117a690919063ffffffff16565b600061094460646109a2601b54856117a690919063ffffffff16565b600061094460646109a2601954856117a690919063ffffffff16565b60006129ee611d26565b905060006129fc83836117a6565b306000908152600a6020526040902054909150612a199082611d49565b306000908152600a602090815260408083209390935560109052205460ff16156109d057306000908152600b6020526040902054612a579084611d49565b306000908152600b6020526040902055505050565b601554612a799083611e03565b601555601654612a899082611d49565b6016555050565b80358015158114612aa057600080fd5b919050565b600060208284031215612ab757600080fd5b8135610abb81612e64565b600060208284031215612ad457600080fd5b8151610abb81612e64565b60008060408385031215612af257600080fd5b8235612afd81612e64565b91506020830135612b0d81612e64565b809150509250929050565b600080600060608486031215612b2d57600080fd5b8335612b3881612e64565b92506020840135612b4881612e64565b929592945050506040919091013590565b60008060408385031215612b6c57600080fd5b8235612b7781612e64565b9150612b8560208401612a90565b90509250929050565b60008060408385031215612ba157600080fd5b8235612bac81612e64565b946020939093013593505050565b600060208284031215612bcc57600080fd5b610abb82612a90565b600060208284031215612be757600080fd5b5035919050565b60008060408385031215612c0157600080fd5b82359150612b8560208401612a90565b60008060408385031215612c2457600080fd5b50508035926020909101359150565b600080600060608486031215612c4857600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612c8e57858101830151858201604001528201612c72565b81811115612ca0576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d3b5784516001600160a01b031683529383019391830191600101612d16565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612d6f57612d6f612e22565b500190565b600082612d9157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612db057612db0612e22565b500290565b600082821015612dc757612dc7612e22565b500390565b600181811c90821680612de057607f821691505b60208210811415612e0157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e1b57612e1b612e22565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114612e7957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122090eed7880d58524a14a981278fae446953f031a322a713392cce2efca0570f5564736f6c63430008070033000000000000000000000000a8ab647ea8ad8b6dabbab0d8dfc6000152f015ff

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806352390c02116101445780638fcc250d116100b6578063b6c523241161007a578063b6c5232414610768578063c49b9a801461077d578063dd4670641461079d578063dd62ed3e146107bd578063ea2f0b3714610803578063f2fde38b1461082357600080fd5b80638fcc250d146106de57806395d89b41146106fe578063a457c2d714610713578063a69df4b514610733578063a9059cbb1461074857600080fd5b8063715018a611610108578063715018a614610624578063787a08a614610639578063809157c51461064f57806388f82020146106675780638da5cb5b146106a05780638ee88c53146106be57600080fd5b806352390c02146105755780635342acb4146105955780635932ead1146105ce5780636bc87c3a146105ee57806370a082311461060457600080fd5b80633685d419116101dd5780634549b039116101a15780634549b039146104a2578063457c194c146104c257806349bd5a5e146104e25780634a74bb02146105165780634f662566146105355780634fc3f41a1461055557600080fd5b80633685d4191461040c578063395093511461042c5780633b124fe71461044c5780633bd5d17314610462578063437823ec1461048257600080fd5b806318160ddd1161022f57806318160ddd1461035f5780631da1db5e1461037457806322976e0d1461039457806323b872dd146103aa5780632d838119146103ca578063313ce567146103ea57600080fd5b806303d29d281461027757806306fdde0314610299578063095ea7b3146102c457806313114a9d146102f45780631694505e1461031357600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004612b59565b610843565b005b3480156102a557600080fd5b506102ae6108a1565b6040516102bb9190612c61565b60405180910390f35b3480156102d057600080fd5b506102e46102df366004612b8e565b610933565b60405190151581526020016102bb565b34801561030057600080fd5b506016545b6040519081526020016102bb565b34801561031f57600080fd5b506103477f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102bb565b34801561036b57600080fd5b50600854610305565b34801561038057600080fd5b5061029761038f366004612bd5565b61094a565b3480156103a057600080fd5b50610305601b5481565b3480156103b657600080fd5b506102e46103c5366004612b18565b6109d5565b3480156103d657600080fd5b506103056103e5366004612bd5565b610a3e565b3480156103f657600080fd5b5060065460405160ff90911681526020016102bb565b34801561041857600080fd5b50610297610427366004612aa5565b610ac2565b34801561043857600080fd5b506102e4610447366004612b8e565b610c75565b34801561045857600080fd5b5061030560175481565b34801561046e57600080fd5b5061029761047d366004612bd5565b610cab565b34801561048e57600080fd5b5061029761049d366004612aa5565b610d97565b3480156104ae57600080fd5b506103056104bd366004612bee565b610de5565b3480156104ce57600080fd5b506102976104dd366004612bd5565b610e74565b3480156104ee57600080fd5b506103477f00000000000000000000000074f714123b870cf33eff5e19695a2afea510060381565b34801561052257600080fd5b506020546102e490610100900460ff1681565b34801561054157600080fd5b50610297610550366004612c11565b610ea3565b34801561056157600080fd5b50610297610570366004612bd5565b610f7f565b34801561058157600080fd5b50610297610590366004612aa5565b610fae565b3480156105a157600080fd5b506102e46105b0366004612aa5565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156105da57600080fd5b506102976105e9366004612bba565b611179565b3480156105fa57600080fd5b5061030560195481565b34801561061057600080fd5b5061030561061f366004612aa5565b6111b6565b34801561063057600080fd5b50610297611215565b34801561064557600080fd5b5061030560145481565b34801561065b57600080fd5b5060135460ff166102e4565b34801561067357600080fd5b506102e4610682366004612aa5565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156106ac57600080fd5b506000546001600160a01b0316610347565b3480156106ca57600080fd5b506102976106d9366004612bd5565b611277565b3480156106ea57600080fd5b506102976106f9366004612c11565b6112a6565b34801561070a57600080fd5b506102ae6112f3565b34801561071f57600080fd5b506102e461072e366004612b8e565b611302565b34801561073f57600080fd5b50610297611351565b34801561075457600080fd5b506102e4610763366004612b8e565b611457565b34801561077457600080fd5b50600254610305565b34801561078957600080fd5b50610297610798366004612bba565b611464565b3480156107a957600080fd5b506102976107b8366004612bd5565b6114da565b3480156107c957600080fd5b506103056107d8366004612adf565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561080f57600080fd5b5061029761081e366004612aa5565b61155f565b34801561082f57600080fd5b5061029761083e366004612aa5565b6115aa565b6000546001600160a01b031633146108765760405162461bcd60e51b815260040161086d90612cb6565b60405180910390fd5b5060016001600160a01b0382166000908152601160205260409020805460ff191660011790555b5050565b6060600480546108b090612dcc565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612dcc565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b6000610940338484611682565b5060015b92915050565b6000546001600160a01b031633146109745760405162461bcd60e51b815260040161086d90612cb6565b606481111561098257600080fd5b60095447906001600160a01b03166108fc6109a860646109a285876117a6565b90611825565b6040518115909202916000818181858888f193505050501580156109d0573d6000803e3d6000fd5b505050565b60006109e2848484611867565b610a348433610a2f85604051806060016040528060288152602001612e7d602891396001600160a01b038a166000908152600e602090815260408083203384529091529020549190611cec565b611682565b5060019392505050565b6000601554821115610aa55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161086d565b6000610aaf611d26565b9050610abb8382611825565b9392505050565b6000546001600160a01b03163314610aec5760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03811660009081526010602052604090205460ff16610b545760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b60005b60125481101561089d57816001600160a01b031660128281548110610b7e57610b7e612e4e565b6000918252602090912001546001600160a01b03161415610c635760128054610ba990600190612db5565b81548110610bb957610bb9612e4e565b600091825260209091200154601280546001600160a01b039092169183908110610be557610be5612e4e565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600b82526040808220829055601090925220805460ff191690556012805480610c3d57610c3d612e38565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c6d81612e07565b915050610b57565b336000818152600e602090815260408083206001600160a01b03871684529091528120549091610940918590610a2f9086611d49565b3360008181526010602052604090205460ff1615610d205760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161086d565b6000610d2b83611da8565b5050506001600160a01b0386166000908152600a6020526040902054939450610d5993925084915050611e03565b6001600160a01b0383166000908152600a6020526040902055601554610d7f9082611e03565b601555601654610d8f9084611d49565b601655505050565b6000546001600160a01b03163314610dc15760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6000600854831115610e395760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161086d565b81610e59576000610e4984611da8565b5094965061094495505050505050565b6000610e6484611da8565b5093965061094495505050505050565b6000546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161086d90612cb6565b601b55565b6000546001600160a01b03163314610ecd5760405162461bcd60e51b815260040161086d90612cb6565b60018210158015610ee057506103e88111155b610ee957600080fd5b6000610f04826109a2856008546117a690919063ffffffff16565b90506103e8600854610f169190612d74565b811015610f785760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b606482015260840161086d565b601f555050565b6000546001600160a01b03163314610fa95760405162461bcd60e51b815260040161086d90612cb6565b601455565b6000546001600160a01b03163314610fd85760405162461bcd60e51b815260040161086d90612cb6565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156110505760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b606482015260840161086d565b6001600160a01b03811660009081526010602052604090205460ff16156110b95760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b6001600160a01b0381166000908152600a602052604090205415611113576001600160a01b0381166000908152600a60205260409020546110f990610a3e565b6001600160a01b0382166000908152600b60205260409020555b6001600160a01b03166000818152601060205260408120805460ff191660019081179091556012805491820181559091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319169091179055565b6000546001600160a01b031633146111a35760405162461bcd60e51b815260040161086d90612cb6565b6013805460ff1916911515919091179055565b6001600160a01b03811660009081526010602052604081205460ff16156111f357506001600160a01b03166000908152600b602052604090205490565b6001600160a01b0382166000908152600a602052604090205461094490610a3e565b6000546001600160a01b0316331461123f5760405162461bcd60e51b815260040161086d90612cb6565b600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112a15760405162461bcd60e51b815260040161086d90612cb6565b601955565b6000546001600160a01b031633146112d05760405162461bcd60e51b815260040161086d90612cb6565b60006112eb826109a2856008546117a690919063ffffffff16565b602155505050565b6060600580546108b090612dcc565b60006109403384610a2f85604051806060016040528060258152602001612ec560259139336000908152600e602090815260408083206001600160a01b038d1684529091529020549190611cec565b6001546001600160a01b031633146113b75760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b606482015260840161086d565b60025442116114085760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015260640161086d565b600154600080546040516001600160a01b039384169390911691600080516020612ea583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610940338484611867565b6000546001600160a01b0316331461148e5760405162461bcd60e51b815260040161086d90612cb6565b6020805461ff0019166101008315159081029190911782556040519081527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159910160405180910390a150565b6000546001600160a01b031633146115045760405162461bcd60e51b815260040161086d90612cb6565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556115338142612d5c565b600255600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a350565b6000546001600160a01b031633146115895760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b6000546001600160a01b031633146115d45760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b0381166116395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086d565b600080546040516001600160a01b0380851693921691600080516020612ea583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166116e45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161086d565b6001600160a01b0382166117455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161086d565b6001600160a01b038381166000818152600e602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000826117b557506000610944565b60006117c18385612d96565b9050826117ce8583612d74565b14610abb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161086d565b6000610abb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e45565b6001600160a01b0383166118cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161086d565b6001600160a01b03821661192d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161086d565b6000811161198f5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161086d565b6001600160a01b03831660009081526011602052604090205460ff16156119e15760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526011602052604090205460ff1615611a335760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b7f00000000000000000000000074f714123b870cf33eff5e19695a2afea51006036001600160a01b0316836001600160a01b0316148015611aa657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611acb57506001600160a01b0382166000908152600f602052604090205460ff16155b8015611ad9575060135460ff165b15611b3d57601f54811115611aed57600080fd5b6001600160a01b0382166000908152600c60205260409020544211611b1157600080fd5b601454611b1f904290611d49565b6001600160a01b0383166000908152600c6020526040902055611bf7565b7f00000000000000000000000074f714123b870cf33eff5e19695a2afea51006036001600160a01b0316836001600160a01b0316148015611b80575060135460ff165b8015611ba557506001600160a01b0382166000908152600f602052604090205460ff16155b15611bf7576001600160a01b0383166000908152600d6020526040902054421015611bcf57600080fd5b601454611bdd904290611d49565b6001600160a01b0384166000908152600d60205260409020555b6000611c02306111b6565b90506021548110611c1257506021545b60215481108015908190611c29575060205460ff16155b8015611c6757507f00000000000000000000000074f714123b870cf33eff5e19695a2afea51006036001600160a01b0316856001600160a01b031614155b8015611c7a5750602054610100900460ff165b15611c8d576021549150611c8d82611e73565b6001600160a01b0385166000908152600f602052604090205460019060ff1680611ccf57506001600160a01b0385166000908152600f602052604090205460ff165b15611cd8575060005b611ce486868684611fcb565b505050505050565b60008184841115611d105760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612db5565b95945050505050565b6000806000611d3361214e565b9092509050611d428282611825565b9250505090565b600080611d568385612d5c565b905083811015610abb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161086d565b6000806000806000806000806000806000611dc28c6122d0565b93509350935093506000806000611de38f878787611dde611d26565b612325565b919f509d509b509599509397509195509350505050919395979092949650565b6000610abb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cec565b60008183611e665760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612d74565b6020805460ff191660011790556000611e8d826002611825565b90506000611e9b8383611e03565b90506000611eaa826002611825565b90506000611eb88383611e03565b9050476000611ec78487611d49565b9050611ed281612387565b6000611ede4784611e03565b90506000611eed826003611825565b9050611ef9858261254e565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a16000611f468383611e03565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611f81573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506020805460ff191690555050505050505050565b80611fd857611fd8612663565b6001600160a01b03841660009081526010602052604090205460ff16801561201957506001600160a01b03831660009081526010602052604090205460ff16155b1561202e576120298484846126a8565b61212c565b6001600160a01b03841660009081526010602052604090205460ff1615801561206f57506001600160a01b03831660009081526010602052604090205460ff165b1561207f576120298484846127ee565b6001600160a01b03841660009081526010602052604090205460ff161580156120c157506001600160a01b03831660009081526010602052604090205460ff16155b156120d1576120298484846128ad565b6001600160a01b03841660009081526010602052604090205460ff16801561211157506001600160a01b03831660009081526010602052604090205460ff165b1561212157612029848484612907565b61212c8484846128ad565b8061214857612148601854601755601c54601b55601a54601955565b50505050565b6015546008546000918291825b6012548110156122a05782600a60006012848154811061217d5761217d612e4e565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121e8575081600b6000601284815481106121c1576121c1612e4e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156121fe57601554600854945094505050509091565b612244600a60006012848154811061221857612218612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e03565b925061228c600b60006012848154811061226057612260612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e03565b91508061229881612e07565b91505061215b565b506008546015546122b091611825565b8210156122c7576015546008549350935050509091565b90939092509050565b60008060008060006122e186612990565b905060006122ee876129ac565b905060006122fb886129c8565b905060006123158361230f84818d89611e03565b90611e03565b9993985091965094509092505050565b600080808061233489866117a6565b9050600061234289876117a6565b9050600061235088886117a6565b9050600061235e8a896117a6565b905060006123728361230f84818989611e03565b949d949c50929a509298505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bc576123bc612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243557600080fd5b505afa158015612449573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246d9190612ac2565b8160018151811061248057612480612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250506124cb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611682565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612520908590600090869030904290600401612ceb565b600060405180830381600087803b15801561253a57600080fd5b505af1158015611ce4573d6000803e3d6000fd5b612579307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611682565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806125c06000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561262357600080fd5b505af1158015612637573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061265c9190612c33565b5050505050565b6017541580156126735750601954155b801561267f5750601b54155b1561268657565b60178054601855601b8054601c5560198054601a556000928390559082905555565b60008060008060008060006126bc88611da8565b965096509650965096509650965061270288600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546127319088611e03565b6001600160a01b03808c166000908152600a602052604080822093909355908b16815220546127609087611d49565b6001600160a01b038a166000908152600a6020526040902055612782826129e4565b61278b816129e4565b6127958584612a6c565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516127da91815260200190565b60405180910390a350505050505050505050565b600080600080600080600061280288611da8565b965096509650965096509650965061284887600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b03808c166000908152600a6020908152604080832094909455918c168152600b909152205461287e9085611d49565b6001600160a01b038a166000908152600b6020908152604080832093909355600a905220546127609087611d49565b60008060008060008060006128c188611da8565b965096509650965096509650965061273187600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b600080600080600080600061291b88611da8565b965096509650965096509650965061296188600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546128489088611e03565b600061094460646109a2601754856117a690919063ffffffff16565b600061094460646109a2601b54856117a690919063ffffffff16565b600061094460646109a2601954856117a690919063ffffffff16565b60006129ee611d26565b905060006129fc83836117a6565b306000908152600a6020526040902054909150612a199082611d49565b306000908152600a602090815260408083209390935560109052205460ff16156109d057306000908152600b6020526040902054612a579084611d49565b306000908152600b6020526040902055505050565b601554612a799083611e03565b601555601654612a899082611d49565b6016555050565b80358015158114612aa057600080fd5b919050565b600060208284031215612ab757600080fd5b8135610abb81612e64565b600060208284031215612ad457600080fd5b8151610abb81612e64565b60008060408385031215612af257600080fd5b8235612afd81612e64565b91506020830135612b0d81612e64565b809150509250929050565b600080600060608486031215612b2d57600080fd5b8335612b3881612e64565b92506020840135612b4881612e64565b929592945050506040919091013590565b60008060408385031215612b6c57600080fd5b8235612b7781612e64565b9150612b8560208401612a90565b90509250929050565b60008060408385031215612ba157600080fd5b8235612bac81612e64565b946020939093013593505050565b600060208284031215612bcc57600080fd5b610abb82612a90565b600060208284031215612be757600080fd5b5035919050565b60008060408385031215612c0157600080fd5b82359150612b8560208401612a90565b60008060408385031215612c2457600080fd5b50508035926020909101359150565b600080600060608486031215612c4857600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612c8e57858101830151858201604001528201612c72565b81811115612ca0576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d3b5784516001600160a01b031683529383019391830191600101612d16565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612d6f57612d6f612e22565b500190565b600082612d9157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612db057612db0612e22565b500290565b600082821015612dc757612dc7612e22565b500390565b600181811c90821680612de057607f821691505b60208210811415612e0157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e1b57612e1b612e22565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114612e7957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122090eed7880d58524a14a981278fae446953f031a322a713392cce2efca0570f5564736f6c63430008070033

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

000000000000000000000000a8ab647ea8ad8b6dabbab0d8dfc6000152f015ff

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

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


Deployed Bytecode Sourcemap

25571:22165:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30968:294;;;;;;;;;;-1:-1:-1;30968:294:0;;;;;:::i;:::-;;:::i;:::-;;28662:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29307:161;;;;;;;;;;-1:-1:-1;29307:161:0;;;;;:::i;:::-;;:::i;:::-;;;4353:14:1;;4346:22;4328:41;;4316:2;4301:18;29307:161:0;4188:187:1;33924:87:0;;;;;;;;;;-1:-1:-1;33993:10:0;;33924:87;;;12367:25:1;;;12355:2;12340:18;33924:87:0;12221:177:1;27216:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3532:32:1;;;3514:51;;3502:2;3487:18;27216:51:0;3368:203:1;28885:79:0;;;;;;;;;;-1:-1:-1;28955:7:0;;28885:79;;40129:262;;;;;;;;;;-1:-1:-1;40129:262:0;;;;;:::i;:::-;;:::i;26944:32::-;;;;;;;;;;;;;;;;41521:313;;;;;;;;;;-1:-1:-1;41521:313:0;;;;;:::i;:::-;;:::i;32106:253::-;;;;;;;;;;-1:-1:-1;32106:253:0;;;;;:::i;:::-;;:::i;28812:67::-;;;;;;;;;;-1:-1:-1;28868:9:0;;28812:67;;28868:9;;;;13854:36:1;;13842:2;13827:18;28812:67:0;13712:184:1;33061:479:0;;;;;;;;;;-1:-1:-1;33061:479:0;;;;;:::i;:::-;;:::i;30461:218::-;;;;;;;;;;-1:-1:-1;30461:218:0;;;;;:::i;:::-;;:::i;26764:26::-;;;;;;;;;;;;;;;;31274:378;;;;;;;;;;-1:-1:-1;31274:378:0;;;;;:::i;:::-;;:::i;33548:111::-;;;;;;;;;;-1:-1:-1;33548:111:0;;;;;:::i;:::-;;:::i;31660:438::-;;;;;;;;;;-1:-1:-1;31660:438:0;;;;;:::i;:::-;;:::i;29853:122::-;;;;;;;;;;-1:-1:-1;29853:122:0;;;;;:::i;:::-;;:::i;27274:38::-;;;;;;;;;;;;;;;27347:40;;;;;;;;;;-1:-1:-1;27347:40:0;;;;;;;;;;;30103:350;;;;;;;;;;-1:-1:-1;30103:350:0;;;;;:::i;:::-;;:::i;29991:100::-;;;;;;;;;;-1:-1:-1;29991:100:0;;;;;:::i;:::-;;:::i;32495:558::-;;;;;;;;;;-1:-1:-1;32495:558:0;;;;;:::i;:::-;;:::i;33789:123::-;;;;;;;;;;-1:-1:-1;33789:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;33877:27:0;33853:4;33877:27;;;:18;:27;;;;;;;;;33789:123;47630:103;;;;;;;;;;-1:-1:-1;47630:103:0;;;;;:::i;:::-;;:::i;26845:32::-;;;;;;;;;;;;;;;;29103:198;;;;;;;;;;-1:-1:-1;29103:198:0;;;;;:::i;:::-;;:::i;16184:148::-;;;;;;;;;;;;;:::i;26577:36::-;;;;;;;;;;;;;;;;47524:94;;;;;;;;;;-1:-1:-1;47595:15:0;;;;47524:94;;32367:120;;;;;;;;;;-1:-1:-1;32367:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;32459:20:0;32435:4;32459:20;;;:11;:20;;;;;;;;;32367:120;15548:79;;;;;;;;;;-1:-1:-1;15586:7:0;15613:6;-1:-1:-1;;;;;15613:6:0;15548:79;;29715:122;;;;;;;;;;-1:-1:-1;29715:122:0;;;;;:::i;:::-;;:::i;29476:223::-;;;;;;;;;;-1:-1:-1;29476:223:0;;;;;:::i;:::-;;:::i;28735:71::-;;;;;;;;;;;;;:::i;30687:269::-;;;;;;;;;;-1:-1:-1;30687:269:0;;;;;:::i;:::-;;:::i;17206:305::-;;;;;;;;;;;;;:::i;43881:167::-;;;;;;;;;;-1:-1:-1;43881:167:0;;;;;:::i;:::-;;:::i;16739:89::-;;;;;;;;;;-1:-1:-1;16811:9:0;;16739:89;;34019:171;;;;;;;;;;-1:-1:-1;34019:171:0;;;;;:::i;:::-;;:::i;16904:226::-;;;;;;;;;;-1:-1:-1;16904:226:0;;;;;:::i;:::-;;:::i;28970:127::-;;;;;;;;;;-1:-1:-1;28970:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;29068:18:0;;;29051:7;29068:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28970:127;33667:110;;;;;;;;;;-1:-1:-1;33667:110:0;;;;;:::i;:::-;;:::i;16487:244::-;;;;;;;;;;-1:-1:-1;16487:244:0;;;;;:::i;:::-;;:::i;30968:294::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;31083:4:0::1;-1:-1:-1::0;;;;;31108:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;:30;;-1:-1:-1;;31108:30:0::1;31134:4;31108:30;::::0;;31161:94:::1;30968:294:::0;;:::o;28662:67::-;28699:13;28722:5;28715:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28662:67;:::o;29307:161::-;29382:4;29399:39;8051:10;29422:7;29431:6;29399:8;:39::i;:::-;-1:-1:-1;29456:4:0;29307:161;;;;;:::o;40129:262::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;40240:3:::1;40220:16;:23;;40212:32;;;::::0;::::1;;40315:16;::::0;40275:21:::1;::::0;-1:-1:-1;;;;;40315:16:0::1;40307:76;40342:40;40378:3;40342:31;40275:21:::0;40356:16;40342:13:::1;:31::i;:::-;:35:::0;::::1;:40::i;:::-;40307:76;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40201:190;40129:262:::0;:::o;41521:313::-;41619:4;41636:36;41646:6;41654:9;41665:6;41636:9;:36::i;:::-;41683:121;41692:6;8051:10;41714:89;41752:6;41714:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41714:19:0;;;;;;:11;:19;;;;;;;;8051:10;41714:33;;;;;;;;;;:37;:89::i;:::-;41683:8;:121::i;:::-;-1:-1:-1;41822:4:0;41521:313;;;;;:::o;32106:253::-;32172:7;32211;;32200;:18;;32192:73;;;;-1:-1:-1;;;32192:73:0;;5823:2:1;32192:73:0;;;5805:21:1;5862:2;5842:18;;;5835:30;5901:34;5881:18;;;5874:62;-1:-1:-1;;;5952:18:1;;;5945:40;6002:19;;32192:73:0;5621:406:1;32192:73:0;32276:19;32299:10;:8;:10::i;:::-;32276:33;-1:-1:-1;32327:24:0;:7;32276:33;32327:11;:24::i;:::-;32320:31;32106:253;-1:-1:-1;;;32106:253:0:o;33061:479::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33143:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33135:60;;;::::0;-1:-1:-1;;;33135:60:0;;7811:2:1;33135:60:0::1;::::0;::::1;7793:21:1::0;7850:2;7830:18;;;7823:30;7889:29;7869:18;;;7862:57;7936:18;;33135:60:0::1;7609:351:1::0;33135:60:0::1;33211:9;33206:327;33230:9;:16:::0;33226:20;::::1;33206:327;;;33288:7;-1:-1:-1::0;;;;;33272:23:0::1;:9;33282:1;33272:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33272:12:0::1;:23;33268:254;;;33331:9;33341:16:::0;;:20:::1;::::0;33360:1:::1;::::0;33341:20:::1;:::i;:::-;33331:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;33316:9:::1;:12:::0;;-1:-1:-1;;;;;33331:31:0;;::::1;::::0;33326:1;;33316:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33316:46:0::1;-1:-1:-1::0;;;;;33316:46:0;;::::1;;::::0;;33381:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33420:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33420:28:0::1;::::0;;33467:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33467:15:0;;;;;-1:-1:-1;;;;;;33467:15:0::1;::::0;;;;;30968:294;;:::o;33268:254::-:1;33248:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33206:327;;30461:218:::0;8051:10;30549:4;30598:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30598:34:0;;;;;;;;;;30549:4;;30566:83;;30589:7;;30598:50;;30637:10;30598:38;:50::i;31274:378::-;8051:10;31326:14;31375:19;;;:11;:19;;;;;;;;31374:20;31366:77;;;;-1:-1:-1;;;31366:77:0;;11606:2:1;31366:77:0;;;11588:21:1;11645:2;11625:18;;;11618:30;11684:34;11664:18;;;11657:62;-1:-1:-1;;;11735:18:1;;;11728:42;11787:19;;31366:77:0;11404:408:1;31366:77:0;31455:15;31480:19;31491:7;31480:10;:19::i;:::-;-1:-1:-1;;;;;;;;31528:15:0;;;;;;:7;:15;;;;;;31454:45;;-1:-1:-1;31528:28:0;;:15;-1:-1:-1;31454:45:0;;-1:-1:-1;;31528:19:0;:28::i;:::-;-1:-1:-1;;;;;31510:15:0;;;;;;:7;:15;;;;;:46;31577:7;;:20;;31589:7;31577:11;:20::i;:::-;31567:7;:30;31621:10;;:23;;31636:7;31621:14;:23::i;:::-;31608:10;:36;-1:-1:-1;;;31274:378:0:o;33548:111::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33617:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33617:34:0::1;33647:4;33617:34;::::0;;33548:111::o;31660:438::-;31750:7;31789;;31778;:18;;31770:62;;;;-1:-1:-1;;;31770:62:0;;8167:2:1;31770:62:0;;;8149:21:1;8206:2;8186:18;;;8179:30;8245:33;8225:18;;;8218:61;8296:18;;31770:62:0;7965:355:1;31770:62:0;31848:17;31843:248;;31883:15;31908:19;31919:7;31908:10;:19::i;:::-;-1:-1:-1;31882:45:0;;-1:-1:-1;31942:14:0;;-1:-1:-1;;;;;;31942:14:0;31843:248;31991:23;32023:19;32034:7;32023:10;:19::i;:::-;-1:-1:-1;31989:53:0;;-1:-1:-1;32057:22:0;;-1:-1:-1;;;;;;32057:22:0;29853:122;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;29939:13:::1;:28:::0;29853:122::o;30103:350::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;30209:1:::1;30198:7;:12;;:31;;;;;30225:4;30214:7;:15;;30198:31;30190:40;;;::::0;::::1;;30270:14;30287:33;30312:7;30287:20;30299:7;30287;;:11;;:20;;;;:::i;:33::-;30270:50;;30360:4;30350:7;;:14;;;;:::i;:::-;30339:6;:26;;30331:81;;;::::0;-1:-1:-1;;;30331:81:0;;7400:2:1;30331:81:0::1;::::0;::::1;7382:21:1::0;7439:2;7419:18;;;7412:30;7478:34;7458:18;;;7451:62;-1:-1:-1;;;7529:18:1;;;7522:40;7579:19;;30331:81:0::1;7198:406:1::0;30331:81:0::1;30423:13;:22:::0;-1:-1:-1;;30103:350:0:o;29991:100::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;30063:8:::1;:20:::0;29991:100::o;32495:558::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;32588:42:::1;-1:-1:-1::0;;;;;32577:53:0;::::1;;;32569:100;;;::::0;-1:-1:-1;;;32569:100:0;;11203:2:1;32569:100:0::1;::::0;::::1;11185:21:1::0;11242:2;11222:18;;;11215:30;11281:34;11261:18;;;11254:62;-1:-1:-1;;;11332:18:1;;;11325:32;11374:19;;32569:100:0::1;11001:398:1::0;32569:100:0::1;-1:-1:-1::0;;;;;32803:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32802:21;32794:61;;;::::0;-1:-1:-1;;;32794:61:0;;7811:2:1;32794:61:0::1;::::0;::::1;7793:21:1::0;7850:2;7830:18;;;7823:30;7889:29;7869:18;;;7862:57;7936:18;;32794:61:0::1;7609:351:1::0;32794:61:0::1;-1:-1:-1::0;;;;;32869:16:0;::::1;32888:1;32869:16:::0;;;:7:::1;:16;::::0;;;;;:20;32866:108:::1;;-1:-1:-1::0;;;;;32945:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32925:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32906:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32866:108:::1;-1:-1:-1::0;;;;;32984:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32984:27:0::1;33007:4;32984:27:::0;;::::1;::::0;;;33022:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33022:23:0::1;::::0;;::::1;::::0;;32495:558::o;47630:103::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;47702:15:::1;:23:::0;;-1:-1:-1;;47702:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47630:103::o;29103:198::-;-1:-1:-1;;;;;29193:20:0;;29169:7;29193:20;;;:11;:20;;;;;;;;29189:49;;;-1:-1:-1;;;;;;29222:16:0;;;;;:7;:16;;;;;;;29103:198::o;29189:49::-;-1:-1:-1;;;;;29276:16:0;;;;;;:7;:16;;;;;;29256:37;;:19;:37::i;16184:148::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;16291:1:::1;16275:6:::0;;16254:40:::1;::::0;-1:-1:-1;;;;;16275:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16254:40:0;16291:1;;16254:40:::1;16322:1;16305:19:::0;;-1:-1:-1;;;;;;16305:19:0::1;::::0;;16184:148::o;29715:122::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;29801:13:::1;:28:::0;29715:122::o;29476:223::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;29584:18:::1;29605:33;29630:7;29605:20;29617:7;29605;;:11;;:20;;;;:::i;:33::-;29649:29;:42:::0;-1:-1:-1;;;29476:223:0:o;28735:71::-;28774:13;28797:7;28790:14;;;;;:::i;30687:269::-;30780:4;30797:129;8051:10;30820:7;30829:96;30868:15;30829:96;;;;;;;;;;;;;;;;;8051:10;30829:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30829:34:0;;;;;;;;;;;;:38;:96::i;17206:305::-;17258:14;;-1:-1:-1;;;;;17258:14:0;17276:10;17258:28;17250:76;;;;-1:-1:-1;;;17250:76:0;;12019:2:1;17250:76:0;;;12001:21:1;12058:2;12038:18;;;12031:30;12097:34;12077:18;;;12070:62;-1:-1:-1;;;12148:18:1;;;12141:33;12191:19;;17250:76:0;11817:399:1;17250:76:0;17363:9;;17345:15;:27;17337:72;;;;-1:-1:-1;;;17337:72:0;;10843:2:1;17337:72:0;;;10825:21:1;10882:2;10862:18;;;10855:30;10921:33;10901:18;;;10894:61;10972:18;;17337:72:0;10641:355:1;17337:72:0;17454:14;;;17446:6;;17425:44;;-1:-1:-1;;;;;17454:14:0;;;;17446:6;;;;-1:-1:-1;;;;;;;;;;;17425:44:0;;17489:14;;;17480:23;;-1:-1:-1;;;;;;17480:23:0;-1:-1:-1;;;;;17489:14:0;;;17480:23;;;;;;17206:305::o;43881:167::-;43959:4;43976:42;8051:10;44000:9;44011:6;43976:9;:42::i;34019:171::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;34096:21:::1;:32:::0;;-1:-1:-1;;34096:32:0::1;;::::0;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;34144:38:::1;::::0;4328:41:1;;;34144:38:0::1;::::0;4301:18:1;34144:38:0::1;;;;;;;34019:171:::0;:::o;16904:226::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;16985:6:::1;::::0;;;16968:23;;-1:-1:-1;;;;;;16968:23:0;;::::1;-1:-1:-1::0;;;;;16985:6:0;::::1;16968:23;::::0;;;17002:19:::1;::::0;;17044:22:::1;17062:4:::0;17044:15:::1;:22;:::i;:::-;17032:9;:34:::0;17119:1:::1;17103:6:::0;;17082:40:::1;::::0;-1:-1:-1;;;;;17103:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17082:40:0;17119:1;;17082:40:::1;16904:226:::0;:::o;33667:110::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33734:27:0::1;33764:5;33734:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33734:35:0::1;::::0;;33667:110::o;16487:244::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16576:22:0;::::1;16568:73;;;::::0;-1:-1:-1;;;16568:73:0;;6234:2:1;16568:73:0::1;::::0;::::1;6216:21:1::0;6273:2;6253:18;;;6246:30;6312:34;6292:18;;;6285:62;-1:-1:-1;;;6363:18:1;;;6356:36;6409:19;;16568:73:0::1;6032:402:1::0;16568:73:0::1;16678:6;::::0;;16657:38:::1;::::0;-1:-1:-1;;;;;16657:38:0;;::::1;::::0;16678:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16657:38:0;::::1;16706:6;:17:::0;;-1:-1:-1;;;;;;16706:17:0::1;-1:-1:-1::0;;;;;16706:17:0;;;::::1;::::0;;;::::1;::::0;;16487:244::o;38393:337::-;-1:-1:-1;;;;;38486:19:0;;38478:68;;;;-1:-1:-1;;;38478:68:0;;10438:2:1;38478:68:0;;;10420:21:1;10477:2;10457:18;;;10450:30;10516:34;10496:18;;;10489:62;-1:-1:-1;;;10567:18:1;;;10560:34;10611:19;;38478:68:0;10236:400:1;38478:68:0;-1:-1:-1;;;;;38565:21:0;;38557:68;;;;-1:-1:-1;;;38557:68:0;;6641:2:1;38557:68:0;;;6623:21:1;6680:2;6660:18;;;6653:30;6719:34;6699:18;;;6692:62;-1:-1:-1;;;6770:18:1;;;6763:32;6812:19;;38557:68:0;6439:398:1;38557:68:0;-1:-1:-1;;;;;38638:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38690:32;;12367:25:1;;;38690:32:0;;12340:18:1;38690:32:0;;;;;;;38393:337;;;:::o;4832:471::-;4890:7;5135:6;5131:47;;-1:-1:-1;5165:1:0;5158:8;;5131:47;5190:9;5202:5;5206:1;5202;:5;:::i;:::-;5190:17;-1:-1:-1;5235:1:0;5226:5;5230:1;5190:17;5226:5;:::i;:::-;:10;5218:56;;;;-1:-1:-1;;;5218:56:0;;8527:2:1;5218:56:0;;;8509:21:1;8566:2;8546:18;;;8539:30;8605:34;8585:18;;;8578:62;-1:-1:-1;;;8656:18:1;;;8649:31;8697:19;;5218:56:0;8325:397:1;5779:132:0;5837:7;5864:39;5868:1;5871;5864:39;;;;;;;;;;;;;;;;;:3;:39::i;41842:2031::-;-1:-1:-1;;;;;41964:18:0;;41956:68;;;;-1:-1:-1;;;41956:68:0;;10032:2:1;41956:68:0;;;10014:21:1;10071:2;10051:18;;;10044:30;10110:34;10090:18;;;10083:62;-1:-1:-1;;;10161:18:1;;;10154:35;10206:19;;41956:68:0;9830:401:1;41956:68:0;-1:-1:-1;;;;;42043:16:0;;42035:64;;;;-1:-1:-1;;;42035:64:0;;5419:2:1;42035:64:0;;;5401:21:1;5458:2;5438:18;;;5431:30;5497:34;5477:18;;;5470:62;-1:-1:-1;;;5548:18:1;;;5541:33;5591:19;;42035:64:0;5217:399:1;42035:64:0;42127:1;42118:6;:10;42110:64;;;;-1:-1:-1;;;42110:64:0;;9290:2:1;42110:64:0;;;9272:21:1;9329:2;9309:18;;;9302:30;9368:34;9348:18;;;9341:62;-1:-1:-1;;;9419:18:1;;;9412:39;9468:19;;42110:64:0;9088:405:1;42110:64:0;-1:-1:-1;;;;;42193:20:0;;;;;;:14;:20;;;;;;;;:29;42185:46;;;;-1:-1:-1;;;42185:46:0;;;;;;9700:2:1;9682:21;;;9739:1;9719:18;;;9712:29;-1:-1:-1;;;9772:2:1;9757:18;;9750:34;9816:2;9801:18;;9498:327;42185:46:0;-1:-1:-1;;;;;42250:18:0;;;;;;:14;:18;;;;;;;;:27;42242:44;;;;-1:-1:-1;;;42242:44:0;;;;;;9700:2:1;9682:21;;;9739:1;9719:18;;;9712:29;-1:-1:-1;;;9772:2:1;9757:18;;9750:34;9816:2;9801:18;;9498:327;42242:44:0;42309:13;-1:-1:-1;;;;;42301:21:0;:4;-1:-1:-1;;;;;42301:21:0;;:55;;;;;42340:15;-1:-1:-1;;;;;42326:30:0;:2;-1:-1:-1;;;;;42326:30:0;;;42301:55;:82;;;;-1:-1:-1;;;;;;42361:22:0;;;;;;:18;:22;;;;;;;;42360:23;42301:82;:101;;;;-1:-1:-1;42387:15:0;;;;42301:101;42297:525;;;42441:13;;42431:6;:23;;42423:32;;;;;;-1:-1:-1;;;;;42482:15:0;;;;;;:11;:15;;;;;;42500;-1:-1:-1;42474:42:0;;;;;;42573:8;;42553:29;;:15;;:19;:29::i;:::-;-1:-1:-1;;;;;42535:15:0;;;;;;:11;:15;;;;;:47;42297:525;;;42623:13;-1:-1:-1;;;;;42615:21:0;:4;-1:-1:-1;;;;;42615:21:0;;:40;;;;-1:-1:-1;42640:15:0;;;;42615:40;:67;;;;-1:-1:-1;;;;;;42660:22:0;;;;;;:18;:22;;;;;;;;42659:23;42615:67;42612:210;;;-1:-1:-1;;;;;42707:18:0;;;;;;:12;:18;;;;;;42729:15;-1:-1:-1;42707:37:0;42699:46;;;;;;42801:8;;42781:29;;:15;;:19;:29::i;:::-;-1:-1:-1;;;;;42760:18:0;;;;;;:12;:18;;;;;:50;42612:210;42846:28;42877:24;42895:4;42877:9;:24::i;:::-;42846:55;;42941:29;;42917:20;:53;42914:146;;-1:-1:-1;43019:29:0;;42914:146;43123:29;;43099:53;;;;;;;43181;;-1:-1:-1;43218:16:0;;;;43217:17;43181:53;:91;;;;;43259:13;-1:-1:-1;;;;;43251:21:0;:4;-1:-1:-1;;;;;43251:21:0;;;43181:91;:129;;;;-1:-1:-1;43289:21:0;;;;;;;43181:129;43163:301;;;43372:29;;43349:52;;43416:36;43431:20;43416:14;:36::i;:::-;-1:-1:-1;;;;;43656:24:0;;43537:12;43656:24;;;:18;:24;;;;;;43552:4;;43656:24;;;:50;;-1:-1:-1;;;;;;43684:22:0;;;;;;:18;:22;;;;;;;;43656:50;43653:96;;;-1:-1:-1;43732:5:0;43653:96;43827:38;43842:4;43847:2;43850:6;43857:7;43827:14;:38::i;:::-;41945:1928;;;41842:2031;;;:::o;4381:192::-;4467:7;4503:12;4495:6;;;;4487:29;;;;-1:-1:-1;;;4487:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4527:9:0;4539:5;4543:1;4539;:5;:::i;:::-;4527:17;4381:192;-1:-1:-1;;;;;4381:192:0:o;35896:163::-;35937:7;35958:15;35975;35994:19;:17;:19::i;:::-;35957:56;;-1:-1:-1;35957:56:0;-1:-1:-1;36031:20:0;35957:56;;36031:11;:20::i;:::-;36024:27;;;;35896:163;:::o;3478:181::-;3536:7;;3568:5;3572:1;3568;:5;:::i;:::-;3556:17;;3597:1;3592;:6;;3584:46;;;;-1:-1:-1;;;3584:46:0;;7044:2:1;3584:46:0;;;7026:21:1;7083:2;7063:18;;;7056:30;7122:29;7102:18;;;7095:57;7169:18;;3584:46:0;6842:351:1;34447:472:0;34506:7;34515;34524;34533;34542;34551;34560;34581:23;34606:12;34620:18;34640;34662:20;34674:7;34662:11;:20::i;:::-;34580:102;;;;;;;;34694:15;34711:23;34736:12;34752:62;34764:7;34773:4;34779:10;34791;34803;:8;:10::i;:::-;34752:11;:62::i;:::-;34693:121;;-1:-1:-1;34693:121:0;-1:-1:-1;34693:121:0;-1:-1:-1;34865:15:0;;-1:-1:-1;34882:4:0;;-1:-1:-1;34888:10:0;;-1:-1:-1;34900:10:0;-1:-1:-1;;;;34447:472:0;;;;;;;;;:::o;3942:136::-;4000:7;4027:43;4031:1;4034;4027:43;;;;;;;;;;;;;;;;;:3;:43::i;6407:278::-;6493:7;6528:12;6521:5;6513:28;;;;-1:-1:-1;;;6513:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6552:9:0;6564:5;6568:1;6564;:5;:::i;38861:1260::-;27747:16;:23;;-1:-1:-1;;27747:23:0;27766:4;27747:23;;;:16;39070:27:::1;:20:::0;39095:1:::1;39070:24;:27::i;:::-;39038:59:::0;-1:-1:-1;39108:29:0::1;39140:47;:20:::0;39038:59;39140:24:::1;:47::i;:::-;39108:79:::0;-1:-1:-1;39198:34:0::1;39235:28;39108:79:::0;39261:1:::1;39235:25;:28::i;:::-;39198:65:::0;-1:-1:-1;39274:29:0::1;39306:53;:21:::0;39198:65;39306:25:::1;:53::i;:::-;39274:85:::0;-1:-1:-1;39395:21:0::1;39370:22;39515:53;:26:::0;39546:21;39515:30:::1;:53::i;:::-;39487:81;;39581:35;39598:17;39581:16;:35::i;:::-;39629:18;39650:41;:21;39676:14:::0;39650:25:::1;:41::i;:::-;39629:62:::0;-1:-1:-1;39704:20:0::1;39727:17;39629:62:::0;39742:1:::1;39727:14;:17::i;:::-;39704:40;;39757:49;39770:21;39793:12;39757;:49::i;:::-;39824:79;::::0;;13590:25:1;;;13646:2;13631:18;;13624:34;;;13674:18;;;13667:34;;;39824:79:0::1;::::0;13578:2:1;13563:18;39824:79:0::1;;;;;;;39916:20;39939:28;:10:::0;39954:12;39939:14:::1;:28::i;:::-;40033:16;::::0;:39:::1;::::0;39916:51;;-1:-1:-1;;;;;;40033:16:0::1;::::0;:39;::::1;;;::::0;39916:51;;40033:16:::1;:39:::0;:16;:39;39916:51;40033:16;:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;40088:25:0::1;::::0;12367::1;;;40088::0::1;::::0;12355:2:1;12340:18;40088:25:0::1;;;;;;;-1:-1:-1::0;;27793:16:0;:24;;-1:-1:-1;;27793:24:0;;;-1:-1:-1;;;;;;;;38861:1260:0:o;44129:818::-;44240:7;44236:40;;44262:14;:12;:14::i;:::-;-1:-1:-1;;;;;44293:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;44317:22:0;;;;;;:11;:22;;;;;;;;44316:23;44293:46;44289:597;;;44356:48;44378:6;44386:9;44397:6;44356:21;:48::i;:::-;44289:597;;;-1:-1:-1;;;;;44427:19:0;;;;;;:11;:19;;;;;;;;44426:20;:46;;;;-1:-1:-1;;;;;;44450:22:0;;;;;;:11;:22;;;;;;;;44426:46;44422:464;;;44489:46;44509:6;44517:9;44528:6;44489:19;:46::i;44422:464::-;-1:-1:-1;;;;;44558:19:0;;;;;;:11;:19;;;;;;;;44557:20;:47;;;;-1:-1:-1;;;;;;44582:22:0;;;;;;:11;:22;;;;;;;;44581:23;44557:47;44553:333;;;44621:44;44639:6;44647:9;44658:6;44621:17;:44::i;44553:333::-;-1:-1:-1;;;;;44687:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;44710:22:0;;;;;;:11;:22;;;;;;;;44687:45;44683:203;;;44749:48;44771:6;44779:9;44790:6;44749:21;:48::i;44683:203::-;44830:44;44848:6;44856:9;44867:6;44830:17;:44::i;:::-;44902:7;44898:41;;44924:15;38266;;38256:7;:25;38308:21;;38292:13;:37;38356:21;;38340:13;:37;38212:173;44924:15;44129:818;;;;:::o;36067:555::-;36164:7;;36200;;36117;;;;;36218:289;36242:9;:16;36238:20;;36218:289;;;36308:7;36284;:21;36292:9;36302:1;36292:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36292:12:0;36284:21;;;;;;;;;;;;;:31;;:66;;;36343:7;36319;:21;36327:9;36337:1;36327:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36327:12:0;36319:21;;;;;;;;;;;;;:31;36284:66;36280:97;;;36360:7;;36369;;36352:25;;;;;;;36067:555;;:::o;36280:97::-;36402:34;36414:7;:21;36422:9;36432:1;36422:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36422:12:0;36414:21;;;;;;;;;;;;;36402:7;;:11;:34::i;:::-;36392:44;;36461:34;36473:7;:21;36481:9;36491:1;36481:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36481:12:0;36473:21;;;;;;;;;;;;;36461:7;;:11;:34::i;:::-;36451:44;-1:-1:-1;36260:3:0;;;;:::i;:::-;;;;36218:289;;;-1:-1:-1;36543:7:0;;36531;;:20;;:11;:20::i;:::-;36521:7;:30;36517:61;;;36561:7;;36570;;36553:25;;;;;;36067:555;;:::o;36517:61::-;36597:7;;36606;;-1:-1:-1;36067:555:0;-1:-1:-1;36067:555:0:o;34927:429::-;34987:7;34996;35005;35014;35034:12;35049:24;35065:7;35049:15;:24::i;:::-;35034:39;;35084:18;35105:30;35127:7;35105:21;:30::i;:::-;35084:51;;35146:18;35167:30;35189:7;35167:21;:30::i;:::-;35146:51;-1:-1:-1;35208:23:0;35234:49;35272:10;35234:33;35146:51;35234:33;:7;35246:4;35234:11;:17::i;:::-;:21;;:33::i;:49::-;35208:75;35319:4;;-1:-1:-1;35325:10:0;;-1:-1:-1;35325:10:0;-1:-1:-1;34927:429:0;;-1:-1:-1;;;34927:429:0:o;35364:524::-;35499:7;;;;35555:24;:7;35567:11;35555;:24::i;:::-;35537:42;-1:-1:-1;35590:12:0;35605:21;:4;35614:11;35605:8;:21::i;:::-;35590:36;-1:-1:-1;35637:18:0;35658:27;:10;35673:11;35658:14;:27::i;:::-;35637:48;-1:-1:-1;35696:18:0;35717:27;:10;35732:11;35717:14;:27::i;:::-;35696:48;-1:-1:-1;35755:23:0;35781:49;35819:10;35781:33;35696:48;35781:33;:7;35793:4;35781:11;:17::i;:49::-;35849:7;;;;-1:-1:-1;35875:4:0;;-1:-1:-1;35364:524:0;;-1:-1:-1;;;;;;;;;35364:524:0:o;40399:589::-;40549:16;;;40563:1;40549:16;;;;;;;;40525:21;;40549:16;;;;;;;;;;-1:-1:-1;40549:16:0;40525:40;;40594:4;40576;40581:1;40576:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40576:23:0;;;-1:-1:-1;;;;;40576:23:0;;;;;40620:15;-1:-1:-1;;;;;40620:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40610:4;40615:1;40610:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40610:32:0;;;-1:-1:-1;;;;;40610:32:0;;;;;40655:62;40672:4;40687:15;40705:11;40655:8;:62::i;:::-;40756:224;;-1:-1:-1;;;40756:224:0;;-1:-1:-1;;;;;40756:15:0;:66;;;;:224;;40837:11;;40863:1;;40907:4;;40934;;40954:15;;40756:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40996:513;41144:62;41161:4;41176:15;41194:11;41144:8;:62::i;:::-;41249:15;-1:-1:-1;;;;;41249:31:0;;41288:9;41321:4;41341:11;41367:1;41410;41453:7;15586;15613:6;-1:-1:-1;;;;;15613:6:0;;15548:79;41453:7;41249:252;;;;;;-1:-1:-1;;;;;;41249:252:0;;;-1:-1:-1;;;;;3935:15:1;;;41249:252:0;;;3917:34:1;3967:18;;;3960:34;;;;4010:18;;;4003:34;;;;4053:18;;;4046:34;4117:15;;;4096:19;;;4089:44;41475:15:0;4149:19:1;;;4142:35;3851:19;;41249:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40996:513;;:::o;37872:332::-;37918:7;;:12;:34;;;;-1:-1:-1;37934:13:0;;:18;37918:34;:56;;;;-1:-1:-1;37956:13:0;;:18;37918:56;37915:68;;;37872:332::o;37915:68::-;38013:7;;;37995:15;:25;38055:13;;;38031:21;:37;38103:13;;;38079:21;:37;-1:-1:-1;38129:11:0;;;;38151:17;;;;38179;37872:332::o;46178:627::-;46281:15;46298:23;46323:12;46337:23;46362:12;46376:18;46396;46418:19;46429:7;46418:10;:19::i;:::-;46280:157;;;;;;;;;;;;;;46466:28;46486:7;46466;:15;46474:6;-1:-1:-1;;;;;46466:15:0;-1:-1:-1;;;;;46466:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;46448:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46523:7;:15;;;;:28;;46543:7;46523:19;:28::i;:::-;-1:-1:-1;;;;;46505:15:0;;;;;;;:7;:15;;;;;;:46;;;;46583:18;;;;;;;:39;;46606:15;46583:22;:39::i;:::-;-1:-1:-1;;;;;46562:18:0;;;;;;:7;:18;;;;;:60;46633:26;46648:10;46633:14;:26::i;:::-;46677;46692:10;46677:14;:26::i;:::-;46714:23;46726:4;46732;46714:11;:23::i;:::-;46770:9;-1:-1:-1;;;;;46753:44:0;46762:6;-1:-1:-1;;;;;46753:44:0;;46781:15;46753:44;;;;12367:25:1;;12355:2;12340:18;;12221:177;46753:44:0;;;;;;;;46269:536;;;;;;;46178:627;;;:::o;45530:640::-;45631:15;45648:23;45673:12;45687:23;45712:12;45726:18;45746;45768:19;45779:7;45768:10;:19::i;:::-;45630:157;;;;;;;;;;;;;;45816:28;45836:7;45816;:15;45824:6;-1:-1:-1;;;;;45816:15:0;-1:-1:-1;;;;;45816:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;45798:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;45876:18;;;;;:7;:18;;;;;:39;;45899:15;45876:22;:39::i;:::-;-1:-1:-1;;;;;45855:18:0;;;;;;:7;:18;;;;;;;;:60;;;;45947:7;:18;;;;:39;;45970:15;45947:22;:39::i;44955:567::-;45054:15;45071:23;45096:12;45110:23;45135:12;45149:18;45169;45191:19;45202:7;45191:10;:19::i;:::-;45053:157;;;;;;;;;;;;;;45239:28;45259:7;45239;:15;45247:6;-1:-1:-1;;;;;45239:15:0;-1:-1:-1;;;;;45239:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;46817:699::-;46920:15;46937:23;46962:12;46976:23;47001:12;47015:18;47035;47057:19;47068:7;47057:10;:19::i;:::-;46919:157;;;;;;;;;;;;;;47105:28;47125:7;47105;:15;47113:6;-1:-1:-1;;;;;47105:15:0;-1:-1:-1;;;;;47105:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;47087:15:0;;;;;;:7;:15;;;;;;;;:46;;;;47162:7;:15;;;;:28;;47182:7;47162:19;:28::i;37364:154::-;37428:7;37455:55;37494:5;37455:20;37467:7;;37455;:11;;:20;;;;:::i;37526:166::-;37596:7;37623:61;37668:5;37623:26;37635:13;;37623:7;:11;;:26;;;;:::i;37698:166::-;37768:7;37795:61;37840:5;37795:26;37807:13;;37795:7;:11;;:26;;;;:::i;36630:355::-;36693:19;36716:10;:8;:10::i;:::-;36693:33;-1:-1:-1;36737:18:0;36758:27;:10;36693:33;36758:14;:27::i;:::-;36837:4;36821:22;;;;:7;:22;;;;;;36737:48;;-1:-1:-1;36821:38:0;;36737:48;36821:26;:38::i;:::-;36812:4;36796:22;;;;:7;:22;;;;;;;;:63;;;;36873:11;:26;;;;;;36870:107;;;36955:4;36939:22;;;;:7;:22;;;;;;:38;;36966:10;36939:26;:38::i;:::-;36930:4;36914:22;;;;:7;:22;;;;;:63;36682:303;;36630:355;:::o;34292:147::-;34370:7;;:17;;34382:4;34370:11;:17::i;:::-;34360:7;:27;34411:10;;:20;;34426:4;34411:14;:20::i;:::-;34398:10;:33;-1:-1:-1;;34292:147:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;108:60;14:160;;;:::o;179:247::-;238:6;291:2;279:9;270:7;266:23;262:32;259:52;;;307:1;304;297:12;259:52;346:9;333:23;365:31;390:5;365:31;:::i;431:251::-;501:6;554:2;542:9;533:7;529:23;525:32;522:52;;;570:1;567;560:12;522:52;602:9;596:16;621:31;646:5;621:31;:::i;687:388::-;755:6;763;816:2;804:9;795:7;791:23;787:32;784:52;;;832:1;829;822:12;784:52;871:9;858:23;890:31;915:5;890:31;:::i;:::-;940:5;-1:-1:-1;997:2:1;982:18;;969:32;1010:33;969:32;1010:33;:::i;:::-;1062:7;1052:17;;;687:388;;;;;:::o;1080:456::-;1157:6;1165;1173;1226:2;1214:9;1205:7;1201:23;1197:32;1194:52;;;1242:1;1239;1232:12;1194:52;1281:9;1268:23;1300:31;1325:5;1300:31;:::i;:::-;1350:5;-1:-1:-1;1407:2:1;1392:18;;1379:32;1420:33;1379:32;1420:33;:::i;:::-;1080:456;;1472:7;;-1:-1:-1;;;1526:2:1;1511:18;;;;1498:32;;1080:456::o;1541:315::-;1606:6;1614;1667:2;1655:9;1646:7;1642:23;1638:32;1635:52;;;1683:1;1680;1673:12;1635:52;1722:9;1709:23;1741:31;1766:5;1741:31;:::i;:::-;1791:5;-1:-1:-1;1815:35:1;1846:2;1831:18;;1815:35;:::i;:::-;1805:45;;1541:315;;;;;:::o;1861:::-;1929:6;1937;1990:2;1978:9;1969:7;1965:23;1961:32;1958:52;;;2006:1;2003;1996:12;1958:52;2045:9;2032:23;2064:31;2089:5;2064:31;:::i;:::-;2114:5;2166:2;2151:18;;;;2138:32;;-1:-1:-1;;;1861:315:1:o;2181:180::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:26;2345:9;2329:26;:::i;2366:180::-;2425:6;2478:2;2466:9;2457:7;2453:23;2449:32;2446:52;;;2494:1;2491;2484:12;2446:52;-1:-1:-1;2517:23:1;;2366:180;-1:-1:-1;2366:180:1:o;2551:248::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2729:9;2716:23;2706:33;;2758:35;2789:2;2778:9;2774:18;2758:35;:::i;2804:248::-;2872:6;2880;2933:2;2921:9;2912:7;2908:23;2904:32;2901:52;;;2949:1;2946;2939:12;2901:52;-1:-1:-1;;2972:23:1;;;3042:2;3027:18;;;3014:32;;-1:-1:-1;2804:248:1:o;3057:306::-;3145:6;3153;3161;3214:2;3202:9;3193:7;3189:23;3185:32;3182:52;;;3230:1;3227;3220:12;3182:52;3259:9;3253:16;3243:26;;3309:2;3298:9;3294:18;3288:25;3278:35;;3353:2;3342:9;3338:18;3332:25;3322:35;;3057:306;;;;;:::o;4615:597::-;4727:4;4756:2;4785;4774:9;4767:21;4817:6;4811:13;4860:6;4855:2;4844:9;4840:18;4833:34;4885:1;4895:140;4909:6;4906:1;4903:13;4895:140;;;5004:14;;;5000:23;;4994:30;4970:17;;;4989:2;4966:26;4959:66;4924:10;;4895:140;;;5053:6;5050:1;5047:13;5044:91;;;5123:1;5118:2;5109:6;5098:9;5094:22;5090:31;5083:42;5044:91;-1:-1:-1;5196:2:1;5175:15;-1:-1:-1;;5171:29:1;5156:45;;;;5203:2;5152:54;;4615:597;-1:-1:-1;;;4615:597:1:o;8727:356::-;8929:2;8911:21;;;8948:18;;;8941:30;9007:34;9002:2;8987:18;;8980:62;9074:2;9059:18;;8727:356::o;12403:980::-;12665:4;12713:3;12702:9;12698:19;12744:6;12733:9;12726:25;12770:2;12808:6;12803:2;12792:9;12788:18;12781:34;12851:3;12846:2;12835:9;12831:18;12824:31;12875:6;12910;12904:13;12941:6;12933;12926:22;12979:3;12968:9;12964:19;12957:26;;13018:2;13010:6;13006:15;12992:29;;13039:1;13049:195;13063:6;13060:1;13057:13;13049:195;;;13128:13;;-1:-1:-1;;;;;13124:39:1;13112:52;;13219:15;;;;13184:12;;;;13160:1;13078:9;13049:195;;;-1:-1:-1;;;;;;;13300:32:1;;;;13295:2;13280:18;;13273:60;-1:-1:-1;;;13364:3:1;13349:19;13342:35;13261:3;12403:980;-1:-1:-1;;;12403:980:1:o;13901:128::-;13941:3;13972:1;13968:6;13965:1;13962:13;13959:39;;;13978:18;;:::i;:::-;-1:-1:-1;14014:9:1;;13901:128::o;14034:217::-;14074:1;14100;14090:132;;14144:10;14139:3;14135:20;14132:1;14125:31;14179:4;14176:1;14169:15;14207:4;14204:1;14197:15;14090:132;-1:-1:-1;14236:9:1;;14034:217::o;14256:168::-;14296:7;14362:1;14358;14354:6;14350:14;14347:1;14344:21;14339:1;14332:9;14325:17;14321:45;14318:71;;;14369:18;;:::i;:::-;-1:-1:-1;14409:9:1;;14256:168::o;14429:125::-;14469:4;14497:1;14494;14491:8;14488:34;;;14502:18;;:::i;:::-;-1:-1:-1;14539:9:1;;14429:125::o;14559:380::-;14638:1;14634:12;;;;14681;;;14702:61;;14756:4;14748:6;14744:17;14734:27;;14702:61;14809:2;14801:6;14798:14;14778:18;14775:38;14772:161;;;14855:10;14850:3;14846:20;14843:1;14836:31;14890:4;14887:1;14880:15;14918:4;14915:1;14908:15;14772:161;;14559:380;;;:::o;14944:135::-;14983:3;-1:-1:-1;;15004:17:1;;15001:43;;;15024:18;;:::i;:::-;-1:-1:-1;15071:1:1;15060:13;;14944:135::o;15084:127::-;15145:10;15140:3;15136:20;15133:1;15126:31;15176:4;15173:1;15166:15;15200:4;15197:1;15190:15;15216:127;15277:10;15272:3;15268:20;15265:1;15258:31;15308:4;15305:1;15298:15;15332:4;15329:1;15322:15;15348:127;15409:10;15404:3;15400:20;15397:1;15390:31;15440:4;15437:1;15430:15;15464:4;15461:1;15454:15;15612:131;-1:-1:-1;;;;;15687:31:1;;15677:42;;15667:70;;15733:1;15730;15723:12;15667:70;15612:131;:::o

Swarm Source

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