ETH Price: $2,681.00 (-2.06%)

Token

DefAI (DEFAI)
 

Overview

Max Total Supply

100,000,000 DEFAI

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
820,505.000000000000000585 DEFAI

Value
$0.00
0x6e7f3bd88ae1bb5e82e5b6fef0ec58c7295a17b1
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:
DefAI

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-14
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.10;


interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(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;
    }
}

// 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 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 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 DefAI is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    mapping (address => bool) private _isBot;
    address[] private _excluded;
    address dead = 0x000000000000000000000000000000000000dEaD;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 100e6 *10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "DefAI";
    string private _symbol = "DEFAI";
    uint8 private _decimals = 18;
    
    //Buy Fees
    uint256 public _buyTaxFee = 0;   // its mean reward to holders
    uint256 public _buyLiquidityFee = 0;
    uint256 public _buyMarketingFee = 15;
    uint256 public _buyBurnFee = 0;   //token will going to burn adress on every buying selling

    //Sell Fees
    uint256 public _sellTaxFee = 0; //same like sell fees you can change these fees bro buy and sell seprate taxes
    uint256 public _sellMarketingFee = 25;
    uint256 public _sellLiquidityFee = 0;
    uint256 public _sellBurnFee = 0;


    // Fees (Current)
    uint256 private _taxFee;
    uint256 private _marketingFee;
    uint256 private _liquidityFee;
    uint256 private _burnFee;


    uint256 private _previousTaxFee;
    uint256 private _previousMarketingFee;
    uint256 private _previousLiquidityFee;
    uint256 private _previousBurnFee;

    address public marketingWallet = 0x3Ac4f010CF9150e3f5b5b8045D4272cb0cc23334; //change this adress and put yours bro
  
    IUniswapV2Router02 public  uniswapV2Router;
    address public  uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public numTokensSellToAddToLiquidity = 75e6 *10**18;
    uint256 public maxWalletToken = 75e7 * (10**18);
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event RemovedSniper(address indexed notsnipersupposedly);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor() {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //0x10ed43c718714eb63d5aa57b78b54704e256024e mainnet
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function excludeFromReward(address account) public onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

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

    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

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

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

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

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

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

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

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

        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousMarketingFee = _marketingFee;
        _previousBurnFee = _burnFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        _burnFee = 0;
    }

    function restoreAllFee() private {
       _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _marketingFee = _previousMarketingFee;
        _burnFee = _previousBurnFee;
    }
    
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

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

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

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

            uint256 contractBalanceRecepient = balanceOf(to);
            require(
                contractBalanceRecepient + amount <= maxWalletToken,
                "Exceeds maximum wallet token amount."
            );
            
        }
        
        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

         // Indicates if fee should be deducted from transfer
        bool takeFee = true;


        // If any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }

        // Set buy fees
        if(from == uniswapV2Pair || from.isContract() && to != owner() && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]) {
            _taxFee = _buyTaxFee;
            _marketingFee = _buyMarketingFee;
            _liquidityFee = _buyLiquidityFee;
            _burnFee = _buyBurnFee;
        }
        
        // Set sell fees
        if(to == uniswapV2Pair || to.isContract() &&  from !=owner() && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]) {
            _taxFee = _sellTaxFee;
            _marketingFee = _sellMarketingFee;
            _liquidityFee = _sellLiquidityFee;
            _burnFee = _sellBurnFee;       

        }

        if(from != owner() && to != uniswapV2Pair && from != uniswapV2Pair && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount, takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {

        // split the Liquidity tokens balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

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

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

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

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

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

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

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

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

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private 
    {   
        if (!takeFee) removeAllFee();
        uint256 burnAmount = 0;
        uint256 marketingAmount = 0;
        if(sender != owner() && recipient != owner() && sender!= address(this))
        {
            burnAmount = calculateBurnFee(amount);
            marketingAmount = calculateMarketingFee(amount);
        }

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount.sub(burnAmount).sub(marketingAmount));
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount.sub(burnAmount).sub(marketingAmount));
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount.sub(burnAmount).sub(marketingAmount));
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount.sub(burnAmount).sub(marketingAmount));
        } else {
            _transferStandard(sender, recipient, amount.sub(burnAmount).sub(marketingAmount));
        }

        removeAllFee();

        if(burnAmount > 0) {
            _transferStandard( sender, dead, burnAmount);
        }
        
        if(marketingAmount > 0) {
            _transferStandard(sender, marketingWallet, marketingAmount);
        }

        restoreAllFee();
        if (!takeFee) restoreAllFee();
    }


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

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

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setMarketingWallet(address newWallet) external onlyOwner() {
        marketingWallet = newWallet;
    }
    
    function setBuyFeePercent(uint256 taxFee, uint256 MarketingFee, uint256 liquidityFee, uint256 burnFee) external onlyOwner() {
        _buyTaxFee = taxFee;
        _buyMarketingFee = MarketingFee;
        _buyLiquidityFee = liquidityFee;
        _buyBurnFee = burnFee;
        require(_buyTaxFee + _buyMarketingFee + _buyLiquidityFee + _buyBurnFee <= 20, "Buy Fee should be 20% or less");
    }

    function setSellFeePercent(uint256 taxFee, uint256 MarketingFee, uint256 liquidityFee, uint256 burnFee) external onlyOwner() {
        _sellTaxFee = taxFee;
        _sellMarketingFee = MarketingFee;
        _sellLiquidityFee = liquidityFee;
        _sellBurnFee = burnFee;
        require( _sellTaxFee + _sellMarketingFee + _sellLiquidityFee + _sellBurnFee <= 20, "Sell Fee should be 20% or less");
    }

    function setMaxWalletTokend(uint256 _maxToken) external onlyOwner {
  	    maxWalletToken = _maxToken * (10**18);
  	}

    function setNumTokensSellToAddToLiquidity(uint256 newAmt) external onlyOwner() {
        numTokensSellToAddToLiquidity = newAmt*10**_decimals;
    }
    
    //New router address?
    //No problem, just change it here!
    function setRouterAddress(address newRouter) public onlyOwner() {
        IUniswapV2Router02 _newPancakeRouter = IUniswapV2Router02(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this), _newPancakeRouter.WETH());
        uniswapV2Router = _newPancakeRouter;
    }
    
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
    function transferToAddressETH(address payable recipient, uint256 amount) private {
        recipient.transfer(amount);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"notsnipersupposedly","type":"address"}],"name":"RemovedSniper","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"MarketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBuyFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletTokend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmt","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"MarketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setSellFeePercent","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"},{"stateMutability":"payable","type":"receive"}]

