ETH Price: $2,523.35 (+0.04%)

Token

PENGO (PENGO)
 

Overview

Max Total Supply

100,000,000,000,000 PENGO

Holders

49

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
228,794,759,273.697300689 PENGO

Value
$0.00
0x240DDB16c5E4257505B0b6a7820314e483Cd1715
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:
PENGO

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.6;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    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);
}

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards 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).
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @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");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        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.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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;
    }
}

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

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 lotteryline, 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;
}

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 lotteryline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint lotteryline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint lotteryline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint lotteryline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint lotteryline,
        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 lotteryline,
        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 lotteryline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint lotteryline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint lotteryline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint lotteryline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint lotteryline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint lotteryline)
        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);
}

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

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

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

    address[] private _addressList;
    mapping (address => bool) private _AddressExists;
    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 100000000000000 *  10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
	
	address private _lotteryWallet = payable(0x4D8a3108C4e9038dC03C2fD112B63bbc9c7462Cf);
	address payable private _developerWallet = payable(0x8A0Abd080c890f5b165e6C9885418eD1B605ABd5);

    string private _name = "PENGO";
    string private _symbol = "PENGO";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _developerFee = 4;
    uint256 private _previousdeveloperFee = _developerFee;
	
	uint256 public _lotteryFee = 2;
    uint256 private _previouslotteryFee = _lotteryFee;
	
    uint256 public _liquidityFee = 1;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public _shouldSwapToBNB = false;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = 100000000000000 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 5000000000 * 10**9;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor () {
        _rOwned[owner()] = _rTotal;

		addAddress(owner());

       
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
      
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        emit Transfer(address(0), owner(), _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 setlotteryAddress(address payable lottery) public onlyOwner() {
        _lotteryWallet = lottery;
	}
	function setdeveloperAddress(address payable developer) public onlyOwner() {
        _developerWallet = developer;
	}	
	function _getdeveloperWallet() public view virtual returns (address) {
        return _developerWallet;
	}
	
	function _getlotteryWallet() public view virtual returns (address) {
        return _lotteryWallet;
	}
	
    function setshouldSwapToBNB(bool enabled) public onlyOwner() {
        _shouldSwapToBNB = enabled;
    }

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

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already included");
        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, uint256 tdeveloper, uint256 tlottery) = _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);
        _takedeveloper(tdeveloper);
		_takelottery(tlottery);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function burn(uint256 _value) public{
        _burn(msg.sender, _value);
    }
    
    function _burn(address _who, uint256 _value) internal {
        require(_value <= _rOwned[_who]);
        _rOwned[_who] = _rOwned[_who].sub(_value);
        _tTotal = _tTotal.sub(_value);
        emit Transfer(_who, address(0), _value);
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }

    function setdeveloperFeePercent(uint256 developerFee) external onlyOwner() {
        _developerFee = developerFee;
    }

	function setlotteryFeePercent(uint256 lotteryFee) external onlyOwner() {
        _lotteryFee = lotteryFee;
    }

    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }

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

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

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

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

    struct TData {
        uint256 tAmount;
        uint256 tFee;
        uint256 tLiquidity;
        uint256 tdeveloper;
        uint256 tlottery;
        uint256 currentRate;
    }


    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, TData memory data) = _getTValues(tAmount);
        data.tAmount = tAmount;
        data.currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(data);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, data.tFee, data.tLiquidity, data.tdeveloper, data.tlottery);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, TData memory) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);

        uint256 tdeveloper = calculatedeveloperFee(tAmount);
		uint256 tlottery = calculatelotteryFee(tAmount);

        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub(tdeveloper).sub(tlottery);
        return (tTransferAmount, TData(0, tFee, tLiquidity, tdeveloper, tlottery, 0));
    }

    function _getRValues( TData memory _data) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = _data.tAmount.mul(_data.currentRate);
        uint256 rFee = _data.tFee.mul(_data.currentRate);
        uint256 rLiquidity = _data.tLiquidity.mul(_data.currentRate);
        uint256 rdeveloper = _data.tdeveloper.mul(_data.currentRate);
		uint256 rlottery = _data.tlottery.mul(_data.currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rdeveloper).sub(rlottery);
        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 addAddress(address adr) private {
        if(_AddressExists[adr])
            return;
        _AddressExists[adr] = true;
        _addressList.push(adr);
    }
	function _takedeveloper(uint256 tdeveloper) private {
        uint256 currentRate =  _getRate();
        uint256 rdeveloper = tdeveloper.mul(currentRate);
        _rOwned[_developerWallet] = _rOwned[_developerWallet].add(rdeveloper);
            if(_isExcluded[_developerWallet])
                _tOwned[_developerWallet] = _tOwned[_developerWallet].add(tdeveloper);
        
	}
	function _takelottery(uint256 tlottery) private {
        uint256 currentRate =  _getRate();
        uint256 rlottery = tlottery.mul(currentRate);
        _rOwned[_lotteryWallet] = _rOwned[_lotteryWallet].add(rlottery);
        if(_isExcluded[_lotteryWallet])
        _tOwned[_lotteryWallet] = _tOwned[_lotteryWallet].add(tlottery);
    
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculatedeveloperFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_developerFee).div(
            10**2
        );
    }
	
	function calculatelotteryFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_lotteryFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousdeveloperFee = _developerFee;
		_previouslotteryFee = _lotteryFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _developerFee = 0;
		_lotteryFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _developerFee = _previousdeveloperFee;
		_lotteryFee = _previouslotteryFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

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

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

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

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
     
        //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;
        }
		
		addAddress(from);
		addAddress(to);
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into 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();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

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

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

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

}

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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_developerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getdeveloperWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getlotteryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lotteryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_shouldSwapToBNB","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"developer","type":"address"}],"name":"setdeveloperAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"developerFee","type":"uint256"}],"name":"setdeveloperFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"lottery","type":"address"}],"name":"setlotteryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lotteryFee","type":"uint256"}],"name":"setlotteryFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setshouldSwapToBNB","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"}]

