ETH Price: $3,642.68 (-6.21%)

Token

ERC-20: MetaPortal (MetaPortal)
 

Overview

Max Total Supply

1,000,000,000 MetaPortal

Holders

121

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
939,462.112929645 MetaPortal

Value
$0.00
0x5C46C5a184E93fb7cb72f039968D05d2CCcAF117
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:
METAPORTAL

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 2021-11-16
*/

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

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 METAPORTAL is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    address deadAddress = 0x000000000000000000000000000000000000dEaD;

    string private _name = "MetaPortal";
    string private _symbol = "MetaPortal";
    uint8 private _decimals = 9;    
    uint256 private initialsupply = 1_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 = 4;
    uint256 private _previousLiquidityFee = _liquidityFee;
    uint256 public _marketingFee = 7;
    uint256 private _previousMarketingFee = _marketingFee;
    
    uint256 private maxBuyPercent = 10;
    uint256 private maxBuyDivisor = 1000;
    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"}]

600380546001600160a01b03191661dead179055610100604052600a60c08190526913595d18541bdc9d185b60b21b60e090815262000042916004919062000470565b5060408051808201909152600a8082526913595d18541bdc9d185b60b21b6020909201918252620000769160059162000470565b506006805460ff19166009908117909155633b9aca006007556200009c90600a620005a8565b600754620000ab919062000669565b60088190556013805460ff19166001179055601e601455620000d090600019620006e2565b620000de906000196200068b565b60155560006017556017546018556004601955601954601a556007601b55601b54601c55600a601d556103e8601e55601e54601d5460085462000122919062000669565b6200012e919062000548565b601f556020805461ff001916610100179055600854620001519060649062000548565b6021553480156200016157600080fd5b50604051620036af380380620036af833981016040819052620001849162000516565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601554336000908152600a602090815260409182902092909255600980546001600160a01b0319166001600160a01b038516179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b1580156200024257600080fd5b505afa15801562000257573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027d919062000516565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c657600080fd5b505afa158015620002db573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000301919062000516565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200034a57600080fd5b505af11580156200035f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000385919062000516565b6001600160601b0319606091821b811660a0529082901b166080526001600f6000620003b96000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600f909352818320805485166001908117909155600954909116835291208054909216179055620004183390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200046091815260200190565b60405180910390a3505062000725565b8280546200047e90620006a5565b90600052602060002090601f016020900481019282620004a25760008555620004ed565b82601f10620004bd57805160ff1916838001178555620004ed565b82800160010185558215620004ed579182015b82811115620004ed578251825591602001919060010190620004d0565b50620004fb929150620004ff565b5090565b5b80821115620004fb576000815560010162000500565b6000602082840312156200052957600080fd5b81516001600160a01b03811681146200054157600080fd5b9392505050565b6000826200055a576200055a6200070f565b500490565b600181815b80851115620005a0578160001904821115620005845762000584620006f9565b808516156200059257918102915b93841c939080029062000564565b509250929050565b60006200054160ff841683600082620005c45750600162000663565b81620005d35750600062000663565b8160018114620005ec5760028114620005f75762000617565b600191505062000663565b60ff8411156200060b576200060b620006f9565b50506001821b62000663565b5060208310610133831016604e8410600b84101617156200063c575081810a62000663565b6200064883836200055f565b80600019048211156200065f576200065f620006f9565b0290505b92915050565b6000816000190483118215151615620006865762000686620006f9565b500290565b600082821015620006a057620006a0620006f9565b500390565b600181811c90821680620006ba57607f821691505b60208210811415620006dc57634e487b7160e01b600052602260045260246000fd5b50919050565b600082620006f457620006f46200070f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60805160601c60a05160601c612f1f62000790600039600081816104f401528181611a3501528181611b3f0152611c3201526000818161032501528181611a71015281816123de015281816124a6015281816124e201528181612554015261257b0152612f1f6000f3fe60806040526004361061026b5760003560e01c806352390c02116101445780638fcc250d116100b6578063b6c523241161007a578063b6c5232414610768578063c49b9a801461077d578063dd4670641461079d578063dd62ed3e146107bd578063ea2f0b3714610803578063f2fde38b1461082357600080fd5b80638fcc250d146106de57806395d89b41146106fe578063a457c2d714610713578063a69df4b514610733578063a9059cbb1461074857600080fd5b8063715018a611610108578063715018a614610624578063787a08a614610639578063809157c51461064f57806388f82020146106675780638da5cb5b146106a05780638ee88c53146106be57600080fd5b806352390c02146105755780635342acb4146105955780635932ead1146105ce5780636bc87c3a146105ee57806370a082311461060457600080fd5b80633685d419116101dd5780634549b039116101a15780634549b039146104a2578063457c194c146104c257806349bd5a5e146104e25780634a74bb02146105165780634f662566146105355780634fc3f41a1461055557600080fd5b80633685d4191461040c578063395093511461042c5780633b124fe71461044c5780633bd5d17314610462578063437823ec1461048257600080fd5b806318160ddd1161022f57806318160ddd1461035f5780631da1db5e1461037457806322976e0d1461039457806323b872dd146103aa5780632d838119146103ca578063313ce567146103ea57600080fd5b806303d29d281461027757806306fdde0314610299578063095ea7b3146102c457806313114a9d146102f45780631694505e1461031357600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004612b59565b610843565b005b3480156102a557600080fd5b506102ae6108a1565b6040516102bb9190612c61565b60405180910390f35b3480156102d057600080fd5b506102e46102df366004612b8e565b610933565b60405190151581526020016102bb565b34801561030057600080fd5b506016545b6040519081526020016102bb565b34801561031f57600080fd5b506103477f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102bb565b34801561036b57600080fd5b50600854610305565b34801561038057600080fd5b5061029761038f366004612bd5565b61094a565b3480156103a057600080fd5b50610305601b5481565b3480156103b657600080fd5b506102e46103c5366004612b18565b6109d5565b3480156103d657600080fd5b506103056103e5366004612bd5565b610a3e565b3480156103f657600080fd5b5060065460405160ff90911681526020016102bb565b34801561041857600080fd5b50610297610427366004612aa5565b610ac2565b34801561043857600080fd5b506102e4610447366004612b8e565b610c75565b34801561045857600080fd5b5061030560175481565b34801561046e57600080fd5b5061029761047d366004612bd5565b610cab565b34801561048e57600080fd5b5061029761049d366004612aa5565b610d97565b3480156104ae57600080fd5b506103056104bd366004612bee565b610de5565b3480156104ce57600080fd5b506102976104dd366004612bd5565b610e74565b3480156104ee57600080fd5b506103477f000000000000000000000000000000000000000000000000000000000000000081565b34801561052257600080fd5b506020546102e490610100900460ff1681565b34801561054157600080fd5b50610297610550366004612c11565b610ea3565b34801561056157600080fd5b50610297610570366004612bd5565b610f7f565b34801561058157600080fd5b50610297610590366004612aa5565b610fae565b3480156105a157600080fd5b506102e46105b0366004612aa5565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156105da57600080fd5b506102976105e9366004612bba565b611179565b3480156105fa57600080fd5b5061030560195481565b34801561061057600080fd5b5061030561061f366004612aa5565b6111b6565b34801561063057600080fd5b50610297611215565b34801561064557600080fd5b5061030560145481565b34801561065b57600080fd5b5060135460ff166102e4565b34801561067357600080fd5b506102e4610682366004612aa5565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156106ac57600080fd5b506000546001600160a01b0316610347565b3480156106ca57600080fd5b506102976106d9366004612bd5565b611277565b3480156106ea57600080fd5b506102976106f9366004612c11565b6112a6565b34801561070a57600080fd5b506102ae6112f3565b34801561071f57600080fd5b506102e461072e366004612b8e565b611302565b34801561073f57600080fd5b50610297611351565b34801561075457600080fd5b506102e4610763366004612b8e565b611457565b34801561077457600080fd5b50600254610305565b34801561078957600080fd5b50610297610798366004612bba565b611464565b3480156107a957600080fd5b506102976107b8366004612bd5565b6114da565b3480156107c957600080fd5b506103056107d8366004612adf565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561080f57600080fd5b5061029761081e366004612aa5565b61155f565b34801561082f57600080fd5b5061029761083e366004612aa5565b6115aa565b6000546001600160a01b031633146108765760405162461bcd60e51b815260040161086d90612cb6565b60405180910390fd5b5060016001600160a01b0382166000908152601160205260409020805460ff191660011790555b5050565b6060600480546108b090612dcc565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612dcc565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b6000610940338484611682565b5060015b92915050565b6000546001600160a01b031633146109745760405162461bcd60e51b815260040161086d90612cb6565b606481111561098257600080fd5b60095447906001600160a01b03166108fc6109a860646109a285876117a6565b90611825565b6040518115909202916000818181858888f193505050501580156109d0573d6000803e3d6000fd5b505050565b60006109e2848484611867565b610a348433610a2f85604051806060016040528060288152602001612e7d602891396001600160a01b038a166000908152600e602090815260408083203384529091529020549190611cec565b611682565b5060019392505050565b6000601554821115610aa55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161086d565b6000610aaf611d26565b9050610abb8382611825565b9392505050565b6000546001600160a01b03163314610aec5760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03811660009081526010602052604090205460ff16610b545760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b60005b60125481101561089d57816001600160a01b031660128281548110610b7e57610b7e612e4e565b6000918252602090912001546001600160a01b03161415610c635760128054610ba990600190612db5565b81548110610bb957610bb9612e4e565b600091825260209091200154601280546001600160a01b039092169183908110610be557610be5612e4e565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600b82526040808220829055601090925220805460ff191690556012805480610c3d57610c3d612e38565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c6d81612e07565b915050610b57565b336000818152600e602090815260408083206001600160a01b03871684529091528120549091610940918590610a2f9086611d49565b3360008181526010602052604090205460ff1615610d205760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161086d565b6000610d2b83611da8565b5050506001600160a01b0386166000908152600a6020526040902054939450610d5993925084915050611e03565b6001600160a01b0383166000908152600a6020526040902055601554610d7f9082611e03565b601555601654610d8f9084611d49565b601655505050565b6000546001600160a01b03163314610dc15760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6000600854831115610e395760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161086d565b81610e59576000610e4984611da8565b5094965061094495505050505050565b6000610e6484611da8565b5093965061094495505050505050565b6000546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161086d90612cb6565b601b55565b6000546001600160a01b03163314610ecd5760405162461bcd60e51b815260040161086d90612cb6565b60018210158015610ee057506103e88111155b610ee957600080fd5b6000610f04826109a2856008546117a690919063ffffffff16565b90506103e8600854610f169190612d74565b811015610f785760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b606482015260840161086d565b601f555050565b6000546001600160a01b03163314610fa95760405162461bcd60e51b815260040161086d90612cb6565b601455565b6000546001600160a01b03163314610fd85760405162461bcd60e51b815260040161086d90612cb6565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156110505760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b606482015260840161086d565b6001600160a01b03811660009081526010602052604090205460ff16156110b95760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b6001600160a01b0381166000908152600a602052604090205415611113576001600160a01b0381166000908152600a60205260409020546110f990610a3e565b6001600160a01b0382166000908152600b60205260409020555b6001600160a01b03166000818152601060205260408120805460ff191660019081179091556012805491820181559091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319169091179055565b6000546001600160a01b031633146111a35760405162461bcd60e51b815260040161086d90612cb6565b6013805460ff1916911515919091179055565b6001600160a01b03811660009081526010602052604081205460ff16156111f357506001600160a01b03166000908152600b602052604090205490565b6001600160a01b0382166000908152600a602052604090205461094490610a3e565b6000546001600160a01b0316331461123f5760405162461bcd60e51b815260040161086d90612cb6565b600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112a15760405162461bcd60e51b815260040161086d90612cb6565b601955565b6000546001600160a01b031633146112d05760405162461bcd60e51b815260040161086d90612cb6565b60006112eb826109a2856008546117a690919063ffffffff16565b602155505050565b6060600580546108b090612dcc565b60006109403384610a2f85604051806060016040528060258152602001612ec560259139336000908152600e602090815260408083206001600160a01b038d1684529091529020549190611cec565b6001546001600160a01b031633146113b75760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b606482015260840161086d565b60025442116114085760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015260640161086d565b600154600080546040516001600160a01b039384169390911691600080516020612ea583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610940338484611867565b6000546001600160a01b0316331461148e5760405162461bcd60e51b815260040161086d90612cb6565b6020805461ff0019166101008315159081029190911782556040519081527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159910160405180910390a150565b6000546001600160a01b031633146115045760405162461bcd60e51b815260040161086d90612cb6565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556115338142612d5c565b600255600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a350565b6000546001600160a01b031633146115895760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b6000546001600160a01b031633146115d45760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b0381166116395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086d565b600080546040516001600160a01b0380851693921691600080516020612ea583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166116e45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161086d565b6001600160a01b0382166117455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161086d565b6001600160a01b038381166000818152600e602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000826117b557506000610944565b60006117c18385612d96565b9050826117ce8583612d74565b14610abb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161086d565b6000610abb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e45565b6001600160a01b0383166118cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161086d565b6001600160a01b03821661192d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161086d565b6000811161198f5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161086d565b6001600160a01b03831660009081526011602052604090205460ff16156119e15760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526011602052604090205460ff1615611a335760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015611aa657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611acb57506001600160a01b0382166000908152600f602052604090205460ff16155b8015611ad9575060135460ff165b15611b3d57601f54811115611aed57600080fd5b6001600160a01b0382166000908152600c60205260409020544211611b1157600080fd5b601454611b1f904290611d49565b6001600160a01b0383166000908152600c6020526040902055611bf7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015611b80575060135460ff165b8015611ba557506001600160a01b0382166000908152600f602052604090205460ff16155b15611bf7576001600160a01b0383166000908152600d6020526040902054421015611bcf57600080fd5b601454611bdd904290611d49565b6001600160a01b0384166000908152600d60205260409020555b6000611c02306111b6565b90506021548110611c1257506021545b60215481108015908190611c29575060205460ff16155b8015611c6757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611c7a5750602054610100900460ff165b15611c8d576021549150611c8d82611e73565b6001600160a01b0385166000908152600f602052604090205460019060ff1680611ccf57506001600160a01b0385166000908152600f602052604090205460ff165b15611cd8575060005b611ce486868684611fcb565b505050505050565b60008184841115611d105760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612db5565b95945050505050565b6000806000611d3361214e565b9092509050611d428282611825565b9250505090565b600080611d568385612d5c565b905083811015610abb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161086d565b6000806000806000806000806000806000611dc28c6122d0565b93509350935093506000806000611de38f878787611dde611d26565b612325565b919f509d509b509599509397509195509350505050919395979092949650565b6000610abb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cec565b60008183611e665760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612d74565b6020805460ff191660011790556000611e8d826002611825565b90506000611e9b8383611e03565b90506000611eaa826002611825565b90506000611eb88383611e03565b9050476000611ec78487611d49565b9050611ed281612387565b6000611ede4784611e03565b90506000611eed826003611825565b9050611ef9858261254e565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a16000611f468383611e03565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611f81573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506020805460ff191690555050505050505050565b80611fd857611fd8612663565b6001600160a01b03841660009081526010602052604090205460ff16801561201957506001600160a01b03831660009081526010602052604090205460ff16155b1561202e576120298484846126a8565b61212c565b6001600160a01b03841660009081526010602052604090205460ff1615801561206f57506001600160a01b03831660009081526010602052604090205460ff165b1561207f576120298484846127ee565b6001600160a01b03841660009081526010602052604090205460ff161580156120c157506001600160a01b03831660009081526010602052604090205460ff16155b156120d1576120298484846128ad565b6001600160a01b03841660009081526010602052604090205460ff16801561211157506001600160a01b03831660009081526010602052604090205460ff165b1561212157612029848484612907565b61212c8484846128ad565b8061214857612148601854601755601c54601b55601a54601955565b50505050565b6015546008546000918291825b6012548110156122a05782600a60006012848154811061217d5761217d612e4e565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121e8575081600b6000601284815481106121c1576121c1612e4e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156121fe57601554600854945094505050509091565b612244600a60006012848154811061221857612218612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e03565b925061228c600b60006012848154811061226057612260612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e03565b91508061229881612e07565b91505061215b565b506008546015546122b091611825565b8210156122c7576015546008549350935050509091565b90939092509050565b60008060008060006122e186612990565b905060006122ee876129ac565b905060006122fb886129c8565b905060006123158361230f84818d89611e03565b90611e03565b9993985091965094509092505050565b600080808061233489866117a6565b9050600061234289876117a6565b9050600061235088886117a6565b9050600061235e8a896117a6565b905060006123728361230f84818989611e03565b949d949c50929a509298505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bc576123bc612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243557600080fd5b505afa158015612449573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246d9190612ac2565b8160018151811061248057612480612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250506124cb307f000000000000000000000000000000000000000000000000000000000000000084611682565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612520908590600090869030904290600401612ceb565b600060405180830381600087803b15801561253a57600080fd5b505af1158015611ce4573d6000803e3d6000fd5b612579307f000000000000000000000000000000000000000000000000000000000000000084611682565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806125c06000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561262357600080fd5b505af1158015612637573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061265c9190612c33565b5050505050565b6017541580156126735750601954155b801561267f5750601b54155b1561268657565b60178054601855601b8054601c5560198054601a556000928390559082905555565b60008060008060008060006126bc88611da8565b965096509650965096509650965061270288600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546127319088611e03565b6001600160a01b03808c166000908152600a602052604080822093909355908b16815220546127609087611d49565b6001600160a01b038a166000908152600a6020526040902055612782826129e4565b61278b816129e4565b6127958584612a6c565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516127da91815260200190565b60405180910390a350505050505050505050565b600080600080600080600061280288611da8565b965096509650965096509650965061284887600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b03808c166000908152600a6020908152604080832094909455918c168152600b909152205461287e9085611d49565b6001600160a01b038a166000908152600b6020908152604080832093909355600a905220546127609087611d49565b60008060008060008060006128c188611da8565b965096509650965096509650965061273187600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b600080600080600080600061291b88611da8565b965096509650965096509650965061296188600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546128489088611e03565b600061094460646109a2601754856117a690919063ffffffff16565b600061094460646109a2601b54856117a690919063ffffffff16565b600061094460646109a2601954856117a690919063ffffffff16565b60006129ee611d26565b905060006129fc83836117a6565b306000908152600a6020526040902054909150612a199082611d49565b306000908152600a602090815260408083209390935560109052205460ff16156109d057306000908152600b6020526040902054612a579084611d49565b306000908152600b6020526040902055505050565b601554612a799083611e03565b601555601654612a899082611d49565b6016555050565b80358015158114612aa057600080fd5b919050565b600060208284031215612ab757600080fd5b8135610abb81612e64565b600060208284031215612ad457600080fd5b8151610abb81612e64565b60008060408385031215612af257600080fd5b8235612afd81612e64565b91506020830135612b0d81612e64565b809150509250929050565b600080600060608486031215612b2d57600080fd5b8335612b3881612e64565b92506020840135612b4881612e64565b929592945050506040919091013590565b60008060408385031215612b6c57600080fd5b8235612b7781612e64565b9150612b8560208401612a90565b90509250929050565b60008060408385031215612ba157600080fd5b8235612bac81612e64565b946020939093013593505050565b600060208284031215612bcc57600080fd5b610abb82612a90565b600060208284031215612be757600080fd5b5035919050565b60008060408385031215612c0157600080fd5b82359150612b8560208401612a90565b60008060408385031215612c2457600080fd5b50508035926020909101359150565b600080600060608486031215612c4857600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612c8e57858101830151858201604001528201612c72565b81811115612ca0576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d3b5784516001600160a01b031683529383019391830191600101612d16565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612d6f57612d6f612e22565b500190565b600082612d9157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612db057612db0612e22565b500290565b600082821015612dc757612dc7612e22565b500390565b600181811c90821680612de057607f821691505b60208210811415612e0157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e1b57612e1b612e22565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114612e7957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050c4bde142e3eae71427537d8aa9739d21043bc3ea76260713552e774629317f64736f6c63430008070033000000000000000000000000061ebe099d5c87da7df625380b6d801a75f8cb4c

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806352390c02116101445780638fcc250d116100b6578063b6c523241161007a578063b6c5232414610768578063c49b9a801461077d578063dd4670641461079d578063dd62ed3e146107bd578063ea2f0b3714610803578063f2fde38b1461082357600080fd5b80638fcc250d146106de57806395d89b41146106fe578063a457c2d714610713578063a69df4b514610733578063a9059cbb1461074857600080fd5b8063715018a611610108578063715018a614610624578063787a08a614610639578063809157c51461064f57806388f82020146106675780638da5cb5b146106a05780638ee88c53146106be57600080fd5b806352390c02146105755780635342acb4146105955780635932ead1146105ce5780636bc87c3a146105ee57806370a082311461060457600080fd5b80633685d419116101dd5780634549b039116101a15780634549b039146104a2578063457c194c146104c257806349bd5a5e146104e25780634a74bb02146105165780634f662566146105355780634fc3f41a1461055557600080fd5b80633685d4191461040c578063395093511461042c5780633b124fe71461044c5780633bd5d17314610462578063437823ec1461048257600080fd5b806318160ddd1161022f57806318160ddd1461035f5780631da1db5e1461037457806322976e0d1461039457806323b872dd146103aa5780632d838119146103ca578063313ce567146103ea57600080fd5b806303d29d281461027757806306fdde0314610299578063095ea7b3146102c457806313114a9d146102f45780631694505e1461031357600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004612b59565b610843565b005b3480156102a557600080fd5b506102ae6108a1565b6040516102bb9190612c61565b60405180910390f35b3480156102d057600080fd5b506102e46102df366004612b8e565b610933565b60405190151581526020016102bb565b34801561030057600080fd5b506016545b6040519081526020016102bb565b34801561031f57600080fd5b506103477f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102bb565b34801561036b57600080fd5b50600854610305565b34801561038057600080fd5b5061029761038f366004612bd5565b61094a565b3480156103a057600080fd5b50610305601b5481565b3480156103b657600080fd5b506102e46103c5366004612b18565b6109d5565b3480156103d657600080fd5b506103056103e5366004612bd5565b610a3e565b3480156103f657600080fd5b5060065460405160ff90911681526020016102bb565b34801561041857600080fd5b50610297610427366004612aa5565b610ac2565b34801561043857600080fd5b506102e4610447366004612b8e565b610c75565b34801561045857600080fd5b5061030560175481565b34801561046e57600080fd5b5061029761047d366004612bd5565b610cab565b34801561048e57600080fd5b5061029761049d366004612aa5565b610d97565b3480156104ae57600080fd5b506103056104bd366004612bee565b610de5565b3480156104ce57600080fd5b506102976104dd366004612bd5565b610e74565b3480156104ee57600080fd5b506103477f0000000000000000000000004f13fae98d853b34f01c808b5294ee88482a8a9c81565b34801561052257600080fd5b506020546102e490610100900460ff1681565b34801561054157600080fd5b50610297610550366004612c11565b610ea3565b34801561056157600080fd5b50610297610570366004612bd5565b610f7f565b34801561058157600080fd5b50610297610590366004612aa5565b610fae565b3480156105a157600080fd5b506102e46105b0366004612aa5565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156105da57600080fd5b506102976105e9366004612bba565b611179565b3480156105fa57600080fd5b5061030560195481565b34801561061057600080fd5b5061030561061f366004612aa5565b6111b6565b34801561063057600080fd5b50610297611215565b34801561064557600080fd5b5061030560145481565b34801561065b57600080fd5b5060135460ff166102e4565b34801561067357600080fd5b506102e4610682366004612aa5565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156106ac57600080fd5b506000546001600160a01b0316610347565b3480156106ca57600080fd5b506102976106d9366004612bd5565b611277565b3480156106ea57600080fd5b506102976106f9366004612c11565b6112a6565b34801561070a57600080fd5b506102ae6112f3565b34801561071f57600080fd5b506102e461072e366004612b8e565b611302565b34801561073f57600080fd5b50610297611351565b34801561075457600080fd5b506102e4610763366004612b8e565b611457565b34801561077457600080fd5b50600254610305565b34801561078957600080fd5b50610297610798366004612bba565b611464565b3480156107a957600080fd5b506102976107b8366004612bd5565b6114da565b3480156107c957600080fd5b506103056107d8366004612adf565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561080f57600080fd5b5061029761081e366004612aa5565b61155f565b34801561082f57600080fd5b5061029761083e366004612aa5565b6115aa565b6000546001600160a01b031633146108765760405162461bcd60e51b815260040161086d90612cb6565b60405180910390fd5b5060016001600160a01b0382166000908152601160205260409020805460ff191660011790555b5050565b6060600480546108b090612dcc565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612dcc565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b6000610940338484611682565b5060015b92915050565b6000546001600160a01b031633146109745760405162461bcd60e51b815260040161086d90612cb6565b606481111561098257600080fd5b60095447906001600160a01b03166108fc6109a860646109a285876117a6565b90611825565b6040518115909202916000818181858888f193505050501580156109d0573d6000803e3d6000fd5b505050565b60006109e2848484611867565b610a348433610a2f85604051806060016040528060288152602001612e7d602891396001600160a01b038a166000908152600e602090815260408083203384529091529020549190611cec565b611682565b5060019392505050565b6000601554821115610aa55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161086d565b6000610aaf611d26565b9050610abb8382611825565b9392505050565b6000546001600160a01b03163314610aec5760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03811660009081526010602052604090205460ff16610b545760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b60005b60125481101561089d57816001600160a01b031660128281548110610b7e57610b7e612e4e565b6000918252602090912001546001600160a01b03161415610c635760128054610ba990600190612db5565b81548110610bb957610bb9612e4e565b600091825260209091200154601280546001600160a01b039092169183908110610be557610be5612e4e565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600b82526040808220829055601090925220805460ff191690556012805480610c3d57610c3d612e38565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c6d81612e07565b915050610b57565b336000818152600e602090815260408083206001600160a01b03871684529091528120549091610940918590610a2f9086611d49565b3360008181526010602052604090205460ff1615610d205760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161086d565b6000610d2b83611da8565b5050506001600160a01b0386166000908152600a6020526040902054939450610d5993925084915050611e03565b6001600160a01b0383166000908152600a6020526040902055601554610d7f9082611e03565b601555601654610d8f9084611d49565b601655505050565b6000546001600160a01b03163314610dc15760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6000600854831115610e395760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161086d565b81610e59576000610e4984611da8565b5094965061094495505050505050565b6000610e6484611da8565b5093965061094495505050505050565b6000546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161086d90612cb6565b601b55565b6000546001600160a01b03163314610ecd5760405162461bcd60e51b815260040161086d90612cb6565b60018210158015610ee057506103e88111155b610ee957600080fd5b6000610f04826109a2856008546117a690919063ffffffff16565b90506103e8600854610f169190612d74565b811015610f785760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b606482015260840161086d565b601f555050565b6000546001600160a01b03163314610fa95760405162461bcd60e51b815260040161086d90612cb6565b601455565b6000546001600160a01b03163314610fd85760405162461bcd60e51b815260040161086d90612cb6565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156110505760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b606482015260840161086d565b6001600160a01b03811660009081526010602052604090205460ff16156110b95760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b6001600160a01b0381166000908152600a602052604090205415611113576001600160a01b0381166000908152600a60205260409020546110f990610a3e565b6001600160a01b0382166000908152600b60205260409020555b6001600160a01b03166000818152601060205260408120805460ff191660019081179091556012805491820181559091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319169091179055565b6000546001600160a01b031633146111a35760405162461bcd60e51b815260040161086d90612cb6565b6013805460ff1916911515919091179055565b6001600160a01b03811660009081526010602052604081205460ff16156111f357506001600160a01b03166000908152600b602052604090205490565b6001600160a01b0382166000908152600a602052604090205461094490610a3e565b6000546001600160a01b0316331461123f5760405162461bcd60e51b815260040161086d90612cb6565b600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112a15760405162461bcd60e51b815260040161086d90612cb6565b601955565b6000546001600160a01b031633146112d05760405162461bcd60e51b815260040161086d90612cb6565b60006112eb826109a2856008546117a690919063ffffffff16565b602155505050565b6060600580546108b090612dcc565b60006109403384610a2f85604051806060016040528060258152602001612ec560259139336000908152600e602090815260408083206001600160a01b038d1684529091529020549190611cec565b6001546001600160a01b031633146113b75760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b606482015260840161086d565b60025442116114085760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015260640161086d565b600154600080546040516001600160a01b039384169390911691600080516020612ea583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610940338484611867565b6000546001600160a01b0316331461148e5760405162461bcd60e51b815260040161086d90612cb6565b6020805461ff0019166101008315159081029190911782556040519081527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159910160405180910390a150565b6000546001600160a01b031633146115045760405162461bcd60e51b815260040161086d90612cb6565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556115338142612d5c565b600255600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a350565b6000546001600160a01b031633146115895760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b6000546001600160a01b031633146115d45760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b0381166116395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086d565b600080546040516001600160a01b0380851693921691600080516020612ea583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166116e45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161086d565b6001600160a01b0382166117455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161086d565b6001600160a01b038381166000818152600e602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000826117b557506000610944565b60006117c18385612d96565b9050826117ce8583612d74565b14610abb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161086d565b6000610abb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e45565b6001600160a01b0383166118cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161086d565b6001600160a01b03821661192d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161086d565b6000811161198f5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161086d565b6001600160a01b03831660009081526011602052604090205460ff16156119e15760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526011602052604090205460ff1615611a335760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b7f0000000000000000000000004f13fae98d853b34f01c808b5294ee88482a8a9c6001600160a01b0316836001600160a01b0316148015611aa657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611acb57506001600160a01b0382166000908152600f602052604090205460ff16155b8015611ad9575060135460ff165b15611b3d57601f54811115611aed57600080fd5b6001600160a01b0382166000908152600c60205260409020544211611b1157600080fd5b601454611b1f904290611d49565b6001600160a01b0383166000908152600c6020526040902055611bf7565b7f0000000000000000000000004f13fae98d853b34f01c808b5294ee88482a8a9c6001600160a01b0316836001600160a01b0316148015611b80575060135460ff165b8015611ba557506001600160a01b0382166000908152600f602052604090205460ff16155b15611bf7576001600160a01b0383166000908152600d6020526040902054421015611bcf57600080fd5b601454611bdd904290611d49565b6001600160a01b0384166000908152600d60205260409020555b6000611c02306111b6565b90506021548110611c1257506021545b60215481108015908190611c29575060205460ff16155b8015611c6757507f0000000000000000000000004f13fae98d853b34f01c808b5294ee88482a8a9c6001600160a01b0316856001600160a01b031614155b8015611c7a5750602054610100900460ff165b15611c8d576021549150611c8d82611e73565b6001600160a01b0385166000908152600f602052604090205460019060ff1680611ccf57506001600160a01b0385166000908152600f602052604090205460ff165b15611cd8575060005b611ce486868684611fcb565b505050505050565b60008184841115611d105760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612db5565b95945050505050565b6000806000611d3361214e565b9092509050611d428282611825565b9250505090565b600080611d568385612d5c565b905083811015610abb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161086d565b6000806000806000806000806000806000611dc28c6122d0565b93509350935093506000806000611de38f878787611dde611d26565b612325565b919f509d509b509599509397509195509350505050919395979092949650565b6000610abb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cec565b60008183611e665760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612d74565b6020805460ff191660011790556000611e8d826002611825565b90506000611e9b8383611e03565b90506000611eaa826002611825565b90506000611eb88383611e03565b9050476000611ec78487611d49565b9050611ed281612387565b6000611ede4784611e03565b90506000611eed826003611825565b9050611ef9858261254e565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a16000611f468383611e03565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611f81573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506020805460ff191690555050505050505050565b80611fd857611fd8612663565b6001600160a01b03841660009081526010602052604090205460ff16801561201957506001600160a01b03831660009081526010602052604090205460ff16155b1561202e576120298484846126a8565b61212c565b6001600160a01b03841660009081526010602052604090205460ff1615801561206f57506001600160a01b03831660009081526010602052604090205460ff165b1561207f576120298484846127ee565b6001600160a01b03841660009081526010602052604090205460ff161580156120c157506001600160a01b03831660009081526010602052604090205460ff16155b156120d1576120298484846128ad565b6001600160a01b03841660009081526010602052604090205460ff16801561211157506001600160a01b03831660009081526010602052604090205460ff165b1561212157612029848484612907565b61212c8484846128ad565b8061214857612148601854601755601c54601b55601a54601955565b50505050565b6015546008546000918291825b6012548110156122a05782600a60006012848154811061217d5761217d612e4e565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121e8575081600b6000601284815481106121c1576121c1612e4e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156121fe57601554600854945094505050509091565b612244600a60006012848154811061221857612218612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e03565b925061228c600b60006012848154811061226057612260612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e03565b91508061229881612e07565b91505061215b565b506008546015546122b091611825565b8210156122c7576015546008549350935050509091565b90939092509050565b60008060008060006122e186612990565b905060006122ee876129ac565b905060006122fb886129c8565b905060006123158361230f84818d89611e03565b90611e03565b9993985091965094509092505050565b600080808061233489866117a6565b9050600061234289876117a6565b9050600061235088886117a6565b9050600061235e8a896117a6565b905060006123728361230f84818989611e03565b949d949c50929a509298505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bc576123bc612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243557600080fd5b505afa158015612449573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246d9190612ac2565b8160018151811061248057612480612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250506124cb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611682565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612520908590600090869030904290600401612ceb565b600060405180830381600087803b15801561253a57600080fd5b505af1158015611ce4573d6000803e3d6000fd5b612579307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611682565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806125c06000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561262357600080fd5b505af1158015612637573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061265c9190612c33565b5050505050565b6017541580156126735750601954155b801561267f5750601b54155b1561268657565b60178054601855601b8054601c5560198054601a556000928390559082905555565b60008060008060008060006126bc88611da8565b965096509650965096509650965061270288600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546127319088611e03565b6001600160a01b03808c166000908152600a602052604080822093909355908b16815220546127609087611d49565b6001600160a01b038a166000908152600a6020526040902055612782826129e4565b61278b816129e4565b6127958584612a6c565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516127da91815260200190565b60405180910390a350505050505050505050565b600080600080600080600061280288611da8565b965096509650965096509650965061284887600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b03808c166000908152600a6020908152604080832094909455918c168152600b909152205461287e9085611d49565b6001600160a01b038a166000908152600b6020908152604080832093909355600a905220546127609087611d49565b60008060008060008060006128c188611da8565b965096509650965096509650965061273187600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b600080600080600080600061291b88611da8565b965096509650965096509650965061296188600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546128489088611e03565b600061094460646109a2601754856117a690919063ffffffff16565b600061094460646109a2601b54856117a690919063ffffffff16565b600061094460646109a2601954856117a690919063ffffffff16565b60006129ee611d26565b905060006129fc83836117a6565b306000908152600a6020526040902054909150612a199082611d49565b306000908152600a602090815260408083209390935560109052205460ff16156109d057306000908152600b6020526040902054612a579084611d49565b306000908152600b6020526040902055505050565b601554612a799083611e03565b601555601654612a899082611d49565b6016555050565b80358015158114612aa057600080fd5b919050565b600060208284031215612ab757600080fd5b8135610abb81612e64565b600060208284031215612ad457600080fd5b8151610abb81612e64565b60008060408385031215612af257600080fd5b8235612afd81612e64565b91506020830135612b0d81612e64565b809150509250929050565b600080600060608486031215612b2d57600080fd5b8335612b3881612e64565b92506020840135612b4881612e64565b929592945050506040919091013590565b60008060408385031215612b6c57600080fd5b8235612b7781612e64565b9150612b8560208401612a90565b90509250929050565b60008060408385031215612ba157600080fd5b8235612bac81612e64565b946020939093013593505050565b600060208284031215612bcc57600080fd5b610abb82612a90565b600060208284031215612be757600080fd5b5035919050565b60008060408385031215612c0157600080fd5b82359150612b8560208401612a90565b60008060408385031215612c2457600080fd5b50508035926020909101359150565b600080600060608486031215612c4857600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612c8e57858101830151858201604001528201612c72565b81811115612ca0576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d3b5784516001600160a01b031683529383019391830191600101612d16565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612d6f57612d6f612e22565b500190565b600082612d9157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612db057612db0612e22565b500290565b600082821015612dc757612dc7612e22565b500390565b600181811c90821680612de057607f821691505b60208210811415612e0157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e1b57612e1b612e22565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114612e7957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050c4bde142e3eae71427537d8aa9739d21043bc3ea76260713552e774629317f64736f6c63430008070033

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