6080604052600a80546001600160a01b03191661dead1790556a52b7d2dcc80cd2e4000000600b819055620000379060001962000486565b6200004590600019620004a9565b600c5560408051808201909152600580825264446566414960d81b60209092019182526200007691600e91620003e0565b5060408051808201909152600580825264444546414960d81b6020909201918252620000a591600f91620003e0565b506010805460ff191660129081179091556000601181905590819055600f6013556014819055601581905560196016556017819055601855602180546001600160a01b031916733ac4f010cf9150e3f5b5b8045d4272cb0cc233341790556023805460ff60a81b1916600160a81b1790556a3e09de2596099e2b0000006024556b026c62ad77dc602dae0000006025553480156200014257600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c543360009081526003602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa158015620001eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002119190620004cf565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002859190620004cf565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002d3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f99190620004cf565b602380546001600160a01b03199081166001600160a01b039384161790915560228054909116918316919091179055600160066000620003416000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003893390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b54604051620003d191815260200190565b60405180910390a3506200053e565b828054620003ee9062000501565b90600052602060002090601f0160209004810192826200041257600085556200045d565b82601f106200042d57805160ff19168380011785556200045d565b828001600101855582156200045d579182015b828111156200045d57825182559160200191906001019062000440565b506200046b9291506200046f565b5090565b5b808211156200046b576000815560010162000470565b600082620004a457634e487b7160e01b600052601260045260246000fd5b500690565b600082821015620004ca57634e487b7160e01b600052601160045260246000fd5b500390565b600060208284031215620004e257600080fd5b81516001600160a01b0381168114620004fa57600080fd5b9392505050565b600181811c908216806200051657607f821691505b602082108114156200053857634e487b7160e01b600052602260045260246000fd5b50919050565b612e69806200054e6000396000f3fe6080604052600436106102765760003560e01c8063715018a61161014f578063afee32a9116100c1578063dd62ed3e1161007a578063dd62ed3e14610758578063e6c75f711461079e578063ea2f0b37146107b4578063efcc52de146107d4578063f0f165af146107ea578063f2fde38b1461080a57600080fd5b8063afee32a9146106c0578063c49b9a80146106e0578063c5d2418914610700578063c860795214610716578063d12a76881461072c578063dc44b6a01461074257600080fd5b80638da5cb5b116101135780638da5cb5b1461060d57806395d89b411461062b5780639d854b63146106405780639f34a5b414610660578063a457c2d714610680578063a9059cbb146106a057600080fd5b8063715018a61461057357806375f0a874146105885780637abdc1ca146105a857806388790a68146105be57806388f82020146105d457600080fd5b806339509351116101e857806349bd5a5e116101ac57806349bd5a5e146104995780634a74bb02146104b957806352390c02146104da5780635342acb4146104fa5780635d098b381461053357806370a082311461055357600080fd5b806339509351146103f95780633bd5d1731461041957806341cb87fc14610439578063437823ec146104595780634549b0391461047957600080fd5b806318160ddd1161023a57806318160ddd1461034a578063200a692d1461035f57806323b872dd146103755780632d83811914610395578063313ce567146103b55780633685d419146103d757600080fd5b806306fdde0314610282578063095ea7b3146102ad57806313114a9d146102dd5780631694505e146102fc57806316f2f1a81461033457600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b5061029761082a565b6040516102a49190612923565b60405180910390f35b3480156102b957600080fd5b506102cd6102c8366004612990565b6108bc565b60405190151581526020016102a4565b3480156102e957600080fd5b50600d545b6040519081526020016102a4565b34801561030857600080fd5b5060225461031c906001600160a01b031681565b6040516001600160a01b0390911681526020016102a4565b34801561034057600080fd5b506102ee60145481565b34801561035657600080fd5b50600b546102ee565b34801561036b57600080fd5b506102ee60155481565b34801561038157600080fd5b506102cd6103903660046129bc565b6108d3565b3480156103a157600080fd5b506102ee6103b03660046129fd565b61093c565b3480156103c157600080fd5b5060105460405160ff90911681526020016102a4565b3480156103e357600080fd5b506103f76103f2366004612a16565b6109c5565b005b34801561040557600080fd5b506102cd610414366004612990565b610b7c565b34801561042557600080fd5b506103f76104343660046129fd565b610bb2565b34801561044557600080fd5b506103f7610454366004612a16565b610c9c565b34801561046557600080fd5b506103f7610474366004612a16565b610e41565b34801561048557600080fd5b506102ee610494366004612a48565b610e8f565b3480156104a557600080fd5b5060235461031c906001600160a01b031681565b3480156104c557600080fd5b506023546102cd90600160a81b900460ff1681565b3480156104e657600080fd5b506103f76104f5366004612a16565b610f1c565b34801561050657600080fd5b506102cd610515366004612a16565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561053f57600080fd5b506103f761054e366004612a16565b61106f565b34801561055f57600080fd5b506102ee61056e366004612a16565b6110bb565b34801561057f57600080fd5b506103f761111a565b34801561059457600080fd5b5060215461031c906001600160a01b031681565b3480156105b457600080fd5b506102ee60185481565b3480156105ca57600080fd5b506102ee60175481565b3480156105e057600080fd5b506102cd6105ef366004612a16565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561061957600080fd5b506000546001600160a01b031661031c565b34801561063757600080fd5b5061029761118e565b34801561064c57600080fd5b506103f761065b366004612a74565b61119d565b34801561066c57600080fd5b506103f761067b3660046129fd565b611251565b34801561068c57600080fd5b506102cd61069b366004612990565b611293565b3480156106ac57600080fd5b506102cd6106bb366004612990565b6112e2565b3480156106cc57600080fd5b506103f76106db366004612a74565b6112ef565b3480156106ec57600080fd5b506103f76106fb366004612aa6565b61139b565b34801561070c57600080fd5b506102ee60135481565b34801561072257600080fd5b506102ee60165481565b34801561073857600080fd5b506102ee60245481565b34801561074e57600080fd5b506102ee60125481565b34801561076457600080fd5b506102ee610773366004612ac1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3480156107aa57600080fd5b506102ee60255481565b3480156107c057600080fd5b506103f76107cf366004612a16565b61141d565b3480156107e057600080fd5b506102ee60115481565b3480156107f657600080fd5b506103f76108053660046129fd565b611468565b34801561081657600080fd5b506103f7610825366004612a16565b6114b3565b6060600e805461083990612afa565b80601f016020809104026020016040519081016040528092919081815260200182805461086590612afa565b80156108b25780601f10610887576101008083540402835291602001916108b2565b820191906000526020600020905b81548152906001019060200180831161089557829003601f168201915b5050505050905090565b60006108c933848461159d565b5060015b92915050565b60006108e08484846116c1565b610932843361092d85604051806060016040528060288152602001612de7602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190611b30565b61159d565b5060019392505050565b6000600c548211156109a85760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b60006109b2611b6a565b90506109be8382611b8d565b9392505050565b6000546001600160a01b031633146109ef5760405162461bcd60e51b815260040161099f90612b35565b6001600160a01b03811660009081526007602052604090205460ff16610a575760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161099f565b60005b600954811015610b7857816001600160a01b031660098281548110610a8157610a81612b6a565b6000918252602090912001546001600160a01b03161415610b665760098054610aac90600190612b96565b81548110610abc57610abc612b6a565b600091825260209091200154600980546001600160a01b039092169183908110610ae857610ae8612b6a565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556009805480610b4057610b40612bad565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610b7081612bc3565b915050610a5a565b5050565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916108c991859061092d9086611bcf565b3360008181526007602052604090205460ff1615610c275760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161099f565b6000610c3283611c2e565b505050506001600160a01b038416600090815260036020526040902054919250610c5e91905082611c7d565b6001600160a01b038316600090815260036020526040902055600c54610c849082611c7d565b600c55600d54610c949084611bcf565b600d55505050565b6000546001600160a01b03163314610cc65760405162461bcd60e51b815260040161099f90612b35565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2d9190612bde565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9e9190612bde565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0f9190612bde565b602380546001600160a01b039283166001600160a01b0319918216179091556022805493909216921691909117905550565b6000546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161099f90612b35565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b54831115610ee35760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161099f565b81610f02576000610ef384611c2e565b509395506108cd945050505050565b6000610f0d84611c2e565b509295506108cd945050505050565b6000546001600160a01b03163314610f465760405162461bcd60e51b815260040161099f90612b35565b6001600160a01b03811660009081526007602052604090205460ff1615610faf5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161099f565b6001600160a01b03811660009081526003602052604090205415611009576001600160a01b038116600090815260036020526040902054610fef9061093c565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b6000546001600160a01b031633146110995760405162461bcd60e51b815260040161099f90612b35565b602180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526007602052604081205460ff16156110f857506001600160a01b031660009081526004602052604090205490565b6001600160a01b0382166000908152600360205260409020546108cd9061093c565b6000546001600160a01b031633146111445760405162461bcd60e51b815260040161099f90612b35565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600f805461083990612afa565b6000546001600160a01b031633146111c75760405162461bcd60e51b815260040161099f90612b35565b6015849055601683905560178290556018819055601481836111e98688612bfb565b6111f39190612bfb565b6111fd9190612bfb565b111561124b5760405162461bcd60e51b815260206004820152601e60248201527f53656c6c204665652073686f756c6420626520323025206f72206c6573730000604482015260640161099f565b50505050565b6000546001600160a01b0316331461127b5760405162461bcd60e51b815260040161099f90612b35565b61128d81670de0b6b3a7640000612c13565b60255550565b60006108c9338461092d85604051806060016040528060258152602001612e0f602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190611b30565b60006108c93384846116c1565b6000546001600160a01b031633146113195760405162461bcd60e51b815260040161099f90612b35565b601184905560138390556012829055601481815581836113398688612bfb565b6113439190612bfb565b61134d9190612bfb565b111561124b5760405162461bcd60e51b815260206004820152601d60248201527f427579204665652073686f756c6420626520323025206f72206c657373000000604482015260640161099f565b6000546001600160a01b031633146113c55760405162461bcd60e51b815260040161099f90612b35565b60238054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061141290831515815260200190565b60405180910390a150565b6000546001600160a01b031633146114475760405162461bcd60e51b815260040161099f90612b35565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b031633146114925760405162461bcd60e51b815260040161099f90612b35565b6010546114a39060ff16600a612d16565b6114ad9082612c13565b60245550565b6000546001600160a01b031633146114dd5760405162461bcd60e51b815260040161099f90612b35565b6001600160a01b0381166115425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099f565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166115ff5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161099f565b6001600160a01b0382166116605760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161099f565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117255760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161099f565b600081116117875760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161099f565b6000546001600160a01b038481169116148015906117b357506000546001600160a01b03838116911614155b80156117c757506001600160a01b03821615155b80156117de57506001600160a01b03821661dead14155b80156117f857506023546001600160a01b03838116911614155b15611874576000611808836110bb565b6025549091506118188383612bfb565b11156118725760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b606482015260840161099f565b505b600061187f306110bb565b602454909150811080159081906118a05750602354600160a01b900460ff16155b80156118ba57506023546001600160a01b03868116911614155b80156118cf5750602354600160a81b900460ff165b156118e25760245491506118e282611cbf565b6001600160a01b03851660009081526006602052604090205460019060ff168061192457506001600160a01b03851660009081526006602052604090205460ff165b1561192d575060005b6023546001600160a01b03878116911614806119ba5750611956866001600160a01b0316611d66565b801561197057506000546001600160a01b03868116911614155b801561199557506001600160a01b03861660009081526006602052604090205460ff16155b80156119ba57506001600160a01b03851660009081526006602052604090205460ff16155b156119d857601154601955601354601a55601254601b55601454601c555b6023546001600160a01b0386811691161480611a655750611a01856001600160a01b0316611d66565b8015611a1b57506000546001600160a01b03878116911614155b8015611a4057506001600160a01b03861660009081526006602052604090205460ff16155b8015611a6557506001600160a01b03851660009081526006602052604090205460ff16155b15611a8357601554601955601654601a55601754601b55601854601c555b6000546001600160a01b03878116911614801590611aaf57506023546001600160a01b03868116911614155b8015611ac957506023546001600160a01b03878116911614155b8015611aee57506001600160a01b03861660009081526006602052604090205460ff16155b8015611b1357506001600160a01b03851660009081526006602052604090205460ff16155b15611b1c575060005b611b2886868684611da2565b505050505050565b60008184841115611b545760405162461bcd60e51b815260040161099f9190612923565b506000611b618486612b96565b95945050505050565b6000806000611b7761203d565b9092509050611b868282611b8d565b9250505090565b60006109be83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121bf565b600080611bdc8385612bfb565b9050838110156109be5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161099f565b6000806000806000806000806000611c458a6121ed565b9250925092506000806000611c638d8686611c5e611b6a565b612229565b919f909e50909c50959a5093985091965092945050505050565b60006109be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b30565b6023805460ff60a01b1916600160a01b1790556000611cdf826002611b8d565b90506000611ced8383611c7d565b905047611cf983612279565b6000611d054783611c7d565b9050611d1183826123cb565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506023805460ff60a01b19169055505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611d9a57508115155b949350505050565b80611daf57611daf6124a0565b600080611dc46000546001600160a01b031690565b6001600160a01b0316866001600160a01b031614158015611df357506000546001600160a01b03868116911614155b8015611e0857506001600160a01b0386163014155b15611e2457611e16846124fb565b9150611e218461251d565b90505b6001600160a01b03861660009081526007602052604090205460ff168015611e6557506001600160a01b03851660009081526007602052604090205460ff16155b15611e8d57611e888686611e8384611e7d8988611c7d565b90611c7d565b612539565b611fba565b6001600160a01b03861660009081526007602052604090205460ff16158015611ece57506001600160a01b03851660009081526007602052604090205460ff165b15611eeb57611e888686611ee684611e7d8988611c7d565b61265f565b6001600160a01b03861660009081526007602052604090205460ff16158015611f2d57506001600160a01b03851660009081526007602052604090205460ff16155b15611f4a57611e888686611f4584611e7d8988611c7d565b612708565b6001600160a01b03861660009081526007602052604090205460ff168015611f8a57506001600160a01b03851660009081526007602052604090205460ff165b15611fa757611e888686611fa284611e7d8988611c7d565b61274c565b611fba8686611f4584611e7d8988611c7d565b611fc26124a0565b8115611fe057600a54611fe09087906001600160a01b031684612708565b8015611ffe57602154611ffe9087906001600160a01b031683612708565b61201b601d54601955601f54601b55601e54601a55602054601c55565b82611b2857611b28601d54601955601f54601b55601e54601a55602054601c55565b600c54600b546000918291825b60095481101561218f5782600360006009848154811061206c5761206c612b6a565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806120d757508160046000600984815481106120b0576120b0612b6a565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156120ed57600c54600b54945094505050509091565b612133600360006009848154811061210757612107612b6a565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611c7d565b925061217b600460006009848154811061214f5761214f612b6a565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611c7d565b91508061218781612bc3565b91505061204a565b50600b54600c5461219f91611b8d565b8210156121b657600c54600b549350935050509091565b90939092509050565b600081836121e05760405162461bcd60e51b815260040161099f9190612923565b506000611b618486612d25565b6000806000806121fc856127bf565b90506000612209866127db565b9050600061221b82611e7d8986611c7d565b979296509094509092505050565b600080808061223888866127f7565b9050600061224688876127f7565b9050600061225488886127f7565b9050600061226682611e7d8686611c7d565b939b939a50919850919650505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106122ae576122ae612b6a565b6001600160a01b03928316602091820292909201810191909152602254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612307573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061232b9190612bde565b8160018151811061233e5761233e612b6a565b6001600160a01b039283166020918202929092010152602254612364913091168461159d565b60225460405163791ac94760e01b81526001600160a01b039091169063791ac9479061239d908590600090869030904290600401612d47565b600060405180830381600087803b1580156123b757600080fd5b505af1158015611b28573d6000803e3d6000fd5b6022546123e39030906001600160a01b03168461159d565b6022546001600160a01b031663f305d71982308560008061240c6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612474573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124999190612db8565b5050505050565b6019541580156124b05750601b54155b80156124bc5750601a54155b80156124c85750601c54155b156124cf57565b60198054601d55601b8054601f55601a8054601e55601c80546020556000938490559183905582905555565b60006108cd6064612517601c54856127f790919063ffffffff16565b90611b8d565b60006108cd6064612517601a54856127f790919063ffffffff16565b60008060008060008061254b87611c2e565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061257d9088611c7d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546125ac9087611c7d565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546125db9086611bcf565b6001600160a01b0389166000908152600360205260409020556125fd81612876565b61260784836128ff565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161264c91815260200190565b60405180910390a3505050505050505050565b60008060008060008061267187611c2e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126a39087611c7d565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546126d99084611bcf565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546125db9086611bcf565b60008060008060008061271a87611c2e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506125ac9087611c7d565b60008060008060008061275e87611c2e565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127909088611c7d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126a39087611c7d565b60006108cd6064612517601954856127f790919063ffffffff16565b60006108cd6064612517601b54856127f790919063ffffffff16565b600082612806575060006108cd565b60006128128385612c13565b90508261281f8583612d25565b146109be5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161099f565b6000612880611b6a565b9050600061288e83836127f7565b306000908152600360205260409020549091506128ab9082611bcf565b3060009081526003602090815260408083209390935560079052205460ff16156128fa57306000908152600460205260409020546128e99084611bcf565b306000908152600460205260409020555b505050565b600c5461290c9083611c7d565b600c55600d5461291c9082611bcf565b600d555050565b600060208083528351808285015260005b8181101561295057858101830151858201604001528201612934565b81811115612962576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461298d57600080fd5b50565b600080604083850312156129a357600080fd5b82356129ae81612978565b946020939093013593505050565b6000806000606084860312156129d157600080fd5b83356129dc81612978565b925060208401356129ec81612978565b929592945050506040919091013590565b600060208284031215612a0f57600080fd5b5035919050565b600060208284031215612a2857600080fd5b81356109be81612978565b80358015158114612a4357600080fd5b919050565b60008060408385031215612a5b57600080fd5b82359150612a6b60208401612a33565b90509250929050565b60008060008060808587031215612a8a57600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215612ab857600080fd5b6109be82612a33565b60008060408385031215612ad457600080fd5b8235612adf81612978565b91506020830135612aef81612978565b809150509250929050565b600181811c90821680612b0e57607f821691505b60208210811415612b2f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612ba857612ba8612b80565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600019821415612bd757612bd7612b80565b5060010190565b600060208284031215612bf057600080fd5b81516109be81612978565b60008219821115612c0e57612c0e612b80565b500190565b6000816000190483118215151615612c2d57612c2d612b80565b500290565b600181815b80851115612c6d578160001904821115612c5357612c53612b80565b80851615612c6057918102915b93841c9390800290612c37565b509250929050565b600082612c84575060016108cd565b81612c91575060006108cd565b8160018114612ca75760028114612cb157612ccd565b60019150506108cd565b60ff841115612cc257612cc2612b80565b50506001821b6108cd565b5060208310610133831016604e8410600b8410161715612cf0575081810a6108cd565b612cfa8383612c32565b8060001904821115612d0e57612d0e612b80565b029392505050565b60006109be60ff841683612c75565b600082612d4257634e487b7160e01b600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d975784516001600160a01b031683529383019391830191600101612d72565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612dcd57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203561a2299a80d768fa6ac1f7e33d838c1784314c4fad38a9e8c59bc03e45c1bd64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102765760003560e01c8063715018a61161014f578063afee32a9116100c1578063dd62ed3e1161007a578063dd62ed3e14610758578063e6c75f711461079e578063ea2f0b37146107b4578063efcc52de146107d4578063f0f165af146107ea578063f2fde38b1461080a57600080fd5b8063afee32a9146106c0578063c49b9a80146106e0578063c5d2418914610700578063c860795214610716578063d12a76881461072c578063dc44b6a01461074257600080fd5b80638da5cb5b116101135780638da5cb5b1461060d57806395d89b411461062b5780639d854b63146106405780639f34a5b414610660578063a457c2d714610680578063a9059cbb146106a057600080fd5b8063715018a61461057357806375f0a874146105885780637abdc1ca146105a857806388790a68146105be57806388f82020146105d457600080fd5b806339509351116101e857806349bd5a5e116101ac57806349bd5a5e146104995780634a74bb02146104b957806352390c02146104da5780635342acb4146104fa5780635d098b381461053357806370a082311461055357600080fd5b806339509351146103f95780633bd5d1731461041957806341cb87fc14610439578063437823ec146104595780634549b0391461047957600080fd5b806318160ddd1161023a57806318160ddd1461034a578063200a692d1461035f57806323b872dd146103755780632d83811914610395578063313ce567146103b55780633685d419146103d757600080fd5b806306fdde0314610282578063095ea7b3146102ad57806313114a9d146102dd5780631694505e146102fc57806316f2f1a81461033457600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b5061029761082a565b6040516102a49190612923565b60405180910390f35b3480156102b957600080fd5b506102cd6102c8366004612990565b6108bc565b60405190151581526020016102a4565b3480156102e957600080fd5b50600d545b6040519081526020016102a4565b34801561030857600080fd5b5060225461031c906001600160a01b031681565b6040516001600160a01b0390911681526020016102a4565b34801561034057600080fd5b506102ee60145481565b34801561035657600080fd5b50600b546102ee565b34801561036b57600080fd5b506102ee60155481565b34801561038157600080fd5b506102cd6103903660046129bc565b6108d3565b3480156103a157600080fd5b506102ee6103b03660046129fd565b61093c565b3480156103c157600080fd5b5060105460405160ff90911681526020016102a4565b3480156103e357600080fd5b506103f76103f2366004612a16565b6109c5565b005b34801561040557600080fd5b506102cd610414366004612990565b610b7c565b34801561042557600080fd5b506103f76104343660046129fd565b610bb2565b34801561044557600080fd5b506103f7610454366004612a16565b610c9c565b34801561046557600080fd5b506103f7610474366004612a16565b610e41565b34801561048557600080fd5b506102ee610494366004612a48565b610e8f565b3480156104a557600080fd5b5060235461031c906001600160a01b031681565b3480156104c557600080fd5b506023546102cd90600160a81b900460ff1681565b3480156104e657600080fd5b506103f76104f5366004612a16565b610f1c565b34801561050657600080fd5b506102cd610515366004612a16565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561053f57600080fd5b506103f761054e366004612a16565b61106f565b34801561055f57600080fd5b506102ee61056e366004612a16565b6110bb565b34801561057f57600080fd5b506103f761111a565b34801561059457600080fd5b5060215461031c906001600160a01b031681565b3480156105b457600080fd5b506102ee60185481565b3480156105ca57600080fd5b506102ee60175481565b3480156105e057600080fd5b506102cd6105ef366004612a16565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561061957600080fd5b506000546001600160a01b031661031c565b34801561063757600080fd5b5061029761118e565b34801561064c57600080fd5b506103f761065b366004612a74565b61119d565b34801561066c57600080fd5b506103f761067b3660046129fd565b611251565b34801561068c57600080fd5b506102cd61069b366004612990565b611293565b3480156106ac57600080fd5b506102cd6106bb366004612990565b6112e2565b3480156106cc57600080fd5b506103f76106db366004612a74565b6112ef565b3480156106ec57600080fd5b506103f76106fb366004612aa6565b61139b565b34801561070c57600080fd5b506102ee60135481565b34801561072257600080fd5b506102ee60165481565b34801561073857600080fd5b506102ee60245481565b34801561074e57600080fd5b506102ee60125481565b34801561076457600080fd5b506102ee610773366004612ac1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3480156107aa57600080fd5b506102ee60255481565b3480156107c057600080fd5b506103f76107cf366004612a16565b61141d565b3480156107e057600080fd5b506102ee60115481565b3480156107f657600080fd5b506103f76108053660046129fd565b611468565b34801561081657600080fd5b506103f7610825366004612a16565b6114b3565b6060600e805461083990612afa565b80601f016020809104026020016040519081016040528092919081815260200182805461086590612afa565b80156108b25780601f10610887576101008083540402835291602001916108b2565b820191906000526020600020905b81548152906001019060200180831161089557829003601f168201915b5050505050905090565b60006108c933848461159d565b5060015b92915050565b60006108e08484846116c1565b610932843361092d85604051806060016040528060288152602001612de7602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190611b30565b61159d565b5060019392505050565b6000600c548211156109a85760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084015b60405180910390fd5b60006109b2611b6a565b90506109be8382611b8d565b9392505050565b6000546001600160a01b031633146109ef5760405162461bcd60e51b815260040161099f90612b35565b6001600160a01b03811660009081526007602052604090205460ff16610a575760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161099f565b60005b600954811015610b7857816001600160a01b031660098281548110610a8157610a81612b6a565b6000918252602090912001546001600160a01b03161415610b665760098054610aac90600190612b96565b81548110610abc57610abc612b6a565b600091825260209091200154600980546001600160a01b039092169183908110610ae857610ae8612b6a565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556009805480610b4057610b40612bad565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610b7081612bc3565b915050610a5a565b5050565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916108c991859061092d9086611bcf565b3360008181526007602052604090205460ff1615610c275760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161099f565b6000610c3283611c2e565b505050506001600160a01b038416600090815260036020526040902054919250610c5e91905082611c7d565b6001600160a01b038316600090815260036020526040902055600c54610c849082611c7d565b600c55600d54610c949084611bcf565b600d55505050565b6000546001600160a01b03163314610cc65760405162461bcd60e51b815260040161099f90612b35565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2d9190612bde565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9e9190612bde565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0f9190612bde565b602380546001600160a01b039283166001600160a01b0319918216179091556022805493909216921691909117905550565b6000546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161099f90612b35565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b54831115610ee35760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161099f565b81610f02576000610ef384611c2e565b509395506108cd945050505050565b6000610f0d84611c2e565b509295506108cd945050505050565b6000546001600160a01b03163314610f465760405162461bcd60e51b815260040161099f90612b35565b6001600160a01b03811660009081526007602052604090205460ff1615610faf5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161099f565b6001600160a01b03811660009081526003602052604090205415611009576001600160a01b038116600090815260036020526040902054610fef9061093c565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b6000546001600160a01b031633146110995760405162461bcd60e51b815260040161099f90612b35565b602180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526007602052604081205460ff16156110f857506001600160a01b031660009081526004602052604090205490565b6001600160a01b0382166000908152600360205260409020546108cd9061093c565b6000546001600160a01b031633146111445760405162461bcd60e51b815260040161099f90612b35565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600f805461083990612afa565b6000546001600160a01b031633146111c75760405162461bcd60e51b815260040161099f90612b35565b6015849055601683905560178290556018819055601481836111e98688612bfb565b6111f39190612bfb565b6111fd9190612bfb565b111561124b5760405162461bcd60e51b815260206004820152601e60248201527f53656c6c204665652073686f756c6420626520323025206f72206c6573730000604482015260640161099f565b50505050565b6000546001600160a01b0316331461127b5760405162461bcd60e51b815260040161099f90612b35565b61128d81670de0b6b3a7640000612c13565b60255550565b60006108c9338461092d85604051806060016040528060258152602001612e0f602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190611b30565b60006108c93384846116c1565b6000546001600160a01b031633146113195760405162461bcd60e51b815260040161099f90612b35565b601184905560138390556012829055601481815581836113398688612bfb565b6113439190612bfb565b61134d9190612bfb565b111561124b5760405162461bcd60e51b815260206004820152601d60248201527f427579204665652073686f756c6420626520323025206f72206c657373000000604482015260640161099f565b6000546001600160a01b031633146113c55760405162461bcd60e51b815260040161099f90612b35565b60238054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061141290831515815260200190565b60405180910390a150565b6000546001600160a01b031633146114475760405162461bcd60e51b815260040161099f90612b35565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b031633146114925760405162461bcd60e51b815260040161099f90612b35565b6010546114a39060ff16600a612d16565b6114ad9082612c13565b60245550565b6000546001600160a01b031633146114dd5760405162461bcd60e51b815260040161099f90612b35565b6001600160a01b0381166115425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099f565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166115ff5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161099f565b6001600160a01b0382166116605760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161099f565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117255760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161099f565b600081116117875760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161099f565b6000546001600160a01b038481169116148015906117b357506000546001600160a01b03838116911614155b80156117c757506001600160a01b03821615155b80156117de57506001600160a01b03821661dead14155b80156117f857506023546001600160a01b03838116911614155b15611874576000611808836110bb565b6025549091506118188383612bfb565b11156118725760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b606482015260840161099f565b505b600061187f306110bb565b602454909150811080159081906118a05750602354600160a01b900460ff16155b80156118ba57506023546001600160a01b03868116911614155b80156118cf5750602354600160a81b900460ff165b156118e25760245491506118e282611cbf565b6001600160a01b03851660009081526006602052604090205460019060ff168061192457506001600160a01b03851660009081526006602052604090205460ff165b1561192d575060005b6023546001600160a01b03878116911614806119ba5750611956866001600160a01b0316611d66565b801561197057506000546001600160a01b03868116911614155b801561199557506001600160a01b03861660009081526006602052604090205460ff16155b80156119ba57506001600160a01b03851660009081526006602052604090205460ff16155b156119d857601154601955601354601a55601254601b55601454601c555b6023546001600160a01b0386811691161480611a655750611a01856001600160a01b0316611d66565b8015611a1b57506000546001600160a01b03878116911614155b8015611a4057506001600160a01b03861660009081526006602052604090205460ff16155b8015611a6557506001600160a01b03851660009081526006602052604090205460ff16155b15611a8357601554601955601654601a55601754601b55601854601c555b6000546001600160a01b03878116911614801590611aaf57506023546001600160a01b03868116911614155b8015611ac957506023546001600160a01b03878116911614155b8015611aee57506001600160a01b03861660009081526006602052604090205460ff16155b8015611b1357506001600160a01b03851660009081526006602052604090205460ff16155b15611b1c575060005b611b2886868684611da2565b505050505050565b60008184841115611b545760405162461bcd60e51b815260040161099f9190612923565b506000611b618486612b96565b95945050505050565b6000806000611b7761203d565b9092509050611b868282611b8d565b9250505090565b60006109be83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121bf565b600080611bdc8385612bfb565b9050838110156109be5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161099f565b6000806000806000806000806000611c458a6121ed565b9250925092506000806000611c638d8686611c5e611b6a565b612229565b919f909e50909c50959a5093985091965092945050505050565b60006109be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b30565b6023805460ff60a01b1916600160a01b1790556000611cdf826002611b8d565b90506000611ced8383611c7d565b905047611cf983612279565b6000611d054783611c7d565b9050611d1183826123cb565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506023805460ff60a01b19169055505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611d9a57508115155b949350505050565b80611daf57611daf6124a0565b600080611dc46000546001600160a01b031690565b6001600160a01b0316866001600160a01b031614158015611df357506000546001600160a01b03868116911614155b8015611e0857506001600160a01b0386163014155b15611e2457611e16846124fb565b9150611e218461251d565b90505b6001600160a01b03861660009081526007602052604090205460ff168015611e6557506001600160a01b03851660009081526007602052604090205460ff16155b15611e8d57611e888686611e8384611e7d8988611c7d565b90611c7d565b612539565b611fba565b6001600160a01b03861660009081526007602052604090205460ff16158015611ece57506001600160a01b03851660009081526007602052604090205460ff165b15611eeb57611e888686611ee684611e7d8988611c7d565b61265f565b6001600160a01b03861660009081526007602052604090205460ff16158015611f2d57506001600160a01b03851660009081526007602052604090205460ff16155b15611f4a57611e888686611f4584611e7d8988611c7d565b612708565b6001600160a01b03861660009081526007602052604090205460ff168015611f8a57506001600160a01b03851660009081526007602052604090205460ff165b15611fa757611e888686611fa284611e7d8988611c7d565b61274c565b611fba8686611f4584611e7d8988611c7d565b611fc26124a0565b8115611fe057600a54611fe09087906001600160a01b031684612708565b8015611ffe57602154611ffe9087906001600160a01b031683612708565b61201b601d54601955601f54601b55601e54601a55602054601c55565b82611b2857611b28601d54601955601f54601b55601e54601a55602054601c55565b600c54600b546000918291825b60095481101561218f5782600360006009848154811061206c5761206c612b6a565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806120d757508160046000600984815481106120b0576120b0612b6a565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156120ed57600c54600b54945094505050509091565b612133600360006009848154811061210757612107612b6a565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611c7d565b925061217b600460006009848154811061214f5761214f612b6a565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611c7d565b91508061218781612bc3565b91505061204a565b50600b54600c5461219f91611b8d565b8210156121b657600c54600b549350935050509091565b90939092509050565b600081836121e05760405162461bcd60e51b815260040161099f9190612923565b506000611b618486612d25565b6000806000806121fc856127bf565b90506000612209866127db565b9050600061221b82611e7d8986611c7d565b979296509094509092505050565b600080808061223888866127f7565b9050600061224688876127f7565b9050600061225488886127f7565b9050600061226682611e7d8686611c7d565b939b939a50919850919650505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106122ae576122ae612b6a565b6001600160a01b03928316602091820292909201810191909152602254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612307573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061232b9190612bde565b8160018151811061233e5761233e612b6a565b6001600160a01b039283166020918202929092010152602254612364913091168461159d565b60225460405163791ac94760e01b81526001600160a01b039091169063791ac9479061239d908590600090869030904290600401612d47565b600060405180830381600087803b1580156123b757600080fd5b505af1158015611b28573d6000803e3d6000fd5b6022546123e39030906001600160a01b03168461159d565b6022546001600160a01b031663f305d71982308560008061240c6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612474573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124999190612db8565b5050505050565b6019541580156124b05750601b54155b80156124bc5750601a54155b80156124c85750601c54155b156124cf57565b60198054601d55601b8054601f55601a8054601e55601c80546020556000938490559183905582905555565b60006108cd6064612517601c54856127f790919063ffffffff16565b90611b8d565b60006108cd6064612517601a54856127f790919063ffffffff16565b60008060008060008061254b87611c2e565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061257d9088611c7d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546125ac9087611c7d565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546125db9086611bcf565b6001600160a01b0389166000908152600360205260409020556125fd81612876565b61260784836128ff565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161264c91815260200190565b60405180910390a3505050505050505050565b60008060008060008061267187611c2e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126a39087611c7d565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546126d99084611bcf565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546125db9086611bcf565b60008060008060008061271a87611c2e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506125ac9087611c7d565b60008060008060008061275e87611c2e565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127909088611c7d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126a39087611c7d565b60006108cd6064612517601954856127f790919063ffffffff16565b60006108cd6064612517601b54856127f790919063ffffffff16565b600082612806575060006108cd565b60006128128385612c13565b90508261281f8583612d25565b146109be5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161099f565b6000612880611b6a565b9050600061288e83836127f7565b306000908152600360205260409020549091506128ab9082611bcf565b3060009081526003602090815260408083209390935560079052205460ff16156128fa57306000908152600460205260409020546128e99084611bcf565b306000908152600460205260409020555b505050565b600c5461290c9083611c7d565b600c55600d5461291c9082611bcf565b600d555050565b600060208083528351808285015260005b8181101561295057858101830151858201604001528201612934565b81811115612962576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461298d57600080fd5b50565b600080604083850312156129a357600080fd5b82356129ae81612978565b946020939093013593505050565b6000806000606084860312156129d157600080fd5b83356129dc81612978565b925060208401356129ec81612978565b929592945050506040919091013590565b600060208284031215612a0f57600080fd5b5035919050565b600060208284031215612a2857600080fd5b81356109be81612978565b80358015158114612a4357600080fd5b919050565b60008060408385031215612a5b57600080fd5b82359150612a6b60208401612a33565b90509250929050565b60008060008060808587031215612a8a57600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215612ab857600080fd5b6109be82612a33565b60008060408385031215612ad457600080fd5b8235612adf81612978565b91506020830135612aef81612978565b809150509250929050565b600181811c90821680612b0e57607f821691505b60208210811415612b2f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612ba857612ba8612b80565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600019821415612bd757612bd7612b80565b5060010190565b600060208284031215612bf057600080fd5b81516109be81612978565b60008219821115612c0e57612c0e612b80565b500190565b6000816000190483118215151615612c2d57612c2d612b80565b500290565b600181815b80851115612c6d578160001904821115612c5357612c53612b80565b80851615612c6057918102915b93841c9390800290612c37565b509250929050565b600082612c84575060016108cd565b81612c91575060006108cd565b8160018114612ca75760028114612cb157612ccd565b60019150506108cd565b60ff841115612cc257612cc2612b80565b50506001821b6108cd565b5060208310610133831016604e8410600b8410161715612cf0575081810a6108cd565b612cfa8383612c32565b8060001904821115612d0e57612d0e612b80565b029392505050565b60006109be60ff841683612c75565b600082612d4257634e487b7160e01b600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d975784516001600160a01b031683529383019391830191600101612d72565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612dcd57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203561a2299a80d768fa6ac1f7e33d838c1784314c4fad38a9e8c59bc03e45c1bd64736f6c634300080a0033