60c060405269152d02c7e14af6800000600981905562000022906000196200060e565b6200003090600019620005ab565b600a55600c80546001600160a01b0319908116734d8a3108c4e9038dc03c2fd112b63bbc9c7462cf17909155600d8054909116738a0abd080c890f5b165e6c9885418ed1b605abd51790556040805180820190915260058082526450454e474f60d81b6020909201918252620000a991600e91620004d3565b506040805180820190915260058082526450454e474f60d81b6020909201918252620000d891600f91620004d3565b506010805460ff19166009179055600260118190556012819055600460138190556014556015819055601655600160178190556018556019805462ffff0019166201000017905569152d02c7e14af6800000601a55674563918244f40000601b553480156200014657600080fd5b50600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600a5460036000620001a06000546001600160a01b031690565b6001600160a01b03168152602081019190915260400160002055620001d7620001d16000546001600160a01b031690565b6200044b565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022a57600080fd5b505afa1580156200023f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000265919062000579565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ae57600080fd5b505afa158015620002c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e9919062000579565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200033257600080fd5b505af115801562000347573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036d919062000579565b6001600160601b0319606091821b811660a0529082901b16608052600160066000620003a16000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003f46000546001600160a01b031690565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040516200043c91815260200190565b60405180910390a35062000631565b6001600160a01b03811660009081526002602052604090205460ff1615620004705750565b6001600160a01b03166000818152600260205260408120805460ff191660019081179091558054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b0319169091179055565b828054620004e190620005d1565b90600052602060002090601f01602090048101928262000505576000855562000550565b82601f106200052057805160ff191683800117855562000550565b8280016001018555821562000550579182015b828111156200055057825182559160200191906001019062000533565b506200055e92915062000562565b5090565b5b808211156200055e576000815560010162000563565b6000602082840312156200058c57600080fd5b81516001600160a01b0381168114620005a457600080fd5b9392505050565b600082821015620005cc57634e487b7160e01b600052601160045260246000fd5b500390565b600181811c90821680620005e657607f821691505b602082108114156200060857634e487b7160e01b600052602260045260246000fd5b50919050565b6000826200062c57634e487b7160e01b600052601260045260246000fd5b500690565b60805160601c60a05160601c6127886200065d60003960006105330152600061033001526127886000f3fe6080604052600436106102765760003560e01c806352390c021161014f57806395d89b41116100c1578063d1f7979f1161007a578063d1f7979f1461079a578063d543dbeb146107b8578063da7034ff146107d8578063dd62ed3e146107f8578063ea2f0b371461083e578063f2fde38b1461085e57600080fd5b806395d89b41146106e6578063a457c2d7146106fb578063a9059cbb1461071b578063aff8b0e01461073b578063c49b9a801461075a578063c806c2e01461077a57600080fd5b8063715018a611610113578063715018a6146106245780637d1db4a51461063957806388f820201461064f5780638da5cb5b146106885780638ee88c53146106a657806394569826146106c657600080fd5b806352390c02146105755780635342acb41461059557806362963c89146105ce5780636bc87c3a146105ee57806370a082311461060457600080fd5b80633685d419116101e857806342966c68116101ac57806342966c68146104ab578063437823ec146104cb5780634549b039146104eb57806348de478e1461050b57806349bd5a5e146105215780634a74bb021461055557600080fd5b80633685d4191461041f578063395093511461043f5780633b124fe71461045f5780633bd5d17314610475578063405433391461049557600080fd5b806318160ddd1161023a57806318160ddd1461036a5780631b74e7701461037f57806323b872dd1461039d5780632d838119146103bd578063313ce567146103dd57806331914648146103ff57600080fd5b8063061c82d01461028257806306fdde03146102a4578063095ea7b3146102cf57806313114a9d146102ff5780631694505e1461031e57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004612519565b61087e565b005b3480156102b057600080fd5b506102b96108b6565b6040516102c6919061255e565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea3660046124d2565b610948565b60405190151581526020016102c6565b34801561030b57600080fd5b50600b545b6040519081526020016102c6565b34801561032a57600080fd5b506103527f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102c6565b34801561037657600080fd5b50600954610310565b34801561038b57600080fd5b50600c546001600160a01b0316610352565b3480156103a957600080fd5b506102ef6103b8366004612491565b61095f565b3480156103c957600080fd5b506103106103d8366004612519565b6109c8565b3480156103e957600080fd5b5060105460405160ff90911681526020016102c6565b34801561040b57600080fd5b506102a261041a36600461243b565b610a4c565b34801561042b57600080fd5b506102a261043a36600461243b565b610a98565b34801561044b57600080fd5b506102ef61045a3660046124d2565b610c4f565b34801561046b57600080fd5b5061031060115481565b34801561048157600080fd5b506102a2610490366004612519565b610c85565b3480156104a157600080fd5b5061031060155481565b3480156104b757600080fd5b506102a26104c6366004612519565b610d73565b3480156104d757600080fd5b506102a26104e636600461243b565b610d80565b3480156104f757600080fd5b50610310610506366004612532565b610dce565b34801561051757600080fd5b5061031060135481565b34801561052d57600080fd5b506103527f000000000000000000000000000000000000000000000000000000000000000081565b34801561056157600080fd5b506019546102ef9062010000900460ff1681565b34801561058157600080fd5b506102a261059036600461243b565b610e5f565b3480156105a157600080fd5b506102ef6105b036600461243b565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156105da57600080fd5b506102a26105e936600461243b565b610fb2565b3480156105fa57600080fd5b5061031060175481565b34801561061057600080fd5b5061031061061f36600461243b565b610ffe565b34801561063057600080fd5b506102a261105d565b34801561064557600080fd5b50610310601a5481565b34801561065b57600080fd5b506102ef61066a36600461243b565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561069457600080fd5b506000546001600160a01b0316610352565b3480156106b257600080fd5b506102a26106c1366004612519565b6110d1565b3480156106d257600080fd5b506102a26106e1366004612519565b611100565b3480156106f257600080fd5b506102b961112f565b34801561070757600080fd5b506102ef6107163660046124d2565b61113e565b34801561072757600080fd5b506102ef6107363660046124d2565b61118d565b34801561074757600080fd5b506019546102ef90610100900460ff1681565b34801561076657600080fd5b506102a26107753660046124fe565b61119a565b34801561078657600080fd5b506102a2610795366004612519565b61121a565b3480156107a657600080fd5b50600d546001600160a01b0316610352565b3480156107c457600080fd5b506102a26107d3366004612519565b611249565b3480156107e457600080fd5b506102a26107f33660046124fe565b611299565b34801561080457600080fd5b50610310610813366004612458565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561084a57600080fd5b506102a261085936600461243b565b6112dd565b34801561086a57600080fd5b506102a261087936600461243b565b611328565b6000546001600160a01b031633146108b15760405162461bcd60e51b81526004016108a8906125b3565b60405180910390fd5b601155565b6060600e80546108c590612658565b80601f01602080910402602001604051908101604052809291908181526020018280546108f190612658565b801561093e5780601f106109135761010080835404028352916020019161093e565b820191906000526020600020905b81548152906001019060200180831161092157829003601f168201915b5050505050905090565b6000610955338484611412565b5060015b92915050565b600061096c848484611536565b6109be84336109b985604051806060016040528060288152602001612706602891396001600160a01b038a166000908152600560209081526040808320338452909152902054919061177d565b611412565b5060019392505050565b6000600a54821115610a2f5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016108a8565b6000610a396117a9565b9050610a4583826117cc565b9392505050565b6000546001600160a01b03163314610a765760405162461bcd60e51b81526004016108a8906125b3565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610ac25760405162461bcd60e51b81526004016108a8906125b3565b6001600160a01b03811660009081526007602052604090205460ff16610b2a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c75646564000000000060448201526064016108a8565b60005b600854811015610c4b57816001600160a01b031660088281548110610b5457610b546126da565b6000918252602090912001546001600160a01b03161415610c395760088054610b7f90600190612641565b81548110610b8f57610b8f6126da565b600091825260209091200154600880546001600160a01b039092169183908110610bbb57610bbb6126da565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c1357610c136126c4565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c4381612693565b915050610b2d565b5050565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916109559185906109b990866117d8565b3360008181526007602052604090205460ff1615610cfa5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016108a8565b6000610d05836117e4565b5050506001600160a01b038716600090815260036020526040902054949550610d359493508592505061185c9050565b6001600160a01b038316600090815260036020526040902055600a54610d5b908261185c565b600a55600b54610d6b90846117d8565b600b55505050565b610d7d3382611868565b50565b6000546001600160a01b03163314610daa5760405162461bcd60e51b81526004016108a8906125b3565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610e225760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016108a8565b81610e43576000610e32846117e4565b509597506109599650505050505050565b6000610e4e846117e4565b509497506109599650505050505050565b6000546001600160a01b03163314610e895760405162461bcd60e51b81526004016108a8906125b3565b6001600160a01b03811660009081526007602052604090205460ff1615610ef25760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016108a8565b6001600160a01b03811660009081526003602052604090205415610f4c576001600160a01b038116600090815260036020526040902054610f32906109c8565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b03163314610fdc5760405162461bcd60e51b81526004016108a8906125b3565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526007602052604081205460ff161561103b57506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610959906109c8565b6000546001600160a01b031633146110875760405162461bcd60e51b81526004016108a8906125b3565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146110fb5760405162461bcd60e51b81526004016108a8906125b3565b601755565b6000546001600160a01b0316331461112a5760405162461bcd60e51b81526004016108a8906125b3565b601355565b6060600f80546108c590612658565b600061095533846109b98560405180606001604052806025815260200161272e602591393360009081526005602090815260408083206001600160a01b038d168452909152902054919061177d565b6000610955338484611536565b6000546001600160a01b031633146111c45760405162461bcd60e51b81526004016108a8906125b3565b60198054821515620100000262ff0000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061120f90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146112445760405162461bcd60e51b81526004016108a8906125b3565b601555565b6000546001600160a01b031633146112735760405162461bcd60e51b81526004016108a8906125b3565b611293606461128d8360095461191e90919063ffffffff16565b906117cc565b601a5550565b6000546001600160a01b031633146112c35760405162461bcd60e51b81526004016108a8906125b3565b601980549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146113075760405162461bcd60e51b81526004016108a8906125b3565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b031633146113525760405162461bcd60e51b81526004016108a8906125b3565b6001600160a01b0381166113b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a8565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166114745760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108a8565b6001600160a01b0382166114d55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108a8565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661159a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108a8565b6001600160a01b0382166115fc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108a8565b6000811161165e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016108a8565b6000546001600160a01b0384811691161480159061168a57506000546001600160a01b03838116911614155b156116f257601a548111156116f25760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016108a8565b60006116fd30610ffe565b9050601a54811061170d5750601a545b6001600160a01b03841660009081526006602052604090205460019060ff168061174f57506001600160a01b03841660009081526006602052604090205460ff165b15611758575060005b6117618561192a565b61176a8461192a565b611776858585846119b1565b5050505050565b600081848411156117a15760405162461bcd60e51b81526004016108a8919061255e565b505050900390565b60008060006117b6611b3a565b90925090506117c582826117cc565b9250505090565b6000610a458284612600565b6000610a4582846125e8565b6000806000806000806000806000806117fc8b611cbc565b8c8152909250905061180c6117a9565b60a08201526000808061181e84611d85565b925092509250828282878760200151886040015189606001518a608001519c509c509c509c509c509c509c509c505050505050919395975091939597565b6000610a458284612641565b6001600160a01b03821660009081526003602052604090205481111561188d57600080fd5b6001600160a01b0382166000908152600360205260409020546118b0908261185c565b6001600160a01b0383166000908152600360205260409020556009546118d6908261185c565b6009556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000610a458284612622565b6001600160a01b03811660009081526002602052604090205460ff161561194e5750565b6001600160a01b03166000818152600260205260408120805460ff191660019081179091558054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b0319169091179055565b806119be576119be611e4a565b6001600160a01b03841660009081526007602052604090205460ff1680156119ff57506001600160a01b03831660009081526007602052604090205460ff16155b15611a1457611a0f848484611e8d565b611b12565b6001600160a01b03841660009081526007602052604090205460ff16158015611a5557506001600160a01b03831660009081526007602052604090205460ff165b15611a6557611a0f848484611fe0565b6001600160a01b03841660009081526007602052604090205460ff16158015611aa757506001600160a01b03831660009081526007602052604090205460ff16155b15611ab757611a0f8484846120a2565b6001600160a01b03841660009081526007602052604090205460ff168015611af757506001600160a01b03831660009081526007602052604090205460ff165b15611b0757611a0f8484846120ff565b611b128484846120a2565b80611b3457611b34601254601155601454601355601654601555601854601755565b50505050565b600a546009546000918291825b600854811015611c8c57826003600060088481548110611b6957611b696126da565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611bd45750816004600060088481548110611bad57611bad6126da565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611bea57600a54600954945094505050509091565b611c306003600060088481548110611c0457611c046126da565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061185c565b9250611c786004600060088481548110611c4c57611c4c6126da565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061185c565b915080611c8481612693565b915050611b47565b50600954600a54611c9c916117cc565b821015611cb357600a546009549350935050509091565b90939092509050565b6000611cf76040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6000611d028461218b565b90506000611d0f856121a7565b90506000611d1c866121c3565b90506000611d29876121df565b90506000611d4582611d3f858188818e8c61185c565b9061185c565b9050806040518060c00160405280600081526020018781526020018681526020018581526020018481526020016000815250965096505050505050915091565b600080600080611da68560a00151866000015161191e90919063ffffffff16565b90506000611dc58660a00151876020015161191e90919063ffffffff16565b90506000611de48760a00151886040015161191e90919063ffffffff16565b90506000611e038860a00151896060015161191e90919063ffffffff16565b90506000611e228960a001518a6080015161191e90919063ffffffff16565b90506000611e3882611d3f858188818c8c61185c565b959a9599509397509395505050505050565b601154158015611e5a5750601754155b15611e6157565b601180546012556013805460145560158054601655601780546018556000938490559183905582905555565b600080600080600080600080611ea2896117e4565b97509750975097509750975097509750611eea89600460008e6001600160a01b03166001600160a01b031681526020019081526020016000205461185c90919063ffffffff16565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054611f19908961185c565b6001600160a01b03808d1660009081526003602052604080822093909355908c1681522054611f4890886117d8565b6001600160a01b038b16600090815260036020526040902055611f6a836121fb565b611f7382612284565b611f7c81612343565b611f868685612402565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051611fcb91815260200190565b60405180910390a35050505050505050505050565b600080600080600080600080611ff5896117e4565b9750975097509750975097509750975061203d88600360008e6001600160a01b03166001600160a01b031681526020019081526020016000205461185c90919063ffffffff16565b6001600160a01b03808d16600090815260036020908152604080832094909455918d1681526004909152205461207390866117d8565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054611f4890886117d8565b6000806000806000806000806120b7896117e4565b97509750975097509750975097509750611f1988600360008e6001600160a01b03166001600160a01b031681526020019081526020016000205461185c90919063ffffffff16565b600080600080600080600080612114896117e4565b9750975097509750975097509750975061215c89600460008e6001600160a01b03166001600160a01b031681526020019081526020016000205461185c90919063ffffffff16565b6001600160a01b038c1660009081526004602090815260408083209390935560039052205461203d908961185c565b6000610959606461128d6011548561191e90919063ffffffff16565b6000610959606461128d6017548561191e90919063ffffffff16565b6000610959606461128d6013548561191e90919063ffffffff16565b6000610959606461128d6015548561191e90919063ffffffff16565b60006122056117a9565b90506000612213838361191e565b3060009081526003602052604090205490915061223090826117d8565b3060009081526003602090815260408083209390935560079052205460ff161561227f573060009081526004602052604090205461226e90846117d8565b306000908152600460205260409020555b505050565b600061228e6117a9565b9050600061229c838361191e565b600d546001600160a01b03166000908152600360205260409020549091506122c490826117d8565b600d80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff161561227f57600d546001600160a01b031660009081526004602052604090205461232390846117d8565b600d546001600160a01b0316600090815260046020526040902055505050565b600061234d6117a9565b9050600061235b838361191e565b600c546001600160a01b031660009081526003602052604090205490915061238390826117d8565b600c80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff161561227f57600c546001600160a01b03166000908152600460205260409020546123e290846117d8565b600c546001600160a01b0316600090815260046020526040902055505050565b600a5461240f908361185c565b600a55600b5461241f90826117d8565b600b555050565b8035801515811461243657600080fd5b919050565b60006020828403121561244d57600080fd5b8135610a45816126f0565b6000806040838503121561246b57600080fd5b8235612476816126f0565b91506020830135612486816126f0565b809150509250929050565b6000806000606084860312156124a657600080fd5b83356124b1816126f0565b925060208401356124c1816126f0565b929592945050506040919091013590565b600080604083850312156124e557600080fd5b82356124f0816126f0565b946020939093013593505050565b60006020828403121561251057600080fd5b610a4582612426565b60006020828403121561252b57600080fd5b5035919050565b6000806040838503121561254557600080fd5b8235915061255560208401612426565b90509250929050565b600060208083528351808285015260005b8181101561258b5785810183015185820160400152820161256f565b8181111561259d576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156125fb576125fb6126ae565b500190565b60008261261d57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561263c5761263c6126ae565b500290565b600082821015612653576126536126ae565b500390565b600181811c9082168061266c57607f821691505b6020821081141561268d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126a7576126a76126ae565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610d7d57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ae5d053013f72f72da76f0f68aaf9a9c9ac31bf16a5cf8775a4f70dcf69ee3c264736f6c63430008060033