000000000000000000000000061ebe099d5c87da7df625380b6d801a75f8cb4c

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000061ebe099d5c87da7df625380b6d801a75f8cb4c


Deployed Bytecode Sourcemap

25642:22164:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31050:282;;;;;;;;;;-1:-1:-1;31050:282:0;;;;;:::i;:::-;;:::i;:::-;;28744:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29389:161;;;;;;;;;;-1:-1:-1;29389:161:0;;;;;:::i;:::-;;:::i;:::-;;;4353:14:1;;4346:22;4328:41;;4316:2;4301:18;29389:161:0;4188:187:1;33994:87:0;;;;;;;;;;-1:-1:-1;34063:10:0;;33994:87;;;12367:25:1;;;12355:2;12340:18;33994:87:0;12221:177:1;27298:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3532:32:1;;;3514:51;;3502:2;3487:18;27298:51:0;3368:203:1;28967:79:0;;;;;;;;;;-1:-1:-1;29037:7:0;;28967:79;;40199:262;;;;;;;;;;-1:-1:-1;40199:262:0;;;;;:::i;:::-;;:::i;27024:32::-;;;;;;;;;;;;;;;;41591:313;;;;;;;;;;-1:-1:-1;41591:313:0;;;;;:::i;:::-;;:::i;32176:253::-;;;;;;;;;;-1:-1:-1;32176:253:0;;;;;:::i;:::-;;:::i;28894:67::-;;;;;;;;;;-1:-1:-1;28950:9:0;;28894:67;;28950:9;;;;13854:36:1;;13842:2;13827:18;28894:67:0;13712:184:1;33131:479:0;;;;;;;;;;-1:-1:-1;33131:479:0;;;;;:::i;:::-;;:::i;30543:218::-;;;;;;;;;;-1:-1:-1;30543:218:0;;;;;:::i;:::-;;:::i;26844:26::-;;;;;;;;;;;;;;;;31344:378;;;;;;;;;;-1:-1:-1;31344:378:0;;;;;:::i;:::-;;:::i;33618:111::-;;;;;;;;;;-1:-1:-1;33618:111:0;;;;;:::i;:::-;;:::i;31730:438::-;;;;;;;;;;-1:-1:-1;31730:438:0;;;;;:::i;:::-;;:::i;29935:122::-;;;;;;;;;;-1:-1:-1;29935:122:0;;;;;:::i;:::-;;:::i;27356:38::-;;;;;;;;;;;;;;;27429:40;;;;;;;;;;-1:-1:-1;27429:40:0;;;;;;;;;;;30185:350;;;;;;;;;;-1:-1:-1;30185:350:0;;;;;:::i;:::-;;:::i;30073:100::-;;;;;;;;;;-1:-1:-1;30073:100:0;;;;;:::i;:::-;;:::i;32565:558::-;;;;;;;;;;-1:-1:-1;32565:558:0;;;;;:::i;:::-;;:::i;33859:123::-;;;;;;;;;;-1:-1:-1;33859:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;33947:27:0;33923:4;33947:27;;;:18;:27;;;;;;;;;33859:123;47700:103;;;;;;;;;;-1:-1:-1;47700:103:0;;;;;:::i;:::-;;:::i;26925:32::-;;;;;;;;;;;;;;;;29185:198;;;;;;;;;;-1:-1:-1;29185:198:0;;;;;:::i;:::-;;:::i;16255:148::-;;;;;;;;;;;;;:::i;26657:36::-;;;;;;;;;;;;;;;;47594:94;;;;;;;;;;-1:-1:-1;47665:15:0;;;;47594:94;;32437:120;;;;;;;;;;-1:-1:-1;32437:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;32529:20:0;32505:4;32529:20;;;:11;:20;;;;;;;;;32437:120;15619:79;;;;;;;;;;-1:-1:-1;15657:7:0;15684:6;-1:-1:-1;;;;;15684:6:0;15619:79;;29797:122;;;;;;;;;;-1:-1:-1;29797:122:0;;;;;:::i;:::-;;:::i;29558:223::-;;;;;;;;;;-1:-1:-1;29558:223:0;;;;;:::i;:::-;;:::i;28817:71::-;;;;;;;;;;;;;:::i;30769:269::-;;;;;;;;;;-1:-1:-1;30769:269:0;;;;;:::i;:::-;;:::i;17277:305::-;;;;;;;;;;;;;:::i;43951:167::-;;;;;;;;;;-1:-1:-1;43951:167:0;;;;;:::i;:::-;;:::i;16810:89::-;;;;;;;;;;-1:-1:-1;16882:9:0;;16810:89;;34089:171;;;;;;;;;;-1:-1:-1;34089:171:0;;;;;:::i;:::-;;:::i;16975:226::-;;;;;;;;;;-1:-1:-1;16975:226:0;;;;;:::i;:::-;;:::i;29052:127::-;;;;;;;;;;-1:-1:-1;29052:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;29150:18:0;;;29133:7;29150:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29052:127;33737:110;;;;;;;;;;-1:-1:-1;33737:110:0;;;;;:::i;:::-;;:::i;16558:244::-;;;;;;;;;;-1:-1:-1;16558:244:0;;;;;:::i;:::-;;:::i;31050:282::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;31159:4:0::1;-1:-1:-1::0;;;;;31184:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;:30;;-1:-1:-1;;31184:30:0::1;31210:4;31184:30;::::0;;31231:94:::1;31050:282:::0;;:::o;28744:67::-;28781:13;28804:5;28797:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28744:67;:::o;29389:161::-;29464:4;29481:39;8122:10;29504:7;29513:6;29481:8;:39::i;:::-;-1:-1:-1;29538:4:0;29389:161;;;;;:::o;40199:262::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;40310:3:::1;40290:16;:23;;40282:32;;;::::0;::::1;;40385:16;::::0;40345:21:::1;::::0;-1:-1:-1;;;;;40385:16:0::1;40377:76;40412:40;40448:3;40412:31;40345:21:::0;40426:16;40412:13:::1;:31::i;:::-;:35:::0;::::1;:40::i;:::-;40377:76;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40271:190;40199:262:::0;:::o;41591:313::-;41689:4;41706:36;41716:6;41724:9;41735:6;41706:9;:36::i;:::-;41753:121;41762:6;8122:10;41784:89;41822:6;41784:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41784:19:0;;;;;;:11;:19;;;;;;;;8122:10;41784:33;;;;;;;;;;:37;:89::i;:::-;41753:8;:121::i;:::-;-1:-1:-1;41892:4:0;41591:313;;;;;:::o;32176:253::-;32242:7;32281;;32270;:18;;32262:73;;;;-1:-1:-1;;;32262:73:0;;5823:2:1;32262: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;;32262:73:0;5621:406:1;32262:73:0;32346:19;32369:10;:8;:10::i;:::-;32346:33;-1:-1:-1;32397:24:0;:7;32346:33;32397:11;:24::i;:::-;32390:31;32176:253;-1:-1:-1;;;32176:253:0:o;33131:479::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33213:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33205:60;;;::::0;-1:-1:-1;;;33205:60:0;;7811:2:1;33205:60:0::1;::::0;::::1;7793:21:1::0;7850:2;7830:18;;;7823:30;7889:29;7869:18;;;7862:57;7936:18;;33205:60:0::1;7609:351:1::0;33205:60:0::1;33281:9;33276:327;33300:9;:16:::0;33296:20;::::1;33276:327;;;33358:7;-1:-1:-1::0;;;;;33342:23:0::1;:9;33352:1;33342:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33342:12:0::1;:23;33338:254;;;33401:9;33411:16:::0;;:20:::1;::::0;33430:1:::1;::::0;33411:20:::1;:::i;:::-;33401:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;33386:9:::1;:12:::0;;-1:-1:-1;;;;;33401:31:0;;::::1;::::0;33396:1;;33386:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33386:46:0::1;-1:-1:-1::0;;;;;33386:46:0;;::::1;;::::0;;33451:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33490:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33490:28:0::1;::::0;;33537:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33537:15:0;;;;;-1:-1:-1;;;;;;33537:15:0::1;::::0;;;;;31050:282;;:::o;33338:254::-:1;33318:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33276:327;;30543:218:::0;8122:10;30631:4;30680:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30680:34:0;;;;;;;;;;30631:4;;30648:83;;30671:7;;30680:50;;30719:10;30680:38;:50::i;31344:378::-;8122:10;31396:14;31445:19;;;:11;:19;;;;;;;;31444:20;31436:77;;;;-1:-1:-1;;;31436:77:0;;11606:2:1;31436: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;;31436:77:0;11404:408:1;31436:77:0;31525:15;31550:19;31561:7;31550:10;:19::i;:::-;-1:-1:-1;;;;;;;;31598:15:0;;;;;;:7;:15;;;;;;31524:45;;-1:-1:-1;31598:28:0;;:15;-1:-1:-1;31524:45:0;;-1:-1:-1;;31598:19:0;:28::i;:::-;-1:-1:-1;;;;;31580:15:0;;;;;;:7;:15;;;;;:46;31647:7;;:20;;31659:7;31647:11;:20::i;:::-;31637:7;:30;31691:10;;:23;;31706:7;31691:14;:23::i;:::-;31678:10;:36;-1:-1:-1;;;31344:378:0:o;33618:111::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33687:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33687:34:0::1;33717:4;33687:34;::::0;;33618:111::o;31730:438::-;31820:7;31859;;31848;:18;;31840:62;;;;-1:-1:-1;;;31840:62:0;;8167:2:1;31840:62:0;;;8149:21:1;8206:2;8186:18;;;8179:30;8245:33;8225:18;;;8218:61;8296:18;;31840:62:0;7965:355:1;31840:62:0;31918:17;31913:248;;31953:15;31978:19;31989:7;31978:10;:19::i;:::-;-1:-1:-1;31952:45:0;;-1:-1:-1;32012:14:0;;-1:-1:-1;;;;;;32012:14:0;31913:248;32061:23;32093:19;32104:7;32093:10;:19::i;:::-;-1:-1:-1;32059:53:0;;-1:-1:-1;32127:22:0;;-1:-1:-1;;;;;;32127:22:0;29935:122;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;30021:13:::1;:28:::0;29935:122::o;30185:350::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;30291:1:::1;30280:7;:12;;:31;;;;;30307:4;30296:7;:15;;30280:31;30272:40;;;::::0;::::1;;30352:14;30369:33;30394:7;30369:20;30381:7;30369;;:11;;:20;;;;:::i;:33::-;30352:50;;30442:4;30432:7;;:14;;;;:::i;:::-;30421:6;:26;;30413:81;;;::::0;-1:-1:-1;;;30413:81:0;;7400:2:1;30413: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;;30413:81:0::1;7198:406:1::0;30413:81:0::1;30505:13;:22:::0;-1:-1:-1;;30185:350:0:o;30073:100::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;30145:8:::1;:20:::0;30073:100::o;32565:558::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;32658:42:::1;-1:-1:-1::0;;;;;32647:53:0;::::1;;;32639:100;;;::::0;-1:-1:-1;;;32639:100:0;;11203:2:1;32639: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;;32639:100:0::1;11001:398:1::0;32639:100:0::1;-1:-1:-1::0;;;;;32873:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32872:21;32864:61;;;::::0;-1:-1:-1;;;32864:61:0;;7811:2:1;32864:61:0::1;::::0;::::1;7793:21:1::0;7850:2;7830:18;;;7823:30;7889:29;7869:18;;;7862:57;7936:18;;32864:61:0::1;7609:351:1::0;32864:61:0::1;-1:-1:-1::0;;;;;32939:16:0;::::1;32958:1;32939:16:::0;;;:7:::1;:16;::::0;;;;;:20;32936:108:::1;;-1:-1:-1::0;;;;;33015:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32995:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32976:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32936:108:::1;-1:-1:-1::0;;;;;33054:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33054:27:0::1;33077:4;33054:27:::0;;::::1;::::0;;;33092:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33092:23:0::1;::::0;;::::1;::::0;;32565:558::o;47700:103::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;47772:15:::1;:23:::0;;-1:-1:-1;;47772:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47700:103::o;29185:198::-;-1:-1:-1;;;;;29275:20:0;;29251:7;29275:20;;;:11;:20;;;;;;;;29271:49;;;-1:-1:-1;;;;;;29304:16:0;;;;;:7;:16;;;;;;;29185:198::o;29271:49::-;-1:-1:-1;;;;;29358:16:0;;;;;;:7;:16;;;;;;29338:37;;:19;:37::i;16255:148::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;16362:1:::1;16346:6:::0;;16325:40:::1;::::0;-1:-1:-1;;;;;16346:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16325:40:0;16362:1;;16325:40:::1;16393:1;16376:19:::0;;-1:-1:-1;;;;;;16376:19:0::1;::::0;;16255:148::o;29797:122::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;29883:13:::1;:28:::0;29797:122::o;29558:223::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;29666:18:::1;29687:33;29712:7;29687:20;29699:7;29687;;:11;;:20;;;;:::i;:33::-;29731:29;:42:::0;-1:-1:-1;;;29558:223:0:o;28817:71::-;28856:13;28879:7;28872:14;;;;;:::i;30769:269::-;30862:4;30879:129;8122:10;30902:7;30911:96;30950:15;30911:96;;;;;;;;;;;;;;;;;8122:10;30911:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30911:34:0;;;;;;;;;;;;:38;:96::i;17277:305::-;17329:14;;-1:-1:-1;;;;;17329:14:0;17347:10;17329:28;17321:76;;;;-1:-1:-1;;;17321:76:0;;12019:2:1;17321: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;;17321:76:0;11817:399:1;17321:76:0;17434:9;;17416:15;:27;17408:72;;;;-1:-1:-1;;;17408:72:0;;10843:2:1;17408:72:0;;;10825:21:1;10882:2;10862:18;;;10855:30;10921:33;10901:18;;;10894:61;10972:18;;17408:72:0;10641:355:1;17408:72:0;17525:14;;;17517:6;;17496:44;;-1:-1:-1;;;;;17525:14:0;;;;17517:6;;;;-1:-1:-1;;;;;;;;;;;17496:44:0;;17560:14;;;17551:23;;-1:-1:-1;;;;;;17551:23:0;-1:-1:-1;;;;;17560:14:0;;;17551:23;;;;;;17277:305::o;43951:167::-;44029:4;44046:42;8122:10;44070:9;44081:6;44046:9;:42::i;34089:171::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;34166:21:::1;:32:::0;;-1:-1:-1;;34166:32:0::1;;::::0;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;34214:38:::1;::::0;4328:41:1;;;34214:38:0::1;::::0;4301:18:1;34214:38:0::1;;;;;;;34089:171:::0;:::o;16975:226::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;17056:6:::1;::::0;;;17039:23;;-1:-1:-1;;;;;;17039:23:0;;::::1;-1:-1:-1::0;;;;;17056:6:0;::::1;17039:23;::::0;;;17073:19:::1;::::0;;17115:22:::1;17133:4:::0;17115:15:::1;:22;:::i;:::-;17103:9;:34:::0;17190:1:::1;17174:6:::0;;17153:40:::1;::::0;-1:-1:-1;;;;;17174:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17153:40:0;17190:1;;17153:40:::1;16975:226:::0;:::o;33737:110::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33804:27:0::1;33834:5;33804:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33804:35:0::1;::::0;;33737:110::o;16558:244::-;15831:6;;-1:-1:-1;;;;;15831:6:0;8122:10;15831:22;15823:67;;;;-1:-1:-1;;;15823:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16647:22:0;::::1;16639:73;;;::::0;-1:-1:-1;;;16639:73:0;;6234:2:1;16639: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;;16639:73:0::1;6032:402:1::0;16639:73:0::1;16749:6;::::0;;16728:38:::1;::::0;-1:-1:-1;;;;;16728:38:0;;::::1;::::0;16749:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16728:38:0;::::1;16777:6;:17:::0;;-1:-1:-1;;;;;;16777:17:0::1;-1:-1:-1::0;;;;;16777:17:0;;;::::1;::::0;;;::::1;::::0;;16558:244::o;38463:337::-;-1:-1:-1;;;;;38556:19:0;;38548:68;;;;-1:-1:-1;;;38548:68:0;;10438:2:1;38548: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;;38548:68:0;10236:400:1;38548:68:0;-1:-1:-1;;;;;38635:21:0;;38627:68;;;;-1:-1:-1;;;38627:68:0;;6641:2:1;38627: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;;38627:68:0;6439:398:1;38627:68:0;-1:-1:-1;;;;;38708:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38760:32;;12367:25:1;;;38760:32:0;;12340:18:1;38760:32:0;;;;;;;38463:337;;;:::o;4903:471::-;4961:7;5206:6;5202:47;;-1:-1:-1;5236:1:0;5229:8;;5202:47;5261:9;5273:5;5277:1;5273;:5;:::i;:::-;5261:17;-1:-1:-1;5306:1:0;5297:5;5301:1;5261:17;5297:5;:::i;:::-;:10;5289:56;;;;-1:-1:-1;;;5289:56:0;;8527:2:1;5289: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;;5289:56:0;8325:397:1;5850:132:0;5908:7;5935:39;5939:1;5942;5935:39;;;;;;;;;;;;;;;;;:3;:39::i;41912:2031::-;-1:-1:-1;;;;;42034:18:0;;42026:68;;;;-1:-1:-1;;;42026:68:0;;10032:2:1;42026: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;;42026:68:0;9830:401:1;42026:68:0;-1:-1:-1;;;;;42113:16:0;;42105:64;;;;-1:-1:-1;;;42105:64:0;;5419:2:1;42105: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;;42105:64:0;5217:399:1;42105:64:0;42197:1;42188:6;:10;42180:64;;;;-1:-1:-1;;;42180:64:0;;9290:2:1;42180: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;;42180:64:0;9088:405:1;42180:64:0;-1:-1:-1;;;;;42263:20:0;;;;;;:14;:20;;;;;;;;:29;42255:46;;;;-1:-1:-1;;;42255: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;42255:46:0;-1:-1:-1;;;;;42320:18:0;;;;;;:14;:18;;;;;;;;:27;42312:44;;;;-1:-1:-1;;;42312: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;42312:44:0;42379:13;-1:-1:-1;;;;;42371:21:0;:4;-1:-1:-1;;;;;42371:21:0;;:55;;;;;42410:15;-1:-1:-1;;;;;42396:30:0;:2;-1:-1:-1;;;;;42396:30:0;;;42371:55;:82;;;;-1:-1:-1;;;;;;42431:22:0;;;;;;:18;:22;;;;;;;;42430:23;42371:82;:101;;;;-1:-1:-1;42457:15:0;;;;42371:101;42367:525;;;42511:13;;42501:6;:23;;42493:32;;;;;;-1:-1:-1;;;;;42552:15:0;;;;;;:11;:15;;;;;;42570;-1:-1:-1;42544:42:0;;;;;;42643:8;;42623:29;;:15;;:19;:29::i;:::-;-1:-1:-1;;;;;42605:15:0;;;;;;:11;:15;;;;;:47;42367:525;;;42693:13;-1:-1:-1;;;;;42685:21:0;:4;-1:-1:-1;;;;;42685:21:0;;:40;;;;-1:-1:-1;42710:15:0;;;;42685:40;:67;;;;-1:-1:-1;;;;;;42730:22:0;;;;;;:18;:22;;;;;;;;42729:23;42685:67;42682:210;;;-1:-1:-1;;;;;42777:18:0;;;;;;:12;:18;;;;;;42799:15;-1:-1:-1;42777:37:0;42769:46;;;;;;42871:8;;42851:29;;:15;;:19;:29::i;:::-;-1:-1:-1;;;;;42830:18:0;;;;;;:12;:18;;;;;:50;42682:210;42916:28;42947:24;42965:4;42947:9;:24::i;:::-;42916:55;;43011:29;;42987:20;:53;42984:146;;-1:-1:-1;43089:29:0;;42984:146;43193:29;;43169:53;;;;;;;43251;;-1:-1:-1;43288:16:0;;;;43287:17;43251:53;:91;;;;;43329:13;-1:-1:-1;;;;;43321:21:0;:4;-1:-1:-1;;;;;43321:21:0;;;43251:91;:129;;;;-1:-1:-1;43359:21:0;;;;;;;43251:129;43233:301;;;43442:29;;43419:52;;43486:36;43501:20;43486:14;:36::i;:::-;-1:-1:-1;;;;;43726:24:0;;43607:12;43726:24;;;:18;:24;;;;;;43622:4;;43726:24;;;:50;;-1:-1:-1;;;;;;43754:22:0;;;;;;:18;:22;;;;;;;;43726:50;43723:96;;;-1:-1:-1;43802:5:0;43723:96;43897:38;43912:4;43917:2;43920:6;43927:7;43897:14;:38::i;:::-;42015:1928;;;41912:2031;;;:::o;4452:192::-;4538:7;4574:12;4566:6;;;;4558:29;;;;-1:-1:-1;;;4558:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4598:9:0;4610:5;4614:1;4610;:5;:::i;:::-;4598:17;4452:192;-1:-1:-1;;;;;4452:192:0:o;35966:163::-;36007:7;36028:15;36045;36064:19;:17;:19::i;:::-;36027:56;;-1:-1:-1;36027:56:0;-1:-1:-1;36101:20:0;36027:56;;36101:11;:20::i;:::-;36094:27;;;;35966:163;:::o;3549:181::-;3607:7;;3639:5;3643:1;3639;:5;:::i;:::-;3627:17;;3668:1;3663;:6;;3655:46;;;;-1:-1:-1;;;3655:46:0;;7044:2:1;3655:46:0;;;7026:21:1;7083:2;7063:18;;;7056:30;7122:29;7102:18;;;7095:57;7169:18;;3655:46:0;6842:351:1;34517:472:0;34576:7;34585;34594;34603;34612;34621;34630;34651:23;34676:12;34690:18;34710;34732:20;34744:7;34732:11;:20::i;:::-;34650:102;;;;;;;;34764:15;34781:23;34806:12;34822:62;34834:7;34843:4;34849:10;34861;34873;:8;:10::i;:::-;34822:11;:62::i;:::-;34763:121;;-1:-1:-1;34763:121:0;-1:-1:-1;34763:121:0;-1:-1:-1;34935:15:0;;-1:-1:-1;34952:4:0;;-1:-1:-1;34958:10:0;;-1:-1:-1;34970:10:0;-1:-1:-1;;;;34517:472:0;;;;;;;;;:::o;4013:136::-;4071:7;4098:43;4102:1;4105;4098:43;;;;;;;;;;;;;;;;;:3;:43::i;6478:278::-;6564:7;6599:12;6592:5;6584:28;;;;-1:-1:-1;;;6584:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6623:9:0;6635:5;6639:1;6635;:5;:::i;38931:1260::-;27829:16;:23;;-1:-1:-1;;27829:23:0;27848:4;27829:23;;;:16;39140:27:::1;:20:::0;39165:1:::1;39140:24;:27::i;:::-;39108:59:::0;-1:-1:-1;39178:29:0::1;39210:47;:20:::0;39108:59;39210:24:::1;:47::i;:::-;39178:79:::0;-1:-1:-1;39268:34:0::1;39305:28;39178:79:::0;39331:1:::1;39305:25;:28::i;:::-;39268:65:::0;-1:-1:-1;39344:29:0::1;39376:53;:21:::0;39268:65;39376:25:::1;:53::i;:::-;39344:85:::0;-1:-1:-1;39465:21:0::1;39440:22;39585:53;:26:::0;39616:21;39585:30:::1;:53::i;:::-;39557:81;;39651:35;39668:17;39651:16;:35::i;:::-;39699:18;39720:41;:21;39746:14:::0;39720:25:::1;:41::i;:::-;39699:62:::0;-1:-1:-1;39774:20:0::1;39797:17;39699:62:::0;39812:1:::1;39797:14;:17::i;:::-;39774:40;;39827:49;39840:21;39863:12;39827;:49::i;:::-;39894:79;::::0;;13590:25:1;;;13646:2;13631:18;;13624:34;;;13674:18;;;13667:34;;;39894:79:0::1;::::0;13578:2:1;13563:18;39894:79:0::1;;;;;;;39986:20;40009:28;:10:::0;40024:12;40009:14:::1;:28::i;:::-;40103:16;::::0;:39:::1;::::0;39986:51;;-1:-1:-1;;;;;;40103:16:0::1;::::0;:39;::::1;;;::::0;39986:51;;40103:16:::1;:39:::0;:16;:39;39986:51;40103:16;:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;40158:25:0::1;::::0;12367::1;;;40158::0::1;::::0;12355:2:1;12340:18;40158:25:0::1;;;;;;;-1:-1:-1::0;;27875:16:0;:24;;-1:-1:-1;;27875:24:0;;;-1:-1:-1;;;;;;;;38931:1260:0:o;44199:818::-;44310:7;44306:40;;44332:14;:12;:14::i;:::-;-1:-1:-1;;;;;44363:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;44387:22:0;;;;;;:11;:22;;;;;;;;44386:23;44363:46;44359:597;;;44426:48;44448:6;44456:9;44467:6;44426:21;:48::i;:::-;44359:597;;;-1:-1:-1;;;;;44497:19:0;;;;;;:11;:19;;;;;;;;44496:20;:46;;;;-1:-1:-1;;;;;;44520:22:0;;;;;;:11;:22;;;;;;;;44496:46;44492:464;;;44559:46;44579:6;44587:9;44598:6;44559:19;:46::i;44492:464::-;-1:-1:-1;;;;;44628:19:0;;;;;;:11;:19;;;;;;;;44627:20;:47;;;;-1:-1:-1;;;;;;44652:22:0;;;;;;:11;:22;;;;;;;;44651:23;44627:47;44623:333;;;44691:44;44709:6;44717:9;44728:6;44691:17;:44::i;44623:333::-;-1:-1:-1;;;;;44757:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;44780:22:0;;;;;;:11;:22;;;;;;;;44757:45;44753:203;;;44819:48;44841:6;44849:9;44860:6;44819:21;:48::i;44753:203::-;44900:44;44918:6;44926:9;44937:6;44900:17;:44::i;:::-;44972:7;44968:41;;44994:15;38336;;38326:7;:25;38378:21;;38362:13;:37;38426:21;;38410:13;:37;38282:173;44994:15;44199:818;;;;:::o;36137:555::-;36234:7;;36270;;36187;;;;;36288:289;36312:9;:16;36308:20;;36288:289;;;36378:7;36354;:21;36362:9;36372:1;36362:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36362:12:0;36354:21;;;;;;;;;;;;;:31;;:66;;;36413:7;36389;:21;36397:9;36407:1;36397:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36397:12:0;36389:21;;;;;;;;;;;;;:31;36354:66;36350:97;;;36430:7;;36439;;36422:25;;;;;;;36137:555;;:::o;36350:97::-;36472:34;36484:7;:21;36492:9;36502:1;36492:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36492:12:0;36484:21;;;;;;;;;;;;;36472:7;;:11;:34::i;:::-;36462:44;;36531:34;36543:7;:21;36551:9;36561:1;36551:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36551:12:0;36543:21;;;;;;;;;;;;;36531:7;;:11;:34::i;:::-;36521:44;-1:-1:-1;36330:3:0;;;;:::i;:::-;;;;36288:289;;;-1:-1:-1;36613:7:0;;36601;;:20;;:11;:20::i;:::-;36591:7;:30;36587:61;;;36631:7;;36640;;36623:25;;;;;;36137:555;;:::o;36587:61::-;36667:7;;36676;;-1:-1:-1;36137:555:0;-1:-1:-1;36137:555:0:o;34997:429::-;35057:7;35066;35075;35084;35104:12;35119:24;35135:7;35119:15;:24::i;:::-;35104:39;;35154:18;35175:30;35197:7;35175:21;:30::i;:::-;35154:51;;35216:18;35237:30;35259:7;35237:21;:30::i;:::-;35216:51;-1:-1:-1;35278:23:0;35304:49;35342:10;35304:33;35216:51;35304:33;:7;35316:4;35304:11;:17::i;:::-;:21;;:33::i;:49::-;35278:75;35389:4;;-1:-1:-1;35395:10:0;;-1:-1:-1;35395:10:0;-1:-1:-1;34997:429:0;;-1:-1:-1;;;34997:429:0:o;35434:524::-;35569:7;;;;35625:24;:7;35637:11;35625;:24::i;:::-;35607:42;-1:-1:-1;35660:12:0;35675:21;:4;35684:11;35675:8;:21::i;:::-;35660:36;-1:-1:-1;35707:18:0;35728:27;:10;35743:11;35728:14;:27::i;:::-;35707:48;-1:-1:-1;35766:18:0;35787:27;:10;35802:11;35787:14;:27::i;:::-;35766:48;-1:-1:-1;35825:23:0;35851:49;35889:10;35851:33;35766:48;35851:33;:7;35863:4;35851:11;:17::i;:49::-;35919:7;;;;-1:-1:-1;35945:4:0;;-1:-1:-1;35434:524:0;;-1:-1:-1;;;;;;;;;35434:524:0:o;40469:589::-;40619:16;;;40633:1;40619:16;;;;;;;;40595:21;;40619:16;;;;;;;;;;-1:-1:-1;40619:16:0;40595:40;;40664:4;40646;40651:1;40646:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40646:23:0;;;-1:-1:-1;;;;;40646:23:0;;;;;40690:15;-1:-1:-1;;;;;40690:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40680:4;40685:1;40680:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40680:32:0;;;-1:-1:-1;;;;;40680:32:0;;;;;40725:62;40742:4;40757:15;40775:11;40725:8;:62::i;:::-;40826:224;;-1:-1:-1;;;40826:224:0;;-1:-1:-1;;;;;40826:15:0;:66;;;;:224;;40907:11;;40933:1;;40977:4;;41004;;41024:15;;40826:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41066:513;41214:62;41231:4;41246:15;41264:11;41214:8;:62::i;:::-;41319:15;-1:-1:-1;;;;;41319:31:0;;41358:9;41391:4;41411:11;41437:1;41480;41523:7;15657;15684:6;-1:-1:-1;;;;;15684:6:0;;15619:79;41523:7;41319:252;;;;;;-1:-1:-1;;;;;;41319:252:0;;;-1:-1:-1;;;;;3935:15:1;;;41319:252:0;;;3917:34:1;3967:18;;;3960:34;;;;4010:18;;;4003:34;;;;4053:18;;;4046:34;4117:15;;;4096:19;;;4089:44;41545:15:0;4149:19:1;;;4142:35;3851:19;;41319:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41066:513;;:::o;37942:332::-;37988:7;;:12;:34;;;;-1:-1:-1;38004:13:0;;:18;37988:34;:56;;;;-1:-1:-1;38026:13:0;;:18;37988:56;37985:68;;;37942:332::o;37985:68::-;38083:7;;;38065:15;:25;38125:13;;;38101:21;:37;38173:13;;;38149:21;:37;-1:-1:-1;38199:11:0;;;;38221:17;;;;38249;37942:332::o;46248:627::-;46351:15;46368:23;46393:12;46407:23;46432:12;46446:18;46466;46488:19;46499:7;46488:10;:19::i;:::-;46350:157;;;;;;;;;;;;;;46536:28;46556:7;46536;:15;46544:6;-1:-1:-1;;;;;46536:15:0;-1:-1:-1;;;;;46536:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;46518:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46593:7;:15;;;;:28;;46613:7;46593:19;:28::i;:::-;-1:-1:-1;;;;;46575:15:0;;;;;;;:7;:15;;;;;;:46;;;;46653:18;;;;;;;:39;;46676:15;46653:22;:39::i;:::-;-1:-1:-1;;;;;46632:18:0;;;;;;:7;:18;;;;;:60;46703:26;46718:10;46703:14;:26::i;:::-;46747;46762:10;46747:14;:26::i;:::-;46784:23;46796:4;46802;46784:11;:23::i;:::-;46840:9;-1:-1:-1;;;;;46823:44:0;46832:6;-1:-1:-1;;;;;46823:44:0;;46851:15;46823:44;;;;12367:25:1;;12355:2;12340:18;;12221:177;46823:44:0;;;;;;;;46339:536;;;;;;;46248:627;;;:::o;45600:640::-;45701:15;45718:23;45743:12;45757:23;45782:12;45796:18;45816;45838:19;45849:7;45838:10;:19::i;:::-;45700:157;;;;;;;;;;;;;;45886:28;45906:7;45886;:15;45894:6;-1:-1:-1;;;;;45886:15:0;-1:-1:-1;;;;;45886:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;45868:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;45946:18;;;;;:7;:18;;;;;:39;;45969:15;45946:22;:39::i;:::-;-1:-1:-1;;;;;45925:18:0;;;;;;:7;:18;;;;;;;;:60;;;;46017:7;:18;;;;:39;;46040:15;46017:22;:39::i;45025:567::-;45124:15;45141:23;45166:12;45180:23;45205:12;45219:18;45239;45261:19;45272:7;45261:10;:19::i;:::-;45123:157;;;;;;;;;;;;;;45309:28;45329:7;45309;:15;45317:6;-1:-1:-1;;;;;45309:15:0;-1:-1:-1;;;;;45309:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;46887:699::-;46990:15;47007:23;47032:12;47046:23;47071:12;47085:18;47105;47127:19;47138:7;47127:10;:19::i;:::-;46989:157;;;;;;;;;;;;;;47175:28;47195:7;47175;:15;47183:6;-1:-1:-1;;;;;47175:15:0;-1:-1:-1;;;;;47175:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;47157:15:0;;;;;;:7;:15;;;;;;;;:46;;;;47232:7;:15;;;;:28;;47252:7;47232:19;:28::i;37434:154::-;37498:7;37525:55;37564:5;37525:20;37537:7;;37525;:11;;:20;;;;:::i;37596:166::-;37666:7;37693:61;37738:5;37693:26;37705:13;;37693:7;:11;;:26;;;;:::i;37768:166::-;37838:7;37865:61;37910:5;37865:26;37877:13;;37865:7;:11;;:26;;;;:::i;36700:355::-;36763:19;36786:10;:8;:10::i;:::-;36763:33;-1:-1:-1;36807:18:0;36828:27;:10;36763:33;36828:14;:27::i;:::-;36907:4;36891:22;;;;:7;:22;;;;;;36807:48;;-1:-1:-1;36891:38:0;;36807:48;36891:26;:38::i;:::-;36882:4;36866:22;;;;:7;:22;;;;;;;;:63;;;;36943:11;:26;;;;;;36940:107;;;37025:4;37009:22;;;;:7;:22;;;;;;:38;;37036:10;37009:26;:38::i;:::-;37000:4;36984:22;;;;:7;:22;;;;;:63;36752:303;;36700:355;:::o;34362:147::-;34440:7;;:17;;34452:4;34440:11;:17::i;:::-;34430:7;:27;34481:10;;:20;;34496:4;34481:14;:20::i;:::-;34468:10;:33;-1:-1:-1;;34362: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://50c4bde142e3eae71427537d8aa9739d21043bc3ea76260713552e774629317f
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.