Deployed Bytecode Sourcemap

24717:22891:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28065:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28977:161;;;;;;;;;;-1:-1:-1;28977:161:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;28977:161:0;1072:187:1;30098:87:0;;;;;;;;;;-1:-1:-1;30167:10:0;;30098:87;;;1410:25:1;;;1398:2;1383:18;30098:87:0;1264:177:1;26562:42:0;;;;;;;;;;-1:-1:-1;26562:42:0;;;;-1:-1:-1;;;;;26562:42:0;;;;;;-1:-1:-1;;;;;1637:32:1;;;1619:51;;1607:2;1592:18;26562:42:0;1446:230:1;25749:30:0;;;;;;;;;;;;;;;;28342:95;;;;;;;;;;-1:-1:-1;28422:7:0;;28342:95;;25865:30;;;;;;;;;;;;;;;;29146:313;;;;;;;;;;-1:-1:-1;29146:313:0;;;;;:::i;:::-;;:::i;31022:253::-;;;;;;;;;;-1:-1:-1;31022:253:0;;;;;:::i;:::-;;:::i;28251:83::-;;;;;;;;;;-1:-1:-1;28317:9:0;;28251:83;;28317:9;;;;2469:36:1;;2457:2;2442:18;28251:83:0;2327:184:1;31624:479:0;;;;;;;;;;-1:-1:-1;31624:479:0;;;;;:::i;:::-;;:::i;:::-;;29467:218;;;;;;;;;;-1:-1:-1;29467:218:0;;;;;:::i;:::-;;:::i;30193:377::-;;;;;;;;;;-1:-1:-1;30193:377:0;;;;;:::i;:::-;;:::i;46956:322::-;;;;;;;;;;-1:-1:-1;46956:322:0;;;;;:::i;:::-;;:::i;45403:111::-;;;;;;;;;;-1:-1:-1;45403:111:0;;;;;:::i;:::-;;:::i;30578:436::-;;;;;;;;;;-1:-1:-1;30578:436:0;;;;;:::i;:::-;;:::i;26611:29::-;;;;;;;;;;-1:-1:-1;26611:29:0;;;;-1:-1:-1;;;;;26611:29:0;;;26681:40;;;;;;;;;;-1:-1:-1;26681:40:0;;;;-1:-1:-1;;;26681:40:0;;;;;;31283:333;;;;;;;;;;-1:-1:-1;31283:333:0;;;;;:::i;:::-;;:::i;36665:123::-;;;;;;;;;;-1:-1:-1;36665:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;36753:27:0;36729:4;36753:27;;;:18;:27;;;;;;;;;36665:123;45648:114;;;;;;;;;;-1:-1:-1;45648:114:0;;;;;:::i;:::-;;:::i;28445:198::-;;;;;;;;;;-1:-1:-1;28445:198:0;;;;;:::i;:::-;;:::i;16205:148::-;;;;;;;;;;;;;:::i;26437:75::-;;;;;;;;;;-1:-1:-1;26437:75:0;;;;-1:-1:-1;;;;;26437:75:0;;;26068:31;;;;;;;;;;;;;;;;26025:36;;;;;;;;;;;;;;;;29970:120;;;;;;;;;;-1:-1:-1;29970:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;30062:20:0;30038:4;30062:20;;;:11;:20;;;;;;;;;29970:120;15562:79;;;;;;;;;;-1:-1:-1;15600:7:0;15627:6;-1:-1:-1;;;;;15627:6:0;15562:79;;28156:87;;;;;;;;;;;;;:::i;46181:410::-;;;;;;;;;;-1:-1:-1;46181:410:0;;;;;:::i;:::-;;:::i;46599:120::-;;;;;;;;;;-1:-1:-1;46599:120:0;;;;;:::i;:::-;;:::i;29693:269::-;;;;;;;;;;-1:-1:-1;29693:269:0;;;;;:::i;:::-;;:::i;28651:167::-;;;;;;;;;;-1:-1:-1;28651:167:0;;;;;:::i;:::-;;:::i;45774:399::-;;;;;;;;;;-1:-1:-1;45774:399:0;;;;;:::i;:::-;;:::i;47290:171::-;;;;;;;;;;-1:-1:-1;47290:171:0;;;;;:::i;:::-;;:::i;25706:36::-;;;;;;;;;;;;;;;;25981:37;;;;;;;;;;;;;;;;26730:59;;;;;;;;;;;;;;;;25664:35;;;;;;;;;;;;;;;;28826:143;;;;;;;;;;-1:-1:-1;28826:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;28934:18:0;;;28907:7;28934:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28826:143;26796:47;;;;;;;;;;;;;;;;45526:110;;;;;;;;;;-1:-1:-1;45526:110:0;;;;;:::i;:::-;;:::i;25596:29::-;;;;;;;;;;;;;;;;46727:150;;;;;;;;;;-1:-1:-1;46727:150:0;;;;;:::i;:::-;;:::i;16508:244::-;;;;;;;;;;-1:-1:-1;16508:244:0;;;;;:::i;:::-;;:::i;28065:83::-;28102:13;28135:5;28128:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28065:83;:::o;28977:161::-;29052:4;29069:39;8067:10;29092:7;29101:6;29069:8;:39::i;:::-;-1:-1:-1;29126:4:0;28977:161;;;;;:::o;29146:313::-;29244:4;29261:36;29271:6;29279:9;29290:6;29261:9;:36::i;:::-;29308:121;29317:6;8067:10;29339:89;29377:6;29339:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29339:19:0;;;;;;:11;:19;;;;;;;;8067:10;29339:33;;;;;;;;;;:37;:89::i;:::-;29308:8;:121::i;:::-;-1:-1:-1;29447:4:0;29146:313;;;;;:::o;31022:253::-;31088:7;31127;;31116;:18;;31108:73;;;;-1:-1:-1;;;31108:73:0;;4949:2:1;31108:73:0;;;4931:21:1;4988:2;4968:18;;;4961:30;5027:34;5007:18;;;5000:62;-1:-1:-1;;;5078:18:1;;;5071:40;5128:19;;31108:73:0;;;;;;;;;31192:19;31215:10;:8;:10::i;:::-;31192:33;-1:-1:-1;31243:24:0;:7;31192:33;31243:11;:24::i;:::-;31236:31;31022:253;-1:-1:-1;;;31022:253:0:o;31624:479::-;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31706:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31698:60;;;::::0;-1:-1:-1;;;31698:60:0;;5721:2:1;31698:60:0::1;::::0;::::1;5703:21:1::0;5760:2;5740:18;;;5733:30;5799:29;5779:18;;;5772:57;5846:18;;31698:60:0::1;5519:351:1::0;31698:60:0::1;31774:9;31769:327;31793:9;:16:::0;31789:20;::::1;31769:327;;;31851:7;-1:-1:-1::0;;;;;31835:23:0::1;:9;31845:1;31835:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;31835:12:0::1;:23;31831:254;;;31894:9;31904:16:::0;;:20:::1;::::0;31923:1:::1;::::0;31904:20:::1;:::i;:::-;31894:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;31879:9:::1;:12:::0;;-1:-1:-1;;;;;31894:31:0;;::::1;::::0;31889:1;;31879:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;31879:46:0::1;-1:-1:-1::0;;;;;31879:46:0;;::::1;;::::0;;31944:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;31983:11:::1;:20:::0;;;;:28;;-1:-1:-1;;31983:28:0::1;::::0;;32030:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32030:15:0;;;;;-1:-1:-1;;;;;;32030:15:0::1;::::0;;;;;31769:327:::1;31624:479:::0;:::o;31831:254::-:1;31811:3:::0;::::1;::::0;::::1;:::i;:::-;;;;31769:327;;;;31624:479:::0;:::o;29467:218::-;8067:10;29555:4;29604:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29604:34:0;;;;;;;;;;29555:4;;29572:83;;29595:7;;29604:50;;29643:10;29604:38;:50::i;30193:377::-;8067:10;30245:14;30294:19;;;:11;:19;;;;;;;;30293:20;30285:77;;;;-1:-1:-1;;;30285:77:0;;6743:2:1;30285:77:0;;;6725:21:1;6782:2;6762:18;;;6755:30;6821:34;6801:18;;;6794:62;-1:-1:-1;;;6872:18:1;;;6865:42;6924:19;;30285:77:0;6541:408:1;30285:77:0;30374:15;30398:19;30409:7;30398:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30446:15:0;;;;;;:7;:15;;;;;;30373:44;;-1:-1:-1;30446:28:0;;:15;-1:-1:-1;30373:44:0;30446:19;:28::i;:::-;-1:-1:-1;;;;;30428:15:0;;;;;;:7;:15;;;;;:46;30495:7;;:20;;30507:7;30495:11;:20::i;:::-;30485:7;:30;30539:10;;:23;;30554:7;30539:14;:23::i;:::-;30526:10;:36;-1:-1:-1;;;30193:377:0:o;46956:322::-;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;47031:36:::1;47089:9;47031:68;;47144:17;-1:-1:-1::0;;;;;47144:25:0::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47126:57:0::1;;47192:4;47199:17;-1:-1:-1::0;;;;;47199:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47126:98;::::0;-1:-1:-1;;;;;;47126:98:0::1;::::0;;;;;;-1:-1:-1;;;;;7440:15:1;;;47126:98:0::1;::::0;::::1;7422:34:1::0;7492:15;;7472:18;;;7465:43;7357:18;;47126:98:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47110:13;:114:::0;;-1:-1:-1;;;;;47110:114:0;;::::1;-1:-1:-1::0;;;;;;47110:114:0;;::::1;;::::0;;;47235:15:::1;:35:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;46956:322:0:o;45403:111::-;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45472:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;45472:34:0::1;45502:4;45472:34;::::0;;45403:111::o;30578:436::-;30668:7;30707;;30696;:18;;30688:62;;;;-1:-1:-1;;;30688:62:0;;7721:2:1;30688:62:0;;;7703:21:1;7760:2;7740:18;;;7733:30;7799:33;7779:18;;;7772:61;7850:18;;30688:62:0;7519:355:1;30688:62:0;30766:17;30761:246;;30801:15;30825:19;30836:7;30825:10;:19::i;:::-;-1:-1:-1;30800:44:0;;-1:-1:-1;30859:14:0;;-1:-1:-1;;;;;30859:14:0;30761:246;30908:23;30939:19;30950:7;30939:10;:19::i;:::-;-1:-1:-1;30906:52:0;;-1:-1:-1;30973:22:0;;-1:-1:-1;;;;;30973:22:0;31283:333;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31366:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31365:21;31357:61;;;::::0;-1:-1:-1;;;31357:61:0;;5721:2:1;31357:61:0::1;::::0;::::1;5703:21:1::0;5760:2;5740:18;;;5733:30;5799:29;5779:18;;;5772:57;5846:18;;31357:61:0::1;5519:351:1::0;31357:61:0::1;-1:-1:-1::0;;;;;31432:16:0;::::1;31451:1;31432:16:::0;;;:7:::1;:16;::::0;;;;;:20;31429:108:::1;;-1:-1:-1::0;;;;;31508:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;31488:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;31469:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31429:108:::1;-1:-1:-1::0;;;;;31547:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31547:27:0::1;31570:4;31547:27:::0;;::::1;::::0;;;31585:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31585:23:0::1;::::0;;::::1;::::0;;31283:333::o;45648:114::-;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;45727:15:::1;:27:::0;;-1:-1:-1;;;;;;45727:27:0::1;-1:-1:-1::0;;;;;45727:27:0;;;::::1;::::0;;;::::1;::::0;;45648:114::o;28445:198::-;-1:-1:-1;;;;;28535:20:0;;28511:7;28535:20;;;:11;:20;;;;;;;;28531:49;;;-1:-1:-1;;;;;;28564:16:0;;;;;:7;:16;;;;;;;28445:198::o;28531:49::-;-1:-1:-1;;;;;28618:16:0;;;;;;:7;:16;;;;;;28598:37;;:19;:37::i;16205:148::-;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;16312:1:::1;16296:6:::0;;16275:40:::1;::::0;-1:-1:-1;;;;;16296:6:0;;::::1;::::0;16275:40:::1;::::0;16312:1;;16275:40:::1;16343:1;16326:19:::0;;-1:-1:-1;;;;;;16326:19:0::1;::::0;;16205:148::o;28156:87::-;28195:13;28228:7;28221:14;;;;;:::i;46181:410::-;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;46317:11:::1;:20:::0;;;46348:17:::1;:32:::0;;;46391:17:::1;:32:::0;;;46434:12:::1;:22:::0;;;46546:2:::1;46449:7:::0;46411:12;46476:31:::1;46368:12:::0;46331:6;46476:31:::1;:::i;:::-;:51;;;;:::i;:::-;:66;;;;:::i;:::-;:72;;46467:116;;;::::0;-1:-1:-1;;;46467:116:0;;8214:2:1;46467:116:0::1;::::0;::::1;8196:21:1::0;8253:2;8233:18;;;8226:30;8292:32;8272:18;;;8265:60;8342:18;;46467:116:0::1;8012:354:1::0;46467:116:0::1;46181:410:::0;;;;:::o;46599:120::-;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;46692:20:::1;:9:::0;46705:6:::1;46692:20;:::i;:::-;46675:14;:37:::0;-1:-1:-1;46599:120:0:o;29693:269::-;29786:4;29803:129;8067:10;29826:7;29835:96;29874:15;29835:96;;;;;;;;;;;;;;;;;8067:10;29835:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29835:34:0;;;;;;;;;;;;:38;:96::i;28651:167::-;28729:4;28746:42;8067:10;28770:9;28781:6;28746:9;:42::i;45774:399::-;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;45909:10:::1;:19:::0;;;45939:16:::1;:31:::0;;;45981:16:::1;:31:::0;;;46023:11:::1;:21:::0;;;46037:7;46000:12;46063:29:::1;45958:12:::0;45922:6;46063:29:::1;:::i;:::-;:48;;;;:::i;:::-;:62;;;;:::i;:::-;:68;;46055:110;;;::::0;-1:-1:-1;;;46055:110:0;;8746:2:1;46055:110:0::1;::::0;::::1;8728:21:1::0;8785:2;8765:18;;;8758:30;8824:31;8804:18;;;8797:59;8873:18;;46055:110:0::1;8544:353:1::0;47290:171:0;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;47367:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;47367:32:0::1;-1:-1:-1::0;;;;47367:32:0;;::::1;;::::0;;47415:38:::1;::::0;::::1;::::0;::::1;::::0;47391:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;47415:38:0::1;;;;;;;;47290:171:::0;:::o;45526:110::-;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45593:27:0::1;45623:5;45593:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;45593:35:0::1;::::0;;45526:110::o;46727:150::-;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;46860:9:::1;::::0;46856:13:::1;::::0;46860:9:::1;;46856:2;:13;:::i;:::-;46849:20;::::0;:6;:20:::1;:::i;:::-;46817:29;:52:::0;-1:-1:-1;46727:150:0:o;16508:244::-;15774:6;;-1:-1:-1;;;;;15774:6:0;8067:10;15774:22;15766:67;;;;-1:-1:-1;;;15766:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16597:22:0;::::1;16589:73;;;::::0;-1:-1:-1;;;16589:73:0;;10487:2:1;16589:73:0::1;::::0;::::1;10469:21:1::0;10526:2;10506:18;;;10499:30;10565:34;10545:18;;;10538:62;-1:-1:-1;;;10616:18:1;;;10609:36;10662:19;;16589:73:0::1;10285:402:1::0;16589:73:0::1;16699:6;::::0;;16678:38:::1;::::0;-1:-1:-1;;;;;16678:38:0;;::::1;::::0;16699:6;::::1;::::0;16678:38:::1;::::0;::::1;16727:6;:17:::0;;-1:-1:-1;;;;;;16727:17:0::1;-1:-1:-1::0;;;;;16727:17:0;;;::::1;::::0;;;::::1;::::0;;16508:244::o;36796:337::-;-1:-1:-1;;;;;36889:19:0;;36881:68;;;;-1:-1:-1;;;36881:68:0;;10894:2:1;36881:68:0;;;10876:21:1;10933:2;10913:18;;;10906:30;10972:34;10952:18;;;10945:62;-1:-1:-1;;;11023:18:1;;;11016:34;11067:19;;36881:68:0;10692:400:1;36881:68:0;-1:-1:-1;;;;;36968:21:0;;36960:68;;;;-1:-1:-1;;;36960:68:0;;11299:2:1;36960:68:0;;;11281:21:1;11338:2;11318:18;;;11311:30;11377:34;11357:18;;;11350:62;-1:-1:-1;;;11428:18:1;;;11421:32;11470:19;;36960:68:0;11097:398:1;36960:68:0;-1:-1:-1;;;;;37041:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;37093:32;;1410:25:1;;;37093:32:0;;1383:18:1;37093:32:0;;;;;;;36796:337;;;:::o;37141:2800::-;-1:-1:-1;;;;;37263:18:0;;37255:68;;;;-1:-1:-1;;;37255:68:0;;11702:2:1;37255:68:0;;;11684:21:1;11741:2;11721:18;;;11714:30;11780:34;11760:18;;;11753:62;-1:-1:-1;;;11831:18:1;;;11824:35;11876:19;;37255:68:0;11500:401:1;37255:68:0;37351:1;37342:6;:10;37334:64;;;;-1:-1:-1;;;37334:64:0;;12108:2:1;37334:64:0;;;12090:21:1;12147:2;12127:18;;;12120:30;12186:34;12166:18;;;12159:62;-1:-1:-1;;;12237:18:1;;;12230:39;12286:19;;37334:64:0;11906:405:1;37334:64:0;15600:7;15627:6;-1:-1:-1;;;;;37447:15:0;;;15627:6;;37447:15;;;;:45;;-1:-1:-1;15600:7:0;15627:6;-1:-1:-1;;;;;37479:13:0;;;15627:6;;37479:13;;37447:45;:78;;;;-1:-1:-1;;;;;;37509:16:0;;;;37447:78;:116;;;;-1:-1:-1;;;;;;37542:21:0;;37556:6;37542:21;;37447:116;:152;;;;-1:-1:-1;37586:13:0;;-1:-1:-1;;;;;37580:19:0;;;37586:13;;37580:19;;37447:152;37429:437;;;37628:32;37663:13;37673:2;37663:9;:13::i;:::-;37754:14;;37628:48;;-1:-1:-1;37717:33:0;37744:6;37628:48;37717:33;:::i;:::-;:51;;37691:149;;;;-1:-1:-1;;;37691:149:0;;12518:2:1;37691:149:0;;;12500:21:1;12557:2;12537:18;;;12530:30;12596:34;12576:18;;;12569:62;-1:-1:-1;;;12647:18:1;;;12640:34;12691:19;;37691:149:0;12316:400:1;37691:149:0;37611:255;37429:437;38168:28;38199:24;38217:4;38199:9;:24::i;:::-;38293:29;;38168:55;;-1:-1:-1;38269:53:0;;;;;;;38351;;-1:-1:-1;38388:16:0;;-1:-1:-1;;;38388:16:0;;;;38387:17;38351:53;:91;;;;-1:-1:-1;38429:13:0;;-1:-1:-1;;;;;38421:21:0;;;38429:13;;38421:21;;38351:91;:129;;;;-1:-1:-1;38459:21:0;;-1:-1:-1;;;38459:21:0;;;;38351:129;38333:318;;;38530:29;;38507:52;;38603:36;38618:20;38603:14;:36::i;:::-;-1:-1:-1;;;;;38848:24:0;;38726:12;38848:24;;;:18;:24;;;;;;38741:4;;38848:24;;;:50;;-1:-1:-1;;;;;;38876:22:0;;;;;;:18;:22;;;;;;;;38848:50;38845:96;;;-1:-1:-1;38924:5:0;38845:96;38989:13;;-1:-1:-1;;;;;38981:21:0;;;38989:13;;38981:21;;:115;;;39006:17;:4;-1:-1:-1;;;;;39006:15:0;;:17::i;:::-;:34;;;;-1:-1:-1;15600:7:0;15627:6;-1:-1:-1;;;;;39027:13:0;;;15627:6;;39027:13;;39006:34;:63;;;;-1:-1:-1;;;;;;39045:24:0;;;;;;:18;:24;;;;;;;;39044:25;39006:63;:90;;;;-1:-1:-1;;;;;;39074:22:0;;;;;;:18;:22;;;;;;;;39073:23;39006:90;38978:298;;;39123:10;;39113:7;:20;39164:16;;39148:13;:32;39211:16;;39195:13;:32;39253:11;;39242:8;:22;38978:298;39331:13;;-1:-1:-1;;;;;39325:19:0;;;39331:13;;39325:19;;:113;;;39348:15;:2;-1:-1:-1;;;;;39348:13:0;;:15::i;:::-;:34;;;;-1:-1:-1;15600:7:0;15627:6;-1:-1:-1;;;;;39368:14:0;;;15627:6;;39368:14;;39348:34;:63;;;;-1:-1:-1;;;;;;39387:24:0;;;;;;:18;:24;;;;;;;;39386:25;39348:63;:90;;;;-1:-1:-1;;;;;;39416:22:0;;;;;;:18;:22;;;;;;;;39415:23;39348:90;39322:309;;;39465:11;;39455:7;:21;39507:17;;39491:13;:33;39555:17;;39539:13;:33;39598:12;;39587:8;:23;39322:309;15600:7;15627:6;-1:-1:-1;;;;;39646:15:0;;;15627:6;;39646:15;;;;:38;;-1:-1:-1;39671:13:0;;-1:-1:-1;;;;;39665:19:0;;;39671:13;;39665:19;;39646:38;:63;;;;-1:-1:-1;39696:13:0;;-1:-1:-1;;;;;39688:21:0;;;39696:13;;39688:21;;39646:63;:92;;;;-1:-1:-1;;;;;;39714:24:0;;;;;;:18;:24;;;;;;;;39713:25;39646:92;:119;;;;-1:-1:-1;;;;;;39743:22:0;;;;;;:18;:22;;;;;;;;39742:23;39646:119;39643:165;;;-1:-1:-1;39791:5:0;39643:165;39894:39;39909:4;39914:2;39917:6;39925:7;39894:14;:39::i;:::-;37244:2697;;;37141:2800;;;:::o;4381:192::-;4467:7;4503:12;4495:6;;;;4487:29;;;;-1:-1:-1;;;4487:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4527:9:0;4539:5;4543:1;4539;:5;:::i;:::-;4527:17;4381:192;-1:-1:-1;;;;;4381:192:0:o;34224:163::-;34265:7;34286:15;34303;34322:19;:17;:19::i;:::-;34285:56;;-1:-1:-1;34285:56:0;-1:-1:-1;34359:20:0;34285:56;;34359:11;:20::i;:::-;34352:27;;;;34224:163;:::o;5779:132::-;5837:7;5864:39;5868:1;5871;5864:39;;;;;;;;;;;;;;;;;:3;:39::i;3478:181::-;3536:7;;3568:5;3572:1;3568;:5;:::i;:::-;3556:17;;3597:1;3592;:6;;3584:46;;;;-1:-1:-1;;;3584:46:0;;12923:2:1;3584:46:0;;;12905:21:1;12962:2;12942:18;;;12935:30;13001:29;12981:18;;;12974:57;13048:18;;3584:46:0;12721:351:1;33022:419:0;33081:7;33090;33099;33108;33117;33126;33147:23;33172:12;33186:18;33208:20;33220:7;33208:11;:20::i;:::-;33146:82;;;;;;33240:15;33257:23;33282:12;33298:50;33310:7;33319:4;33325:10;33337;:8;:10::i;:::-;33298:11;:50::i;:::-;33239:109;;;;-1:-1:-1;33239:109:0;;-1:-1:-1;33399:15:0;;-1:-1:-1;33416:4:0;;-1:-1:-1;33422:10:0;;-1:-1:-1;33022:419:0;;-1:-1:-1;;;;;33022:419:0:o;3942:136::-;4000:7;4027:43;4031:1;4034;4027:43;;;;;;;;;;;;;;;;;:3;:43::i;39949:995::-;27213:16;:23;;-1:-1:-1;;;;27213:23:0;-1:-1:-1;;;27213:23:0;;;;40110:27:::1;:20:::0;40135:1:::1;40110:24;:27::i;:::-;40095:42:::0;-1:-1:-1;40148:17:0::1;40168:30;:20:::0;40095:42;40168:24:::1;:30::i;:::-;40148:50:::0;-1:-1:-1;40501:21:0::1;40567:22;40584:4:::0;40567:16:::1;:22::i;:::-;40720:18;40741:41;:21;40767:14:::0;40741:25:::1;:41::i;:::-;40720:62;;40832:35;40845:9;40856:10;40832:12;:35::i;:::-;40893:43;::::0;;13279:25:1;;;13335:2;13320:18;;13313:34;;;13363:18;;;13356:34;;;40893:43:0::1;::::0;13267:2:1;13252:18;40893:43:0::1;;;;;;;-1:-1:-1::0;;27259:16:0;:24;;-1:-1:-1;;;;27259:24:0;;;-1:-1:-1;;;39949:995:0:o;9017:619::-;9077:4;9545:20;;9388:66;9585:23;;;;;;:42;;-1:-1:-1;9612:15:0;;;9585:42;9577:51;9017:619;-1:-1:-1;;;;9017:619:0:o;42143:1562::-;42265:7;42260:28;;42274:14;:12;:14::i;:::-;42299:18;42332:23;42383:7;15600;15627:6;-1:-1:-1;;;;;15627:6:0;;15562:79;42383:7;-1:-1:-1;;;;;42373:17:0;:6;-1:-1:-1;;;;;42373:17:0;;;:41;;;;-1:-1:-1;15600:7:0;15627:6;-1:-1:-1;;;;;42394:20:0;;;15627:6;;42394:20;;42373:41;:67;;;;-1:-1:-1;;;;;;42418:22:0;;42435:4;42418:22;;42373:67;42370:207;;;42479:24;42496:6;42479:16;:24::i;:::-;42466:37;;42536:29;42558:6;42536:21;:29::i;:::-;42518:47;;42370:207;-1:-1:-1;;;;;42593:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;42617:22:0;;;;;;:11;:22;;;;;;;;42616:23;42593:46;42589:782;;;42656:85;42678:6;42686:9;42697:43;42724:15;42697:22;:6;42708:10;42697;:22::i;:::-;:26;;:43::i;:::-;42656:21;:85::i;:::-;42589:782;;;-1:-1:-1;;;;;42764:19:0;;;;;;:11;:19;;;;;;;;42763:20;:46;;;;-1:-1:-1;;;;;;42787:22:0;;;;;;:11;:22;;;;;;;;42763:46;42759:612;;;42826:83;42846:6;42854:9;42865:43;42892:15;42865:22;:6;42876:10;42865;:22::i;:43::-;42826:19;:83::i;42759:612::-;-1:-1:-1;;;;;42932:19:0;;;;;;:11;:19;;;;;;;;42931:20;:47;;;;-1:-1:-1;;;;;;42956:22:0;;;;;;:11;:22;;;;;;;;42955:23;42931:47;42927:444;;;42995:81;43013:6;43021:9;43032:43;43059:15;43032:22;:6;43043:10;43032;:22::i;:43::-;42995:17;:81::i;42927:444::-;-1:-1:-1;;;;;43098:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;43121:22:0;;;;;;:11;:22;;;;;;;;43098:45;43094:277;;;43160:85;43182:6;43190:9;43201:43;43228:15;43201:22;:6;43212:10;43201;:22::i;:43::-;43160:21;:85::i;43094:277::-;43278:81;43296:6;43304:9;43315:43;43342:15;43315:22;:6;43326:10;43315;:22::i;43278:81::-;43383:14;:12;:14::i;:::-;43413;;43410:90;;43471:4;;43444:44;;43463:6;;-1:-1:-1;;;;;43471:4:0;43477:10;43444:17;:44::i;:::-;43523:19;;43520:110;;43585:15;;43559:59;;43577:6;;-1:-1:-1;;;;;43585:15:0;43602;43559:17;:59::i;:::-;43642:15;36490;;36480:7;:25;36532:21;;36516:13;:37;36580:21;;36564:13;:37;36623:16;;36612:8;:27;36437:210;43642:15;43673:7;43668:29;;43682:15;36490;;36480:7;:25;36532:21;;36516:13;:37;36580:21;;36564:13;:37;36623:16;;36612:8;:27;36437:210;34395:561;34492:7;;34528;;34445;;;;;34552:289;34576:9;:16;34572:20;;34552:289;;;34642:7;34618;:21;34626:9;34636:1;34626:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34626:12:0;34618:21;;;;;;;;;;;;;:31;;:66;;;34677:7;34653;:21;34661:9;34671:1;34661:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34661:12:0;34653:21;;;;;;;;;;;;;:31;34618:66;34614:97;;;34694:7;;34703;;34686:25;;;;;;;34395:561;;:::o;34614:97::-;34736:34;34748:7;:21;34756:9;34766:1;34756:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34756:12:0;34748:21;;;;;;;;;;;;;34736:7;;:11;:34::i;:::-;34726:44;;34795:34;34807:7;:21;34815:9;34825:1;34815:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34815:12:0;34807:21;;;;;;;;;;;;;34795:7;;:11;:34::i;:::-;34785:44;-1:-1:-1;34594:3:0;;;;:::i;:::-;;;;34552:289;;;-1:-1:-1;34877:7:0;;34865;;:20;;:11;:20::i;:::-;34855:7;:30;34851:61;;;34895:7;;34904;;34887:25;;;;;;34395:561;;:::o;34851:61::-;34931:7;;34940;;-1:-1:-1;34395:561:0;-1:-1:-1;34395:561:0:o;6407:278::-;6493:7;6528:12;6521:5;6513:28;;;;-1:-1:-1;;;6513:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6552:9:0;6564:5;6568:1;6564;:5;:::i;33449:330::-;33509:7;33518;33527;33547:12;33562:24;33578:7;33562:15;:24::i;:::-;33547:39;;33597:18;33618:30;33640:7;33618:21;:30::i;:::-;33597:51;-1:-1:-1;33659:23:0;33685:33;33597:51;33685:17;:7;33697:4;33685:11;:17::i;:33::-;33659:59;33754:4;;-1:-1:-1;33760:10:0;;-1:-1:-1;33449:330:0;;-1:-1:-1;;;33449:330:0:o;33787:429::-;33902:7;;;;33958:24;:7;33970:11;33958;:24::i;:::-;33940:42;-1:-1:-1;33993:12:0;34008:21;:4;34017:11;34008:8;:21::i;:::-;33993:36;-1:-1:-1;34040:18:0;34061:27;:10;34076:11;34061:14;:27::i;:::-;34040:48;-1:-1:-1;34099:23:0;34125:33;34040:48;34125:17;:7;34137:4;34125:11;:17::i;:33::-;34177:7;;;;-1:-1:-1;34203:4:0;;-1:-1:-1;33787:429:0;;-1:-1:-1;;;;;;;33787:429:0:o;40952:589::-;41102:16;;;41116:1;41102:16;;;;;;;;41078:21;;41102:16;;;;;;;;;;-1:-1:-1;41102:16:0;41078:40;;41147:4;41129;41134:1;41129:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41129:23:0;;;:7;;;;;;;;;;:23;;;;41173:15;;:22;;;-1:-1:-1;;;41173:22:0;;;;:15;;;;;:20;;:22;;;;;41129:7;;41173:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41163:4;41168:1;41163:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41163:32:0;;;:7;;;;;;;;;:32;41240:15;;41208:62;;41225:4;;41240:15;41258:11;41208:8;:62::i;:::-;41309:15;;:224;;-1:-1:-1;;;41309:224:0;;-1:-1:-1;;;;;41309:15:0;;;;:66;;:224;;41390:11;;41309:15;;41460:4;;41487;;41507:15;;41309:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41549:513;41729:15;;41697:62;;41714:4;;-1:-1:-1;;;;;41729:15:0;41747:11;41697:8;:62::i;:::-;41802:15;;-1:-1:-1;;;;;41802:15:0;:31;41841:9;41874:4;41894:11;41802:15;;42006:7;15600;15627:6;-1:-1:-1;;;;;15627:6:0;;15562:79;42006:7;41802:252;;;;;;-1:-1:-1;;;;;;41802:252:0;;;-1:-1:-1;;;;;15099:15:1;;;41802:252:0;;;15081:34:1;15131:18;;;15124:34;;;;15174:18;;;15167:34;;;;15217:18;;;15210:34;15281:15;;;15260:19;;;15253:44;42028:15:0;15313:19:1;;;15306:35;15015:19;;41802:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41549:513;;:::o;36013:416::-;36059:7;;:12;:34;;;;-1:-1:-1;36075:13:0;;:18;36059:34;:54;;;;-1:-1:-1;36097:13:0;;:16;36059:54;:71;;;;-1:-1:-1;36117:8:0;;:13;36059:71;36056:83;;;36013:416::o;36056:83::-;36169:7;;;36151:15;:25;36211:13;;;36187:21;:37;36259:13;;;36235:21;:37;36302:8;;;36283:16;:27;-1:-1:-1;36331:11:0;;;;36353:17;;;;36381;;;36409:12;36013:416::o;35497:156::-;35562:7;35589:56;35629:5;35589:21;35601:8;;35589:7;:11;;:21;;;;:::i;:::-;:25;;:56::i;35661:166::-;35731:7;35758:61;35803:5;35758:26;35770:13;;35758:7;:11;;:26;;;;:::i;44825:566::-;44928:15;44945:23;44970:12;44984:23;45009:12;45023:18;45045:19;45056:7;45045:10;:19::i;:::-;-1:-1:-1;;;;;45093:15:0;;;;;;:7;:15;;;;;;44927:137;;-1:-1:-1;44927:137:0;;-1:-1:-1;44927:137:0;;-1:-1:-1;44927:137:0;-1:-1:-1;44927:137:0;-1:-1:-1;44927:137:0;-1:-1:-1;45093:28:0;;45113:7;45093:19;:28::i;:::-;-1:-1:-1;;;;;45075:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45150:7;:15;;;;:28;;45170:7;45150:19;:28::i;:::-;-1:-1:-1;;;;;45132:15:0;;;;;;;:7;:15;;;;;;:46;;;;45210:18;;;;;;;:39;;45233:15;45210:22;:39::i;:::-;-1:-1:-1;;;;;45189:18:0;;;;;;:7;:18;;;;;:60;45263:26;45278:10;45263:14;:26::i;:::-;45300:23;45312:4;45318;45300:11;:23::i;:::-;45356:9;-1:-1:-1;;;;;45339:44:0;45348:6;-1:-1:-1;;;;;45339:44:0;;45367:15;45339:44;;;;1410:25:1;;1398:2;1383:18;;1264:177;45339:44:0;;;;;;;;44916:475;;;;;;44825:566;;;:::o;44231:586::-;44332:15;44349:23;44374:12;44388:23;44413:12;44427:18;44449:19;44460:7;44449:10;:19::i;:::-;-1:-1:-1;;;;;44497:15:0;;;;;;:7;:15;;;;;;44331:137;;-1:-1:-1;44331:137:0;;-1:-1:-1;44331:137:0;;-1:-1:-1;44331:137:0;-1:-1:-1;44331:137:0;-1:-1:-1;44331:137:0;-1:-1:-1;44497:28:0;;44331:137;44497:19;:28::i;:::-;-1:-1:-1;;;;;44479:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;44557:18;;;;;:7;:18;;;;;:39;;44580:15;44557:22;:39::i;:::-;-1:-1:-1;;;;;44536:18:0;;;;;;:7;:18;;;;;;;;:60;;;;44628:7;:18;;;;:39;;44651:15;44628:22;:39::i;43715:508::-;43820:15;43837:23;43862:12;43876:23;43901:12;43915:18;43937:19;43948:7;43937:10;:19::i;:::-;-1:-1:-1;;;;;43985:15:0;;;;;;:7;:15;;;;;;43819:137;;-1:-1:-1;43819:137:0;;-1:-1:-1;43819:137:0;;-1:-1:-1;43819:137:0;-1:-1:-1;43819:137:0;-1:-1:-1;43819:137:0;-1:-1:-1;43985:28:0;;43819:137;43985:19;:28::i;32111:642::-;32214:15;32231:23;32256:12;32270:23;32295:12;32309:18;32331:19;32342:7;32331:10;:19::i;:::-;-1:-1:-1;;;;;32379:15:0;;;;;;:7;:15;;;;;;32213:137;;-1:-1:-1;32213:137:0;;-1:-1:-1;32213:137:0;;-1:-1:-1;32213:137:0;-1:-1:-1;32213:137:0;-1:-1:-1;32213:137:0;-1:-1:-1;32379:28:0;;32399:7;32379:19;:28::i;:::-;-1:-1:-1;;;;;32361:15:0;;;;;;:7;:15;;;;;;;;:46;;;;32436:7;:15;;;;:28;;32456:7;32436:19;:28::i;35335:154::-;35399:7;35426:55;35465:5;35426:20;35438:7;;35426;:11;;:20;;;;:::i;35835:166::-;35905:7;35932:61;35977:5;35932:26;35944:13;;35932:7;:11;;:26;;;;:::i;4832:471::-;4890:7;5135:6;5131:47;;-1:-1:-1;5165:1:0;5158:8;;5131:47;5190:9;5202:5;5206:1;5202;:5;:::i;:::-;5190:17;-1:-1:-1;5235:1:0;5226:5;5230:1;5190:17;5226:5;:::i;:::-;:10;5218:56;;;;-1:-1:-1;;;5218:56:0;;15865:2:1;5218:56:0;;;15847:21:1;15904:2;15884:18;;;15877:30;15943:34;15923:18;;;15916:62;-1:-1:-1;;;15994:18:1;;;15987:31;16035:19;;5218:56:0;15663:397:1;34968:355:0;35031:19;35054:10;:8;:10::i;:::-;35031:33;-1:-1:-1;35075:18:0;35096:27;:10;35031:33;35096:14;:27::i;:::-;35175:4;35159:22;;;;:7;:22;;;;;;35075:48;;-1:-1:-1;35159:38:0;;35075:48;35159:26;:38::i;:::-;35150:4;35134:22;;;;:7;:22;;;;;;;;:63;;;;35211:11;:26;;;;;;35208:107;;;35293:4;35277:22;;;;:7;:22;;;;;;:38;;35304:10;35277:26;:38::i;:::-;35268:4;35252:22;;;;:7;:22;;;;;:63;35208:107;35020:303;;34968:355;:::o;32867:147::-;32945:7;;:17;;32957:4;32945:11;:17::i;:::-;32935:7;:27;32986:10;;:20;;33001:4;32986:14;:20::i;:::-;32973:10;:33;-1:-1:-1;;32867:147:0:o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1681:456::-;1758:6;1766;1774;1827:2;1815:9;1806:7;1802:23;1798:32;1795:52;;;1843:1;1840;1833:12;1795:52;1882:9;1869:23;1901:31;1926:5;1901:31;:::i;:::-;1951:5;-1:-1:-1;2008:2:1;1993:18;;1980:32;2021:33;1980:32;2021:33;:::i;:::-;1681:456;;2073:7;;-1:-1:-1;;;2127:2:1;2112:18;;;;2099:32;;1681:456::o;2142:180::-;2201:6;2254:2;2242:9;2233:7;2229:23;2225:32;2222:52;;;2270:1;2267;2260:12;2222:52;-1:-1:-1;2293:23:1;;2142:180;-1:-1:-1;2142:180:1:o;2516:247::-;2575:6;2628:2;2616:9;2607:7;2603:23;2599:32;2596:52;;;2644:1;2641;2634:12;2596:52;2683:9;2670:23;2702:31;2727:5;2702:31;:::i;2768:160::-;2833:20;;2889:13;;2882:21;2872:32;;2862:60;;2918:1;2915;2908:12;2862:60;2768:160;;;:::o;2933:248::-;2998:6;3006;3059:2;3047:9;3038:7;3034:23;3030:32;3027:52;;;3075:1;3072;3065:12;3027:52;3111:9;3098:23;3088:33;;3140:35;3171:2;3160:9;3156:18;3140:35;:::i;:::-;3130:45;;2933:248;;;;;:::o;3394:385::-;3480:6;3488;3496;3504;3557:3;3545:9;3536:7;3532:23;3528:33;3525:53;;;3574:1;3571;3564:12;3525:53;-1:-1:-1;;3597:23:1;;;3667:2;3652:18;;3639:32;;-1:-1:-1;3718:2:1;3703:18;;3690:32;;3769:2;3754:18;3741:32;;-1:-1:-1;3394:385:1;-1:-1:-1;3394:385:1:o;3784:180::-;3840:6;3893:2;3881:9;3872:7;3868:23;3864:32;3861:52;;;3909:1;3906;3899:12;3861:52;3932:26;3948:9;3932:26;:::i;3969:388::-;4037:6;4045;4098:2;4086:9;4077:7;4073:23;4069:32;4066:52;;;4114:1;4111;4104:12;4066:52;4153:9;4140:23;4172:31;4197:5;4172:31;:::i;:::-;4222:5;-1:-1:-1;4279:2:1;4264:18;;4251:32;4292:33;4251:32;4292:33;:::i;:::-;4344:7;4334:17;;;3969:388;;;;;:::o;4362:380::-;4441:1;4437:12;;;;4484;;;4505:61;;4559:4;4551:6;4547:17;4537:27;;4505:61;4612:2;4604:6;4601:14;4581:18;4578:38;4575:161;;;4658:10;4653:3;4649:20;4646:1;4639:31;4693:4;4690:1;4683:15;4721:4;4718:1;4711:15;4575:161;;4362:380;;;:::o;5158:356::-;5360:2;5342:21;;;5379:18;;;5372:30;5438:34;5433:2;5418:18;;5411:62;5505:2;5490:18;;5158:356::o;5875:127::-;5936:10;5931:3;5927:20;5924:1;5917:31;5967:4;5964:1;5957:15;5991:4;5988:1;5981:15;6007:127;6068:10;6063:3;6059:20;6056:1;6049:31;6099:4;6096:1;6089:15;6123:4;6120:1;6113:15;6139:125;6179:4;6207:1;6204;6201:8;6198:34;;;6212:18;;:::i;:::-;-1:-1:-1;6249:9:1;;6139:125::o;6269:127::-;6330:10;6325:3;6321:20;6318:1;6311:31;6361:4;6358:1;6351:15;6385:4;6382:1;6375:15;6401:135;6440:3;-1:-1:-1;;6461:17:1;;6458:43;;;6481:18;;:::i;:::-;-1:-1:-1;6528:1:1;6517:13;;6401:135::o;6954:251::-;7024:6;7077:2;7065:9;7056:7;7052:23;7048:32;7045:52;;;7093:1;7090;7083:12;7045:52;7125:9;7119:16;7144:31;7169:5;7144:31;:::i;7879:128::-;7919:3;7950:1;7946:6;7943:1;7940:13;7937:39;;;7956:18;;:::i;:::-;-1:-1:-1;7992:9:1;;7879:128::o;8371:168::-;8411:7;8477:1;8473;8469:6;8465:14;8462:1;8459:21;8454:1;8447:9;8440:17;8436:45;8433:71;;;8484:18;;:::i;:::-;-1:-1:-1;8524:9:1;;8371:168::o;8902:422::-;8991:1;9034:5;8991:1;9048:270;9069:7;9059:8;9056:21;9048:270;;;9128:4;9124:1;9120:6;9116:17;9110:4;9107:27;9104:53;;;9137:18;;:::i;:::-;9187:7;9177:8;9173:22;9170:55;;;9207:16;;;;9170:55;9286:22;;;;9246:15;;;;9048:270;;;9052:3;8902:422;;;;;:::o;9329:806::-;9378:5;9408:8;9398:80;;-1:-1:-1;9449:1:1;9463:5;;9398:80;9497:4;9487:76;;-1:-1:-1;9534:1:1;9548:5;;9487:76;9579:4;9597:1;9592:59;;;;9665:1;9660:130;;;;9572:218;;9592:59;9622:1;9613:10;;9636:5;;;9660:130;9697:3;9687:8;9684:17;9681:43;;;9704:18;;:::i;:::-;-1:-1:-1;;9760:1:1;9746:16;;9775:5;;9572:218;;9874:2;9864:8;9861:16;9855:3;9849:4;9846:13;9842:36;9836:2;9826:8;9823:16;9818:2;9812:4;9809:12;9805:35;9802:77;9799:159;;;-1:-1:-1;9911:19:1;;;9943:5;;9799:159;9990:34;10015:8;10009:4;9990:34;:::i;:::-;10060:6;10056:1;10052:6;10048:19;10039:7;10036:32;10033:58;;;10071:18;;:::i;:::-;10109:20;;9329:806;-1:-1:-1;;;9329:806:1:o;10140:140::-;10198:5;10227:47;10268:4;10258:8;10254:19;10248:4;10227:47;:::i;13401:217::-;13441:1;13467;13457:132;;13511:10;13506:3;13502:20;13499:1;13492:31;13546:4;13543:1;13536:15;13574:4;13571:1;13564:15;13457:132;-1:-1:-1;13603:9:1;;13401:217::o;13755:980::-;14017:4;14065:3;14054:9;14050:19;14096:6;14085:9;14078:25;14122:2;14160:6;14155:2;14144:9;14140:18;14133:34;14203:3;14198:2;14187:9;14183:18;14176:31;14227:6;14262;14256:13;14293:6;14285;14278:22;14331:3;14320:9;14316:19;14309:26;;14370:2;14362:6;14358:15;14344:29;;14391:1;14401:195;14415:6;14412:1;14409:13;14401:195;;;14480:13;;-1:-1:-1;;;;;14476:39:1;14464:52;;14571:15;;;;14536:12;;;;14512:1;14430:9;14401:195;;;-1:-1:-1;;;;;;;14652:32:1;;;;14647:2;14632:18;;14625:60;-1:-1:-1;;;14716:3:1;14701:19;14694:35;14613:3;13755:980;-1:-1:-1;;;13755:980:1:o;15352:306::-;15440:6;15448;15456;15509:2;15497:9;15488:7;15484:23;15480:32;15477:52;;;15525:1;15522;15515:12;15477:52;15554:9;15548:16;15538:26;;15604:2;15593:9;15589:18;15583:25;15573:35;;15648:2;15637:9;15633:18;15627:25;15617:35;;15352:306;;;;;:::o

Swarm Source

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