Deployed Bytecode

0x6080604052600436106102765760003560e01c806352390c021161014f57806395d89b41116100c1578063d1f7979f1161007a578063d1f7979f1461079a578063d543dbeb146107b8578063da7034ff146107d8578063dd62ed3e146107f8578063ea2f0b371461083e578063f2fde38b1461085e57600080fd5b806395d89b41146106e6578063a457c2d7146106fb578063a9059cbb1461071b578063aff8b0e01461073b578063c49b9a801461075a578063c806c2e01461077a57600080fd5b8063715018a611610113578063715018a6146106245780637d1db4a51461063957806388f820201461064f5780638da5cb5b146106885780638ee88c53146106a657806394569826146106c657600080fd5b806352390c02146105755780635342acb41461059557806362963c89146105ce5780636bc87c3a146105ee57806370a082311461060457600080fd5b80633685d419116101e857806342966c68116101ac57806342966c68146104ab578063437823ec146104cb5780634549b039146104eb57806348de478e1461050b57806349bd5a5e146105215780634a74bb021461055557600080fd5b80633685d4191461041f578063395093511461043f5780633b124fe71461045f5780633bd5d17314610475578063405433391461049557600080fd5b806318160ddd1161023a57806318160ddd1461036a5780631b74e7701461037f57806323b872dd1461039d5780632d838119146103bd578063313ce567146103dd57806331914648146103ff57600080fd5b8063061c82d01461028257806306fdde03146102a4578063095ea7b3146102cf57806313114a9d146102ff5780631694505e1461031e57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004612519565b61087e565b005b3480156102b057600080fd5b506102b96108b6565b6040516102c6919061255e565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea3660046124d2565b610948565b60405190151581526020016102c6565b34801561030b57600080fd5b50600b545b6040519081526020016102c6565b34801561032a57600080fd5b506103527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102c6565b34801561037657600080fd5b50600954610310565b34801561038b57600080fd5b50600c546001600160a01b0316610352565b3480156103a957600080fd5b506102ef6103b8366004612491565b61095f565b3480156103c957600080fd5b506103106103d8366004612519565b6109c8565b3480156103e957600080fd5b5060105460405160ff90911681526020016102c6565b34801561040b57600080fd5b506102a261041a36600461243b565b610a4c565b34801561042b57600080fd5b506102a261043a36600461243b565b610a98565b34801561044b57600080fd5b506102ef61045a3660046124d2565b610c4f565b34801561046b57600080fd5b5061031060115481565b34801561048157600080fd5b506102a2610490366004612519565b610c85565b3480156104a157600080fd5b5061031060155481565b3480156104b757600080fd5b506102a26104c6366004612519565b610d73565b3480156104d757600080fd5b506102a26104e636600461243b565b610d80565b3480156104f757600080fd5b50610310610506366004612532565b610dce565b34801561051757600080fd5b5061031060135481565b34801561052d57600080fd5b506103527f0000000000000000000000001f8e098d9fd288656955de689d41cfc29a612b7e81565b34801561056157600080fd5b506019546102ef9062010000900460ff1681565b34801561058157600080fd5b506102a261059036600461243b565b610e5f565b3480156105a157600080fd5b506102ef6105b036600461243b565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156105da57600080fd5b506102a26105e936600461243b565b610fb2565b3480156105fa57600080fd5b5061031060175481565b34801561061057600080fd5b5061031061061f36600461243b565b610ffe565b34801561063057600080fd5b506102a261105d565b34801561064557600080fd5b50610310601a5481565b34801561065b57600080fd5b506102ef61066a36600461243b565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561069457600080fd5b506000546001600160a01b0316610352565b3480156106b257600080fd5b506102a26106c1366004612519565b6110d1565b3480156106d257600080fd5b506102a26106e1366004612519565b611100565b3480156106f257600080fd5b506102b961112f565b34801561070757600080fd5b506102ef6107163660046124d2565b61113e565b34801561072757600080fd5b506102ef6107363660046124d2565b61118d565b34801561074757600080fd5b506019546102ef90610100900460ff1681565b34801561076657600080fd5b506102a26107753660046124fe565b61119a565b34801561078657600080fd5b506102a2610795366004612519565b61121a565b3480156107a657600080fd5b50600d546001600160a01b0316610352565b3480156107c457600080fd5b506102a26107d3366004612519565b611249565b3480156107e457600080fd5b506102a26107f33660046124fe565b611299565b34801561080457600080fd5b50610310610813366004612458565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561084a57600080fd5b506102a261085936600461243b565b6112dd565b34801561086a57600080fd5b506102a261087936600461243b565b611328565b6000546001600160a01b031633146108b15760405162461bcd60e51b81526004016108a8906125b3565b60405180910390fd5b601155565b6060600e80546108c590612658565b80601f01602080910402602001604051908101604052809291908181526020018280546108f190612658565b801561093e5780601f106109135761010080835404028352916020019161093e565b820191906000526020600020905b81548152906001019060200180831161092157829003601f168201915b5050505050905090565b6000610955338484611412565b5060015b92915050565b600061096c848484611536565b6109be84336109b985604051806060016040528060288152602001612706602891396001600160a01b038a166000908152600560209081526040808320338452909152902054919061177d565b611412565b5060019392505050565b6000600a54821115610a2f5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016108a8565b6000610a396117a9565b9050610a4583826117cc565b9392505050565b6000546001600160a01b03163314610a765760405162461bcd60e51b81526004016108a8906125b3565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610ac25760405162461bcd60e51b81526004016108a8906125b3565b6001600160a01b03811660009081526007602052604090205460ff16610b2a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c75646564000000000060448201526064016108a8565b60005b600854811015610c4b57816001600160a01b031660088281548110610b5457610b546126da565b6000918252602090912001546001600160a01b03161415610c395760088054610b7f90600190612641565b81548110610b8f57610b8f6126da565b600091825260209091200154600880546001600160a01b039092169183908110610bbb57610bbb6126da565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c1357610c136126c4565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c4381612693565b915050610b2d565b5050565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916109559185906109b990866117d8565b3360008181526007602052604090205460ff1615610cfa5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016108a8565b6000610d05836117e4565b5050506001600160a01b038716600090815260036020526040902054949550610d359493508592505061185c9050565b6001600160a01b038316600090815260036020526040902055600a54610d5b908261185c565b600a55600b54610d6b90846117d8565b600b55505050565b610d7d3382611868565b50565b6000546001600160a01b03163314610daa5760405162461bcd60e51b81526004016108a8906125b3565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610e225760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016108a8565b81610e43576000610e32846117e4565b509597506109599650505050505050565b6000610e4e846117e4565b509497506109599650505050505050565b6000546001600160a01b03163314610e895760405162461bcd60e51b81526004016108a8906125b3565b6001600160a01b03811660009081526007602052604090205460ff1615610ef25760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016108a8565b6001600160a01b03811660009081526003602052604090205415610f4c576001600160a01b038116600090815260036020526040902054610f32906109c8565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b03163314610fdc5760405162461bcd60e51b81526004016108a8906125b3565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526007602052604081205460ff161561103b57506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610959906109c8565b6000546001600160a01b031633146110875760405162461bcd60e51b81526004016108a8906125b3565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146110fb5760405162461bcd60e51b81526004016108a8906125b3565b601755565b6000546001600160a01b0316331461112a5760405162461bcd60e51b81526004016108a8906125b3565b601355565b6060600f80546108c590612658565b600061095533846109b98560405180606001604052806025815260200161272e602591393360009081526005602090815260408083206001600160a01b038d168452909152902054919061177d565b6000610955338484611536565b6000546001600160a01b031633146111c45760405162461bcd60e51b81526004016108a8906125b3565b60198054821515620100000262ff0000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061120f90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146112445760405162461bcd60e51b81526004016108a8906125b3565b601555565b6000546001600160a01b031633146112735760405162461bcd60e51b81526004016108a8906125b3565b611293606461128d8360095461191e90919063ffffffff16565b906117cc565b601a5550565b6000546001600160a01b031633146112c35760405162461bcd60e51b81526004016108a8906125b3565b601980549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146113075760405162461bcd60e51b81526004016108a8906125b3565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b031633146113525760405162461bcd60e51b81526004016108a8906125b3565b6001600160a01b0381166113b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a8565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166114745760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108a8565b6001600160a01b0382166114d55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108a8565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661159a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108a8565b6001600160a01b0382166115fc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108a8565b6000811161165e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016108a8565b6000546001600160a01b0384811691161480159061168a57506000546001600160a01b03838116911614155b156116f257601a548111156116f25760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016108a8565b60006116fd30610ffe565b9050601a54811061170d5750601a545b6001600160a01b03841660009081526006602052604090205460019060ff168061174f57506001600160a01b03841660009081526006602052604090205460ff165b15611758575060005b6117618561192a565b61176a8461192a565b611776858585846119b1565b5050505050565b600081848411156117a15760405162461bcd60e51b81526004016108a8919061255e565b505050900390565b60008060006117b6611b3a565b90925090506117c582826117cc565b9250505090565b6000610a458284612600565b6000610a4582846125e8565b6000806000806000806000806000806117fc8b611cbc565b8c8152909250905061180c6117a9565b60a08201526000808061181e84611d85565b925092509250828282878760200151886040015189606001518a608001519c509c509c509c509c509c509c509c505050505050919395975091939597565b6000610a458284612641565b6001600160a01b03821660009081526003602052604090205481111561188d57600080fd5b6001600160a01b0382166000908152600360205260409020546118b0908261185c565b6001600160a01b0383166000908152600360205260409020556009546118d6908261185c565b6009556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000610a458284612622565b6001600160a01b03811660009081526002602052604090205460ff161561194e5750565b6001600160a01b03166000818152600260205260408120805460ff191660019081179091558054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b0319169091179055565b806119be576119be611e4a565b6001600160a01b03841660009081526007602052604090205460ff1680156119ff57506001600160a01b03831660009081526007602052604090205460ff16155b15611a1457611a0f848484611e8d565b611b12565b6001600160a01b03841660009081526007602052604090205460ff16158015611a5557506001600160a01b03831660009081526007602052604090205460ff165b15611a6557611a0f848484611fe0565b6001600160a01b03841660009081526007602052604090205460ff16158015611aa757506001600160a01b03831660009081526007602052604090205460ff16155b15611ab757611a0f8484846120a2565b6001600160a01b03841660009081526007602052604090205460ff168015611af757506001600160a01b03831660009081526007602052604090205460ff165b15611b0757611a0f8484846120ff565b611b128484846120a2565b80611b3457611b34601254601155601454601355601654601555601854601755565b50505050565b600a546009546000918291825b600854811015611c8c57826003600060088481548110611b6957611b696126da565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611bd45750816004600060088481548110611bad57611bad6126da565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611bea57600a54600954945094505050509091565b611c306003600060088481548110611c0457611c046126da565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061185c565b9250611c786004600060088481548110611c4c57611c4c6126da565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061185c565b915080611c8481612693565b915050611b47565b50600954600a54611c9c916117cc565b821015611cb357600a546009549350935050509091565b90939092509050565b6000611cf76040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6000611d028461218b565b90506000611d0f856121a7565b90506000611d1c866121c3565b90506000611d29876121df565b90506000611d4582611d3f858188818e8c61185c565b9061185c565b9050806040518060c00160405280600081526020018781526020018681526020018581526020018481526020016000815250965096505050505050915091565b600080600080611da68560a00151866000015161191e90919063ffffffff16565b90506000611dc58660a00151876020015161191e90919063ffffffff16565b90506000611de48760a00151886040015161191e90919063ffffffff16565b90506000611e038860a00151896060015161191e90919063ffffffff16565b90506000611e228960a001518a6080015161191e90919063ffffffff16565b90506000611e3882611d3f858188818c8c61185c565b959a9599509397509395505050505050565b601154158015611e5a5750601754155b15611e6157565b601180546012556013805460145560158054601655601780546018556000938490559183905582905555565b600080600080600080600080611ea2896117e4565b97509750975097509750975097509750611eea89600460008e6001600160a01b03166001600160a01b031681526020019081526020016000205461185c90919063ffffffff16565b6001600160a01b038c16600090815260046020908152604080832093909355600390522054611f19908961185c565b6001600160a01b03808d1660009081526003602052604080822093909355908c1681522054611f4890886117d8565b6001600160a01b038b16600090815260036020526040902055611f6a836121fb565b611f7382612284565b611f7c81612343565b611f868685612402565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051611fcb91815260200190565b60405180910390a35050505050505050505050565b600080600080600080600080611ff5896117e4565b9750975097509750975097509750975061203d88600360008e6001600160a01b03166001600160a01b031681526020019081526020016000205461185c90919063ffffffff16565b6001600160a01b03808d16600090815260036020908152604080832094909455918d1681526004909152205461207390866117d8565b6001600160a01b038b16600090815260046020908152604080832093909355600390522054611f4890886117d8565b6000806000806000806000806120b7896117e4565b97509750975097509750975097509750611f1988600360008e6001600160a01b03166001600160a01b031681526020019081526020016000205461185c90919063ffffffff16565b600080600080600080600080612114896117e4565b9750975097509750975097509750975061215c89600460008e6001600160a01b03166001600160a01b031681526020019081526020016000205461185c90919063ffffffff16565b6001600160a01b038c1660009081526004602090815260408083209390935560039052205461203d908961185c565b6000610959606461128d6011548561191e90919063ffffffff16565b6000610959606461128d6017548561191e90919063ffffffff16565b6000610959606461128d6013548561191e90919063ffffffff16565b6000610959606461128d6015548561191e90919063ffffffff16565b60006122056117a9565b90506000612213838361191e565b3060009081526003602052604090205490915061223090826117d8565b3060009081526003602090815260408083209390935560079052205460ff161561227f573060009081526004602052604090205461226e90846117d8565b306000908152600460205260409020555b505050565b600061228e6117a9565b9050600061229c838361191e565b600d546001600160a01b03166000908152600360205260409020549091506122c490826117d8565b600d80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff161561227f57600d546001600160a01b031660009081526004602052604090205461232390846117d8565b600d546001600160a01b0316600090815260046020526040902055505050565b600061234d6117a9565b9050600061235b838361191e565b600c546001600160a01b031660009081526003602052604090205490915061238390826117d8565b600c80546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff161561227f57600c546001600160a01b03166000908152600460205260409020546123e290846117d8565b600c546001600160a01b0316600090815260046020526040902055505050565b600a5461240f908361185c565b600a55600b5461241f90826117d8565b600b555050565b8035801515811461243657600080fd5b919050565b60006020828403121561244d57600080fd5b8135610a45816126f0565b6000806040838503121561246b57600080fd5b8235612476816126f0565b91506020830135612486816126f0565b809150509250929050565b6000806000606084860312156124a657600080fd5b83356124b1816126f0565b925060208401356124c1816126f0565b929592945050506040919091013590565b600080604083850312156124e557600080fd5b82356124f0816126f0565b946020939093013593505050565b60006020828403121561251057600080fd5b610a4582612426565b60006020828403121561252b57600080fd5b5035919050565b6000806040838503121561254557600080fd5b8235915061255560208401612426565b90509250929050565b600060208083528351808285015260005b8181101561258b5785810183015185820160400152820161256f565b8181111561259d576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156125fb576125fb6126ae565b500190565b60008261261d57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561263c5761263c6126ae565b500290565b600082821015612653576126536126ae565b500390565b600181811c9082168061266c57607f821691505b6020821081141561268d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126a7576126a76126ae565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610d7d57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ae5d053013f72f72da76f0f68aaf9a9c9ac31bf16a5cf8775a4f70dcf69ee3c264736f6c63430008060033

Deployed Bytecode Sourcemap

28654:22042:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37550:98;;;;;;;;;;-1:-1:-1;37550:98:0;;;;;:::i;:::-;;:::i;:::-;;31481:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32393:161;;;;;;;;;;-1:-1:-1;32393:161:0;;;;;:::i;:::-;;:::i;:::-;;;2861:14:1;;2854:22;2836:41;;2824:2;2809:18;32393:161:0;2791:92:1;33514:87:0;;;;;;;;;;-1:-1:-1;33583:10:0;;33514:87;;;8972:25:1;;;8960:2;8945:18;33514:87:0;8927:76:1;30080:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2652:32:1;;;2634:51;;2622:2;2607:18;30080:51:0;2589:102:1;31758:95:0;;;;;;;;;;-1:-1:-1;31838:7:0;;31758:95;;35053:104;;;;;;;;;;-1:-1:-1;35138:14:0;;-1:-1:-1;;;;;35138:14:0;35053:104;;32562:313;;;;;;;;;;-1:-1:-1;32562:313:0;;;;;:::i;:::-;;:::i;34444:253::-;;;;;;;;;;-1:-1:-1;34444:253:0;;;;;:::i;:::-;;:::i;31667:83::-;;;;;;;;;;-1:-1:-1;31733:9:0;;31667:83;;31733:9;;;;9150:36:1;;9138:2;9123:18;31667:83:0;9105:87:1;34816:119:0;;;;;;;;;;-1:-1:-1;34816:119:0;;;;;:::i;:::-;;:::i;35735:479::-;;;;;;;;;;-1:-1:-1;35735:479:0;;;;;:::i;:::-;;:::i;32883:218::-;;;;;;;;;;-1:-1:-1;32883:218:0;;;;;:::i;:::-;;:::i;29697:26::-;;;;;;;;;;;;;;;;33609:379;;;;;;;;;;-1:-1:-1;33609:379:0;;;;;:::i;:::-;;:::i;29883:30::-;;;;;;;;;;;;;;;;36966:80;;;;;;;;;;-1:-1:-1;36966:80:0;;;;;:::i;:::-;;:::i;37313:111::-;;;;;;;;;;-1:-1:-1;37313:111:0;;;;;:::i;:::-;;:::i;33996:440::-;;;;;;;;;;-1:-1:-1;33996:440:0;;;;;:::i;:::-;;:::i;29784:32::-;;;;;;;;;;;;;;;;30138:38;;;;;;;;;;;;;;;30260:40;;;;;;;;;;-1:-1:-1;30260:40:0;;;;;;;;;;;35280:447;;;;;;;;;;-1:-1:-1;35280:447:0;;;;;:::i;:::-;;:::i;43762:123::-;;;;;;;;;;-1:-1:-1;43762:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;43850:27:0;43826:4;43850:27;;;:18;:27;;;;;;;;;43762:123;34702:111;;;;;;;;;;-1:-1:-1;34702:111:0;;;;;:::i;:::-;;:::i;29979:32::-;;;;;;;;;;;;;;;;31861:198;;;;;;;;;;-1:-1:-1;31861:198:0;;;;;:::i;:::-;;:::i;20218:148::-;;;;;;;;;;;;;:::i;30309:53::-;;;;;;;;;;;;;;;;33386:120;;;;;;;;;;-1:-1:-1;33386:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;33478:20:0;33454:4;33478:20;;;:11;:20;;;;;;;;;33386:120;19563:87;;;;;;;;;;-1:-1:-1;19609:7:0;19636:6;-1:-1:-1;;;;;19636:6:0;19563:87;;37905:122;;;;;;;;;;-1:-1:-1;37905:122:0;;;;;:::i;:::-;;:::i;37656:::-;;;;;;;;;;-1:-1:-1;37656:122:0;;;;;:::i;:::-;;:::i;31572:87::-;;;;;;;;;;;;;:::i;33109:269::-;;;;;;;;;;-1:-1:-1;33109:269:0;;;;;:::i;:::-;;:::i;32067:167::-;;;;;;;;;;-1:-1:-1;32067:167:0;;;;;:::i;:::-;;:::i;30217:36::-;;;;;;;;;;-1:-1:-1;30217:36:0;;;;;;;;;;;38205:171;;;;;;;;;;-1:-1:-1;38205:171:0;;;;;:::i;:::-;;:::i;37783:114::-;;;;;;;;;;-1:-1:-1;37783:114:0;;;;;:::i;:::-;;:::i;34939:108::-;;;;;;;;;;-1:-1:-1;35026:16:0;;-1:-1:-1;;;;;35026:16:0;34939:108;;38035:162;;;;;;;;;;-1:-1:-1;38035:162:0;;;;;:::i;:::-;;:::i;35166:106::-;;;;;;;;;;-1:-1:-1;35166:106:0;;;;;:::i;:::-;;:::i;32242:143::-;;;;;;;;;;-1:-1:-1;32242:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;32350:18:0;;;32323:7;32350:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32242:143;37432:110;;;;;;;;;;-1:-1:-1;37432:110:0;;;;;:::i;:::-;;:::i;20521:244::-;;;;;;;;;;-1:-1:-1;20521:244:0;;;;;:::i;:::-;;:::i;37550:98::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;;;;;;;;;37624:7:::1;:16:::0;37550:98::o;31481:83::-;31518:13;31551:5;31544:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31481:83;:::o;32393:161::-;32468:4;32485:39;10392:10;32508:7;32517:6;32485:8;:39::i;:::-;-1:-1:-1;32542:4:0;32393:161;;;;;:::o;32562:313::-;32660:4;32677:36;32687:6;32695:9;32706:6;32677:9;:36::i;:::-;32724:121;32733:6;10392:10;32755:89;32793:6;32755:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32755:19:0;;;;;;:11;:19;;;;;;;;10392:10;32755:33;;;;;;;;;;:37;:89::i;:::-;32724:8;:121::i;:::-;-1:-1:-1;32863:4:0;32562:313;;;;;:::o;34444:253::-;34510:7;34549;;34538;:18;;34530:73;;;;-1:-1:-1;;;34530:73:0;;4331:2:1;34530:73:0;;;4313:21:1;4370:2;4350:18;;;4343:30;4409:34;4389:18;;;4382:62;-1:-1:-1;;;4460:18:1;;;4453:40;4510:19;;34530:73:0;4303:232:1;34530:73:0;34614:19;34637:10;:8;:10::i;:::-;34614:33;-1:-1:-1;34665:24:0;:7;34614:33;34665:11;:24::i;:::-;34658:31;34444:253;-1:-1:-1;;;34444:253:0:o;34816:119::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;34902:16:::1;:28:::0;;-1:-1:-1;;;;;;34902:28:0::1;-1:-1:-1::0;;;;;34902:28:0;;;::::1;::::0;;;::::1;::::0;;34816:119::o;35735:479::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35817:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35809:60;;;::::0;-1:-1:-1;;;35809:60:0;;5908:2:1;35809:60:0::1;::::0;::::1;5890:21:1::0;5947:2;5927:18;;;5920:30;5986:29;5966:18;;;5959:57;6033:18;;35809:60:0::1;5880:177:1::0;35809:60:0::1;35885:9;35880:327;35904:9;:16:::0;35900:20;::::1;35880:327;;;35962:7;-1:-1:-1::0;;;;;35946:23:0::1;:9;35956:1;35946:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;35946:12:0::1;:23;35942:254;;;36005:9;36015:16:::0;;:20:::1;::::0;36034:1:::1;::::0;36015:20:::1;:::i;:::-;36005:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;35990:9:::1;:12:::0;;-1:-1:-1;;;;;36005:31:0;;::::1;::::0;36000:1;;35990:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;35990:46:0::1;-1:-1:-1::0;;;;;35990:46:0;;::::1;;::::0;;36055:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;36094:11:::1;:20:::0;;;;:28;;-1:-1:-1;;36094:28:0::1;::::0;;36141:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;36141:15:0;;;;;-1:-1:-1;;;;;;36141:15:0::1;::::0;;;;;35880:327:::1;35735:479:::0;:::o;35942:254::-:1;35922:3:::0;::::1;::::0;::::1;:::i;:::-;;;;35880:327;;;;35735:479:::0;:::o;32883:218::-;10392:10;32971:4;33020:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33020:34:0;;;;;;;;;;32971:4;;32988:83;;33011:7;;33020:50;;33059:10;33020:38;:50::i;33609:379::-;10392:10;33661:14;33710:19;;;:11;:19;;;;;;;;33709:20;33701:77;;;;-1:-1:-1;;;33701:77:0;;8615:2:1;33701:77:0;;;8597:21:1;8654:2;8634:18;;;8627:30;8693:34;8673:18;;;8666:62;-1:-1:-1;;;8744:18:1;;;8737:42;8796:19;;33701:77:0;8587:234:1;33701:77:0;33790:15;33816:19;33827:7;33816:10;:19::i;:::-;-1:-1:-1;;;;;;;;33864:15:0;;;;;;:7;:15;;;;;;33789:46;;-1:-1:-1;33864:28:0;;:15;-1:-1:-1;33789:46:0;;-1:-1:-1;;33864:19:0;:28;-1:-1:-1;33864:28:0:i;:::-;-1:-1:-1;;;;;33846:15:0;;;;;;:7;:15;;;;;:46;33913:7;;:20;;33925:7;33913:11;:20::i;:::-;33903:7;:30;33957:10;;:23;;33972:7;33957:14;:23::i;:::-;33944:10;:36;-1:-1:-1;;;33609:379:0:o;36966:80::-;37013:25;37019:10;37031:6;37013:5;:25::i;:::-;36966:80;:::o;37313:111::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37382:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;37382:34:0::1;37412:4;37382:34;::::0;;37313:111::o;33996:440::-;34086:7;34125;;34114;:18;;34106:62;;;;-1:-1:-1;;;34106:62:0;;6264:2:1;34106:62:0;;;6246:21:1;6303:2;6283:18;;;6276:30;6342:33;6322:18;;;6315:61;6393:18;;34106:62:0;6236:181:1;34106:62:0;34184:17;34179:250;;34219:15;34245:19;34256:7;34245:10;:19::i;:::-;-1:-1:-1;34218:46:0;;-1:-1:-1;34279:14:0;;-1:-1:-1;;;;;;;34279:14:0;34179:250;34328:23;34361:19;34372:7;34361:10;:19::i;:::-;-1:-1:-1;34326:54:0;;-1:-1:-1;34395:22:0;;-1:-1:-1;;;;;;;34395:22:0;35280:447;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35477:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35476:21;35468:61;;;::::0;-1:-1:-1;;;35468:61:0;;5552:2:1;35468:61:0::1;::::0;::::1;5534:21:1::0;5591:2;5571:18;;;5564:30;5630:29;5610:18;;;5603:57;5677:18;;35468:61:0::1;5524:177:1::0;35468:61:0::1;-1:-1:-1::0;;;;;35543:16:0;::::1;35562:1;35543:16:::0;;;:7:::1;:16;::::0;;;;;:20;35540:108:::1;;-1:-1:-1::0;;;;;35619:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;35599:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;35580:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;35540:108:::1;-1:-1:-1::0;;;;;35658:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;35658:27:0::1;35681:4;35658:27:::0;;::::1;::::0;;;35696:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;35696:23:0::1;::::0;;::::1;::::0;;35280:447::o;34702:111::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;34784:14:::1;:24:::0;;-1:-1:-1;;;;;;34784:24:0::1;-1:-1:-1::0;;;;;34784:24:0;;;::::1;::::0;;;::::1;::::0;;34702:111::o;31861:198::-;-1:-1:-1;;;;;31951:20:0;;31927:7;31951:20;;;:11;:20;;;;;;;;31947:49;;;-1:-1:-1;;;;;;31980:16:0;;;;;:7;:16;;;;;;;31861:198::o;31947:49::-;-1:-1:-1;;;;;32034:16:0;;;;;;:7;:16;;;;;;32014:37;;:19;:37::i;20218:148::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;20325:1:::1;20309:6:::0;;20288:40:::1;::::0;-1:-1:-1;;;;;20309:6:0;;::::1;::::0;20288:40:::1;::::0;20325:1;;20288:40:::1;20356:1;20339:19:::0;;-1:-1:-1;;;;;;20339:19:0::1;::::0;;20218:148::o;37905:122::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;37991:13:::1;:28:::0;37905:122::o;37656:::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;37742:13:::1;:28:::0;37656:122::o;31572:87::-;31611:13;31644:7;31637:14;;;;;:::i;33109:269::-;33202:4;33219:129;10392:10;33242:7;33251:96;33290:15;33251:96;;;;;;;;;;;;;;;;;10392:10;33251:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33251:34:0;;;;;;;;;;;;:38;:96::i;32067:167::-;32145:4;32162:42;10392:10;32186:9;32197:6;32162:9;:42::i;38205:171::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;38282:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;38282:32:0;;::::1;;::::0;;38330:38:::1;::::0;::::1;::::0;::::1;::::0;38306:8;2861:14:1;2854:22;2836:41;;2824:2;2809:18;;2791:92;38330:38:0::1;;;;;;;;38205:171:::0;:::o;37783:114::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;37865:11:::1;:24:::0;37783:114::o;38035:162::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;38129:60:::1;38173:5;38129:25;38141:12;38129:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;38114:12;:75:::0;-1:-1:-1;38035:162:0:o;35166:106::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;35238:16:::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;35238:26:0;;::::1;::::0;;;::::1;::::0;;35166:106::o;37432:110::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37499:27:0::1;37529:5;37499:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;37499:35:0::1;::::0;;37432:110::o;20521:244::-;19609:7;19636:6;-1:-1:-1;;;;;19636:6:0;10392:10;19787:23;19779:68;;;;-1:-1:-1;;;19779:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20610:22:0;::::1;20602:73;;;::::0;-1:-1:-1;;;20602:73:0;;4742:2:1;20602:73:0::1;::::0;::::1;4724:21:1::0;4781:2;4761:18;;;4754:30;4820:34;4800:18;;;4793:62;-1:-1:-1;;;4871:18:1;;;4864:36;4917:19;;20602:73:0::1;4714:228:1::0;20602:73:0::1;20712:6;::::0;;20691:38:::1;::::0;-1:-1:-1;;;;;20691:38:0;;::::1;::::0;20712:6;::::1;::::0;20691:38:::1;::::0;::::1;20740:6;:17:::0;;-1:-1:-1;;;;;;20740:17:0::1;-1:-1:-1::0;;;;;20740:17:0;;;::::1;::::0;;;::::1;::::0;;20521:244::o;43893:337::-;-1:-1:-1;;;;;43986:19:0;;43978:68;;;;-1:-1:-1;;;43978:68:0;;8210:2:1;43978:68:0;;;8192:21:1;8249:2;8229:18;;;8222:30;8288:34;8268:18;;;8261:62;-1:-1:-1;;;8339:18:1;;;8332:34;8383:19;;43978:68:0;8182:226:1;43978:68:0;-1:-1:-1;;;;;44065:21:0;;44057:68;;;;-1:-1:-1;;;44057:68:0;;5149:2:1;44057:68:0;;;5131:21:1;5188:2;5168:18;;;5161:30;5227:34;5207:18;;;5200:62;-1:-1:-1;;;5278:18:1;;;5271:32;5320:19;;44057:68:0;5121:224:1;44057:68:0;-1:-1:-1;;;;;44138:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;44190:32;;8972:25:1;;;44190:32:0;;8945:18:1;44190:32:0;;;;;;;43893:337;;;:::o;44238:1435::-;-1:-1:-1;;;;;44360:18:0;;44352:68;;;;-1:-1:-1;;;44352:68:0;;7804:2:1;44352:68:0;;;7786:21:1;7843:2;7823:18;;;7816:30;7882:34;7862:18;;;7855:62;-1:-1:-1;;;7933:18:1;;;7926:35;7978:19;;44352:68:0;7776:227:1;44352:68:0;-1:-1:-1;;;;;44439:16:0;;44431:64;;;;-1:-1:-1;;;44431:64:0;;3927:2:1;44431:64:0;;;3909:21:1;3966:2;3946:18;;;3939:30;4005:34;3985:18;;;3978:62;-1:-1:-1;;;4056:18:1;;;4049:33;4099:19;;44431:64:0;3899:225:1;44431:64:0;44523:1;44514:6;:10;44506:64;;;;-1:-1:-1;;;44506:64:0;;7394:2:1;44506:64:0;;;7376:21:1;7433:2;7413:18;;;7406:30;7472:34;7452:18;;;7445:62;-1:-1:-1;;;7523:18:1;;;7516:39;7572:19;;44506:64:0;7366:231:1;44506:64:0;19609:7;19636:6;-1:-1:-1;;;;;44584:15:0;;;19636:6;;44584:15;;;;:32;;-1:-1:-1;19609:7:0;19636:6;-1:-1:-1;;;;;44603:13:0;;;19636:6;;44603:13;;44584:32;44581:125;;;44649:12;;44639:6;:22;;44631:75;;;;-1:-1:-1;;;44631:75:0;;6624:2:1;44631:75:0;;;6606:21:1;6663:2;6643:18;;;6636:30;6702:34;6682:18;;;6675:62;-1:-1:-1;;;6753:18:1;;;6746:38;6801:19;;44631:75:0;6596:230:1;44631:75:0;45001:28;45032:24;45050:4;45032:9;:24::i;:::-;45001:55;;45104:12;;45080:20;:36;45077:112;;-1:-1:-1;45165:12:0;;45077:112;-1:-1:-1;;;;;45404:24:0;;45277:12;45404:24;;;:18;:24;;;;;;45292:4;;45404:24;;;:50;;-1:-1:-1;;;;;;45432:22:0;;;;;;:18;:22;;;;;;;;45404:50;45401:96;;;-1:-1:-1;45480:5:0;45401:96;45505:16;45516:4;45505:10;:16::i;:::-;45526:14;45537:2;45526:10;:14::i;:::-;45627:38;45642:4;45647:2;45650:6;45657:7;45627:14;:38::i;:::-;44341:1332;;44238:1435;;;:::o;7762:206::-;7848:7;7909:12;7901:6;;;;7893:29;;;;-1:-1:-1;;;7893:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;7944:5:0;;;7762:206::o;40441:163::-;40482:7;40503:15;40520;40539:19;:17;:19::i;:::-;40502:56;;-1:-1:-1;40502:56:0;-1:-1:-1;40576:20:0;40502:56;;40576:11;:20::i;:::-;40569:27;;;;40441:163;:::o;6620:98::-;6678:7;6705:5;6709:1;6705;:5;:::i;5483:98::-;5541:7;5568:5;5572:1;5568;:5;:::i;38828:504::-;38887:7;38896;38905;38914;38923;38932;38941;38950;38971:23;38996:17;39017:20;39029:7;39017:11;:20::i;:::-;39048:22;;;38970:67;;-1:-1:-1;38970:67:0;-1:-1:-1;39100:10:0;:8;:10::i;:::-;39081:16;;;:29;39122:15;;;39180:17;39081:4;39180:11;:17::i;:::-;39121:76;;;;;;39216:7;39225:15;39242:4;39248:15;39265:4;:9;;;39276:4;:15;;;39293:4;:15;;;39310:4;:13;;;39208:116;;;;;;;;;;;;;;;;;;;;;38828:504;;;;;;;;;:::o;5864:98::-;5922:7;5949:5;5953:1;5949;:5;:::i;37058:247::-;-1:-1:-1;;;;;37141:13:0;;;;;;:7;:13;;;;;;37131:23;;;37123:32;;;;;;-1:-1:-1;;;;;37182:13:0;;;;;;:7;:13;;;;;;:25;;37200:6;37182:17;:25::i;:::-;-1:-1:-1;;;;;37166:13:0;;;;;;:7;:13;;;;;:41;37228:7;;:19;;37240:6;37228:11;:19::i;:::-;37218:7;:29;37263:34;;8972:25:1;;;37286:1:0;;-1:-1:-1;;;;;37263:34:0;;;;;8960:2:1;8945:18;37263:34:0;;;;;;;37058:247;;:::o;6221:98::-;6279:7;6306:5;6310:1;6306;:5;:::i;41535:173::-;-1:-1:-1;;;;;41590:19:0;;;;;;:14;:19;;;;;;;;41587:44;;;41535:173;:::o;41587:44::-;-1:-1:-1;;;;;41641:19:0;;;;;:14;:19;;;;;:26;;-1:-1:-1;;41641:26:0;41663:4;41641:26;;;;;;41678:22;;;;;;;;;;;;;-1:-1:-1;;;;;;41678:22:0;;;;;;41535:173::o;47865:834::-;47976:7;47972:40;;47998:14;:12;:14::i;:::-;-1:-1:-1;;;;;48037:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;48061:22:0;;;;;;:11;:22;;;;;;;;48060:23;48037:46;48033:597;;;48100:48;48122:6;48130:9;48141:6;48100:21;:48::i;:::-;48033:597;;;-1:-1:-1;;;;;48171:19:0;;;;;;:11;:19;;;;;;;;48170:20;:46;;;;-1:-1:-1;;;;;;48194:22:0;;;;;;:11;:22;;;;;;;;48170:46;48166:464;;;48233:46;48253:6;48261:9;48272:6;48233:19;:46::i;48166:464::-;-1:-1:-1;;;;;48302:19:0;;;;;;:11;:19;;;;;;;;48301:20;:47;;;;-1:-1:-1;;;;;;48326:22:0;;;;;;:11;:22;;;;;;;;48325:23;48301:47;48297:333;;;48365:44;48383:6;48391:9;48402:6;48365:17;:44::i;48297:333::-;-1:-1:-1;;;;;48431:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;48454:22:0;;;;;;:11;:22;;;;;;;;48431:45;48427:203;;;48493:48;48515:6;48523:9;48534:6;48493:21;:48::i;48427:203::-;48574:44;48592:6;48600:9;48611:6;48574:17;:44::i;:::-;48654:7;48650:41;;48676:15;43593;;43583:7;:25;43635:21;;43619:13;:37;43675:19;;43661:11;:33;43721:21;;43705:13;:37;43539:211;48676:15;47865:834;;;;:::o;40612:555::-;40709:7;;40745;;40662;;;;;40763:289;40787:9;:16;40783:20;;40763:289;;;40853:7;40829;:21;40837:9;40847:1;40837:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;40837:12:0;40829:21;;;;;;;;;;;;;:31;;:66;;;40888:7;40864;:21;40872:9;40882:1;40872:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;40872:12:0;40864:21;;;;;;;;;;;;;:31;40829:66;40825:97;;;40905:7;;40914;;40897:25;;;;;;;40612:555;;:::o;40825:97::-;40947:34;40959:7;:21;40967:9;40977:1;40967:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;40967:12:0;40959:21;;;;;;;;;;;;;40947:7;;:11;:34::i;:::-;40937:44;;41006:34;41018:7;:21;41026:9;41036:1;41026:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;41026:12:0;41018:21;;;;;;;;;;;;;41006:7;;:11;:34::i;:::-;40996:44;-1:-1:-1;40805:3:0;;;;:::i;:::-;;;;40763:289;;;-1:-1:-1;41088:7:0;;41076;;:20;;:11;:20::i;:::-;41066:7;:30;41062:61;;;41106:7;;41115;;41098:25;;;;;;40612:555;;:::o;41062:61::-;41142:7;;41151;;-1:-1:-1;40612:555:0;-1:-1:-1;40612:555:0:o;39340:509::-;39400:7;39409:12;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39409:12:0;39434;39449:24;39465:7;39449:15;:24::i;:::-;39434:39;;39484:18;39505:30;39527:7;39505:21;:30::i;:::-;39484:51;;39548:18;39569:30;39591:7;39569:21;:30::i;:::-;39548:51;;39604:16;39623:28;39643:7;39623:19;:28::i;:::-;39604:47;-1:-1:-1;39664:23:0;39690:63;39604:47;39690:49;39728:10;39690:49;39712:10;39690:49;:7;39702:4;39690:11;:17::i;:::-;:21;;:33::i;:63::-;39664:89;;39772:15;39789:51;;;;;;;;39795:1;39789:51;;;;39798:4;39789:51;;;;39804:10;39789:51;;;;39816:10;39789:51;;;;39828:8;39789:51;;;;39838:1;39789:51;;;39764:77;;;;;;;;;39340:509;;;:::o;39857:576::-;39921:7;39930;39939;39959:15;39977:36;39995:5;:17;;;39977:5;:13;;;:17;;:36;;;;:::i;:::-;39959:54;;40024:12;40039:33;40054:5;:17;;;40039:5;:10;;;:14;;:33;;;;:::i;:::-;40024:48;;40083:18;40104:39;40125:5;:17;;;40104:5;:16;;;:20;;:39;;;;:::i;:::-;40083:60;;40154:18;40175:39;40196:5;:17;;;40175:5;:16;;;:20;;:39;;;;:::i;:::-;40154:60;;40219:16;40238:37;40257:5;:17;;;40238:5;:14;;;:18;;:37;;;;:::i;:::-;40219:56;-1:-1:-1;40286:23:0;40312:63;40219:56;40312:49;40350:10;40312:49;40334:10;40312:49;:7;40324:4;40312:11;:17::i;:63::-;40394:7;;;;-1:-1:-1;40420:4:0;;-1:-1:-1;39857:576:0;;-1:-1:-1;;;;;;39857:576:0:o;43143:384::-;43189:7;;:12;:34;;;;-1:-1:-1;43205:13:0;;:18;43189:34;43186:46;;;43143:384::o;43186:46::-;43270:7;;;43252:15;:25;43312:13;;;43288:21;:37;43352:11;;;43330:19;:33;43398:13;;;43374:21;:37;-1:-1:-1;43432:11:0;;;;43454:17;;;;43476:15;;;43502:17;43143:384::o;50023:668::-;50126:15;50143:23;50168:12;50182:23;50207:12;50221:18;50241;50261:16;50281:19;50292:7;50281:10;:19::i;:::-;50125:175;;;;;;;;;;;;;;;;50329:28;50349:7;50329;:15;50337:6;-1:-1:-1;;;;;50329:15:0;-1:-1:-1;;;;;50329:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;50311:15:0;;;;;;:7;:15;;;;;;;;:46;;;;50386:7;:15;;;;:28;;50406:7;50386:19;:28::i;:::-;-1:-1:-1;;;;;50368:15:0;;;;;;;:7;:15;;;;;;:46;;;;50446:18;;;;;;;:39;;50469:15;50446:22;:39::i;:::-;-1:-1:-1;;;;;50425:18:0;;;;;;:7;:18;;;;;:60;50499:26;50514:10;50499:14;:26::i;:::-;50536;50551:10;50536:14;:26::i;:::-;50567:22;50580:8;50567:12;:22::i;:::-;50600:23;50612:4;50618;50600:11;:23::i;:::-;50656:9;-1:-1:-1;;;;;50639:44:0;50648:6;-1:-1:-1;;;;;50639:44:0;;50667:15;50639:44;;;;8972:25:1;;8960:2;8945:18;;8927:76;50639:44:0;;;;;;;;50114:577;;;;;;;;50023:668;;;:::o;49327:688::-;49428:15;49445:23;49470:12;49484:23;49509:12;49523:18;49543;49563:16;49583:19;49594:7;49583:10;:19::i;:::-;49427:175;;;;;;;;;;;;;;;;49631:28;49651:7;49631;:15;49639:6;-1:-1:-1;;;;;49631:15:0;-1:-1:-1;;;;;49631:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;49613:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;49691:18;;;;;:7;:18;;;;;:39;;49714:15;49691:22;:39::i;:::-;-1:-1:-1;;;;;49670:18:0;;;;;;:7;:18;;;;;;;;:60;;;;49762:7;:18;;;;:39;;49785:15;49762:22;:39::i;48707:612::-;48806:15;48823:23;48848:12;48862:23;48887:12;48901:18;48921;48941:16;48961:19;48972:7;48961:10;:19::i;:::-;48805:175;;;;;;;;;;;;;;;;49009:28;49029:7;49009;:15;49017:6;-1:-1:-1;;;;;49009:15:0;-1:-1:-1;;;;;49009:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;36222:736::-;36325:15;36342:23;36367:12;36381:23;36406:12;36420:18;36440;36460:16;36480:19;36491:7;36480:10;:19::i;:::-;36324:175;;;;;;;;;;;;;;;;36528:28;36548:7;36528;:15;36536:6;-1:-1:-1;;;;;36528:15:0;-1:-1:-1;;;;;36528:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;36510:15:0;;;;;;:7;:15;;;;;;;;:46;;;;36585:7;:15;;;;:28;;36605:7;36585:19;:28::i;42461:154::-;42525:7;42552:55;42591:5;42552:20;42564:7;;42552;:11;;:20;;;;:::i;42965:166::-;43035:7;43062:61;43107:5;43062:26;43074:13;;43062:7;:11;;:26;;;;:::i;42623:166::-;42693:7;42720:61;42765:5;42720:26;42732:13;;42720:7;:11;;:26;;;;:::i;42795:162::-;42863:7;42890:59;42933:5;42890:24;42902:11;;42890:7;:11;;:24;;;;:::i;41175:355::-;41238:19;41261:10;:8;:10::i;:::-;41238:33;-1:-1:-1;41282:18:0;41303:27;:10;41238:33;41303:14;:27::i;:::-;41382:4;41366:22;;;;:7;:22;;;;;;41282:48;;-1:-1:-1;41366:38:0;;41282:48;41366:26;:38::i;:::-;41357:4;41341:22;;;;:7;:22;;;;;;;;:63;;;;41418:11;:26;;;;;;41415:107;;;41500:4;41484:22;;;;:7;:22;;;;;;:38;;41511:10;41484:26;:38::i;:::-;41475:4;41459:22;;;;:7;:22;;;;;:63;41415:107;41227:303;;41175:355;:::o;41711:385::-;41774:19;41797:10;:8;:10::i;:::-;41774:33;-1:-1:-1;41818:18:0;41839:27;:10;41774:33;41839:14;:27::i;:::-;41913:16;;-1:-1:-1;;;;;41913:16:0;41905:25;;;;:7;:25;;;;;;41818:48;;-1:-1:-1;41905:41:0;;41818:48;41905:29;:41::i;:::-;41885:16;;;-1:-1:-1;;;;;41885:16:0;;;41877:25;;;;:7;:25;;;;;;;;:69;;;;41976:16;;;;;41964:29;;:11;:29;;;;;;;41961:120;;;42048:16;;-1:-1:-1;;;;;42048:16:0;42040:25;;;;:7;:25;;;;;;:41;;42070:10;42040:29;:41::i;:::-;42020:16;;-1:-1:-1;;;;;42020:16:0;42012:25;;;;:7;:25;;;;;:69;41763:333;;41711:385;:::o;42099:350::-;42158:19;42181:10;:8;:10::i;:::-;42158:33;-1:-1:-1;42202:16:0;42221:25;:8;42158:33;42221:12;:25::i;:::-;42291:14;;-1:-1:-1;;;;;42291:14:0;42283:23;;;;:7;:23;;;;;;42202:44;;-1:-1:-1;42283:37:0;;42202:44;42283:27;:37::i;:::-;42265:14;;;-1:-1:-1;;;;;42265:14:0;;;42257:23;;;;:7;:23;;;;;;;;:63;;;;42346:14;;;;;42334:27;;:11;:27;;;;;;;42331:104;;;42406:14;;-1:-1:-1;;;;;42406:14:0;42398:23;;;;:7;:23;;;;;;:37;;42426:8;42398:27;:37::i;:::-;42380:14;;-1:-1:-1;;;;;42380:14:0;42372:23;;;;:7;:23;;;;;:63;42147:302;;42099:350;:::o;38478:147::-;38556:7;;:17;;38568:4;38556:11;:17::i;:::-;38546:7;:27;38597:10;;:20;;38612:4;38597:14;:20::i;:::-;38584:10;:33;-1:-1:-1;;38478:147:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;108:2;60:114;;;:::o;179:247::-;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;307:1;304;297:12;259:2;346:9;333:23;365:31;390:5;365:31;:::i;691:388::-;759:6;767;820:2;808:9;799:7;795:23;791:32;788:2;;;836:1;833;826:12;788:2;875:9;862:23;894:31;919:5;894:31;:::i;:::-;944:5;-1:-1:-1;1001:2:1;986:18;;973:32;1014:33;973:32;1014:33;:::i;:::-;1066:7;1056:17;;;778:301;;;;;:::o;1084:456::-;1161:6;1169;1177;1230:2;1218:9;1209:7;1205:23;1201:32;1198:2;;;1246:1;1243;1236:12;1198:2;1285:9;1272:23;1304:31;1329:5;1304:31;:::i;:::-;1354:5;-1:-1:-1;1411:2:1;1396:18;;1383:32;1424:33;1383:32;1424:33;:::i;:::-;1188:352;;1476:7;;-1:-1:-1;;;1530:2:1;1515:18;;;;1502:32;;1188:352::o;1545:315::-;1613:6;1621;1674:2;1662:9;1653:7;1649:23;1645:32;1642:2;;;1690:1;1687;1680:12;1642:2;1729:9;1716:23;1748:31;1773:5;1748:31;:::i;:::-;1798:5;1850:2;1835:18;;;;1822:32;;-1:-1:-1;;;1632:228:1:o;1865:180::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:2;;;1990:1;1987;1980:12;1942:2;2013:26;2029:9;2013:26;:::i;2050:180::-;2109:6;2162:2;2150:9;2141:7;2137:23;2133:32;2130:2;;;2178:1;2175;2168:12;2130:2;-1:-1:-1;2201:23:1;;2120:110;-1:-1:-1;2120:110:1:o;2235:248::-;2300:6;2308;2361:2;2349:9;2340:7;2336:23;2332:32;2329:2;;;2377:1;2374;2367:12;2329:2;2413:9;2400:23;2390:33;;2442:35;2473:2;2462:9;2458:18;2442:35;:::i;:::-;2432:45;;2319:164;;;;;:::o;3123:597::-;3235:4;3264:2;3293;3282:9;3275:21;3325:6;3319:13;3368:6;3363:2;3352:9;3348:18;3341:34;3393:1;3403:140;3417:6;3414:1;3411:13;3403:140;;;3512:14;;;3508:23;;3502:30;3478:17;;;3497:2;3474:26;3467:66;3432:10;;3403:140;;;3561:6;3558:1;3555:13;3552:2;;;3631:1;3626:2;3617:6;3606:9;3602:22;3598:31;3591:42;3552:2;-1:-1:-1;3704:2:1;3683:15;-1:-1:-1;;3679:29:1;3664:45;;;;3711:2;3660:54;;3244:476;-1:-1:-1;;;3244:476:1:o;6831:356::-;7033:2;7015:21;;;7052:18;;;7045:30;7111:34;7106:2;7091:18;;7084:62;7178:2;7163:18;;7005:182::o;9197:128::-;9237:3;9268:1;9264:6;9261:1;9258:13;9255:2;;;9274:18;;:::i;:::-;-1:-1:-1;9310:9:1;;9245:80::o;9330:217::-;9370:1;9396;9386:2;;9440:10;9435:3;9431:20;9428:1;9421:31;9475:4;9472:1;9465:15;9503:4;9500:1;9493:15;9386:2;-1:-1:-1;9532:9:1;;9376:171::o;9552:168::-;9592:7;9658:1;9654;9650:6;9646:14;9643:1;9640:21;9635:1;9628:9;9621:17;9617:45;9614:2;;;9665:18;;:::i;:::-;-1:-1:-1;9705:9:1;;9604:116::o;9725:125::-;9765:4;9793:1;9790;9787:8;9784:2;;;9798:18;;:::i;:::-;-1:-1:-1;9835:9:1;;9774:76::o;9855:380::-;9934:1;9930:12;;;;9977;;;9998:2;;10052:4;10044:6;10040:17;10030:27;;9998:2;10105;10097:6;10094:14;10074:18;10071:38;10068:2;;;10151:10;10146:3;10142:20;10139:1;10132:31;10186:4;10183:1;10176:15;10214:4;10211:1;10204:15;10068:2;;9910:325;;;:::o;10240:135::-;10279:3;-1:-1:-1;;10300:17:1;;10297:2;;;10320:18;;:::i;:::-;-1:-1:-1;10367:1:1;10356:13;;10287:88::o;10380:127::-;10441:10;10436:3;10432:20;10429:1;10422:31;10472:4;10469:1;10462:15;10496:4;10493:1;10486:15;10512:127;10573:10;10568:3;10564:20;10561:1;10554:31;10604:4;10601:1;10594:15;10628:4;10625:1;10618:15;10644:127;10705:10;10700:3;10696:20;10693:1;10686:31;10736:4;10733:1;10726:15;10760:4;10757:1;10750:15;10776:131;-1:-1:-1;;;;;10851:31:1;;10841:42;;10831:2;;10897:1;10894;10887:12

Swarm Source

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