ETH Price: $2,405.54 (+2.84%)

Token

Laeeb Inu (LAEEB)
 

Overview

Max Total Supply

1,000,000,000 LAEEB

Holders

56

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000492059539 LAEEB

Value
$0.00
0x27f00abfd4ef49c1f9aba816015b059812926285
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:
LaeebInu

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-27
*/

// File: Laeeb Inu_flat.sol


// File: Laeeb Inu.sol



// ▒█░░░ █ ░█▀▀█ ▒█▀▀▀ ▒█▀▀▀ ▒█▀▀█   ▀█▀ ▒█▄░▒█ ▒█░▒█ 
// ▒█░░░ ░ ▒█▄▄█ ▒█▀▀▀ ▒█▀▀▀ ▒█▀▀▄   ▒█░ ▒█▒█▒█ ▒█░▒█ 
// ▒█▄▄█ ░ ▒█░▒█ ▒█▄▄▄ ▒█▄▄▄ ▒█▄▄█   ▄█▄ ▒█░░▀█ ░▀▄▄▀ 


pragma solidity 0.8.15;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
}



/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. 
 *
 * 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) {
        return msg.data;
    }
}

/**
 * @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.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;

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

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

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

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

}

/**
 * @dev Implementation of the {IERC20} interface.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }


    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.

     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     */
    function _createInitialTotalSupply(address account, uint256 amount) internal virtual {
        require(account != address(0));

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens.
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SignedSafeMath {
    /**
     * @dev Returns the multiplication of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        return a * b;
    }

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

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

    /**
     * @dev Returns the addition of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        return a + b;
    }
}

// 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. 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 Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

contract LaeebInu is ERC20, Ownable {
    using SafeMath for uint256;

    bool private inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    bool private isOpen = false;

    uint256 public liquidityFee = 1;
    uint256 public marketingFee = 2;
    uint256 public devFee = 1;
    uint256 public sellLiquidityFee = 1;
    uint256 public sellMarketingFee = 2;
    uint256 public sellDevFee = 1;
    uint256 public maxTransactionAmount = 20000000 * (10**18);
    uint256 public maxWalletToken = 40000000 * (10**18);
    uint256 public swapTokensAtAmount = 500000 * (10**18);

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    address payable public marketingWallet = payable(0x4fb1eE386bF5f24E5A4CF200BB7C6496fA8D3c38); 
    address payable public devWallet = payable(0x503Ac0B2e2dD62de7E141A49AA6D7e50886109c4);

    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;

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

    event SwapAndLiquify(uint256 tokensIntoLiqudity, uint256 ethReceived);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapETHForTokens(uint256 amountIn, address[] path);
    event ExcludeFromFees(address indexed account, bool isExcluded);


    constructor() ERC20("Laeeb Inu", "LAEEB") {
    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        // exclude from paying fees and max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(devWallet, true);
        excludeFromFees(address(this), true);
        
        /*
          an internal function that is only called here, and CANNOT be called ever again
        */
        
        _createInitialTotalSupply(owner(), 1000000000 * (10**18));
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        bool excludedAccount = _isExcludedFromFees[from] || _isExcludedFromFees[to];
        require(isOpen || excludedAccount, "trading is yet Open");

        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

         if(from==uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){
            uint256 contractBalanceRecepient = balanceOf(to);
            require(contractBalanceRecepient + amount <= maxWalletToken, "Exceeds maximum wallet token amount.");
        }
        
        if(to==uniswapV2Pair && !excludedAccount) {
            require(amount <= maxTransactionAmount, "amount exceeds the maxTransactionAmount.");
        }
        
    	uint256 contractTokenBalance = balanceOf(address(this));
        
        bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount;
       
        if(overMinTokenBalance && !inSwapAndLiquify && to==uniswapV2Pair && swapAndLiquifyEnabled) {
            contractTokenBalance = swapTokensAtAmount;
            swapAndLiquify(contractTokenBalance);

        }

         // if any account belongs to _isExcludedFromFee account then remove the fee
        if(!excludedAccount) {
            uint256 fees;
            if(from==uniswapV2Pair) {
              fees  = amount.mul(liquidityFee.add(marketingFee).add(devFee)).div(100);
            }

            if(to==uniswapV2Pair) {
              fees  = amount.mul(sellLiquidityFee.add(sellMarketingFee).add(sellDevFee)).div(100);
            }

        	amount = amount.sub(fees);
            if(fees > 0) {
                super._transfer(from, address(this), fees); 
            }
        }

        super._transfer(from, to, amount);

    }

     function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 tokensForLiquidity = contractTokenBalance.mul(sellLiquidityFee).div(sellMarketingFee.add(sellLiquidityFee).add(sellDevFee));
        // split the Liquidity token balance into halves
        uint256 half = tokensForLiquidity.div(2);
        uint256 otherHalf = tokensForLiquidity.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); 

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

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        // swap and Send eth to wallets
        swapTokensForEth(contractTokenBalance.sub(tokensForLiquidity));
        devWallet.transfer(address(this).balance.mul(sellDevFee).div(sellMarketingFee.add(sellDevFee)));
        marketingWallet.transfer(address(this).balance);
       
        emit SwapAndLiquify(half, newBalance); 
    }

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

        if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
          _approve(address(this), address(uniswapV2Router), ~uint256(0));
        }

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

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

     function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
    
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function openTrade() external onlyOwner {
        isOpen = true;
    }

    function setMaxWalletLimit(uint256 _newLimit) public onlyOwner {
        maxWalletToken = _newLimit;
        require(maxWalletToken >= totalSupply().div(200), "value too low");
    }

    function setMaxTxAmount(uint256 _maxTx) public onlyOwner {
        maxTransactionAmount = _maxTx;
        require(maxTransactionAmount >= totalSupply().div(1000000000), "value too low");
    }

    function updateBuyFees(uint256 _liquidityFee, uint256 _marketingFee, uint256 _devFee) public onlyOwner {
        require(_liquidityFee.add(_marketingFee).add(_devFee) <= 5, "tax too high");
        liquidityFee = _liquidityFee;
        marketingFee = _marketingFee;
        devFee = _devFee;
    }

     function updateSellFees(uint256 _liquidityFee, uint256 _marketingFee, uint256 _devFee) public onlyOwner {
        require(_liquidityFee.add(_marketingFee).add(_devFee) <= 5, "tax too high");
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _marketingFee;
        sellDevFee = _devFee;
    }

    function updateWallets(address payable _marketingWallet, address payable _devWallet) public onlyOwner {
        marketingWallet = _marketingWallet;
        devWallet = _devWallet;
    }

    function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner {
        swapTokensAtAmount = _newAmount;
    }

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

    receive() external payable {

    }
  
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"},{"internalType":"address payable","name":"_devWallet","type":"address"}],"name":"updateWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526006805461ffff60a81b1916600160a81b17905560016007819055600260088190556009829055600a829055600b55600c556a108b2a2c28029094000000600d556a2116545850052128000000600e556969e10de76676d0800000600f55601180546001600160a01b0319908116734fb1ee386bf5f24e5a4cf200bb7c6496fa8d3c38179091556012805490911673503ac0b2e2dd62de7e141a49aa6d7e50886109c4179055348015620000b757600080fd5b50604051806040016040528060098152602001684c6165656220496e7560b81b815250604051806040016040528060058152602001642620a2a2a160d91b81525081600390816200010991906200062c565b5060046200011882826200062c565b50505060006200012d6200039a60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fb9190620006f8565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000249573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026f9190620006f8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e39190620006f8565b601080546001600160a01b0319166001600160a01b03858116919091179091558116608052905062000329620003216005546001600160a01b031690565b60016200039e565b60115462000342906001600160a01b031660016200039e565b6012546200035b906001600160a01b031660016200039e565b620003683060016200039e565b620003926200037f6005546001600160a01b031690565b6b033b2e3c9fd0803ce8000000620004e2565b505062000751565b3390565b6005546001600160a01b03163314620003fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03821660009081526013602052604090205481151560ff909116151503620004835760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401620003f5565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004f657600080fd5b80600260008282546200050a91906200072a565b90915550506001600160a01b03821660009081526020819052604081208054839290620005399084906200072a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005b357607f821691505b602082108103620005d457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200058357600081815260208120601f850160051c81016020861015620006035750805b601f850160051c820191505b8181101562000624578281556001016200060f565b505050505050565b81516001600160401b0381111562000648576200064862000588565b62000660816200065984546200059e565b84620005da565b602080601f8311600181146200069857600084156200067f5750858301515b600019600386901b1c1916600185901b17855562000624565b600085815260208120601f198616915b82811015620006c957888601518255948401946001909101908401620006a8565b5085821015620006e85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200070b57600080fd5b81516001600160a01b03811681146200072357600080fd5b9392505050565b600082198211156200074c57634e487b7160e01b600052601160045260246000fd5b500190565b608051611b52620007906000396000818161030901528181610e7501528181610f7b01528181611057015281816110bc01526111240152611b526000f3fe6080604052600436106101fd5760003560e01c80638ea5220f1161010d578063c49b9a80116100a0578063e6c75f711161006f578063e6c75f71146105f0578063e8ba854f14610606578063ec28438a14610626578063f637434214610646578063fb201b1d1461065c57600080fd5b8063c49b9a801461055e578063c8c8ebe41461057e578063dd62ed3e14610594578063e2f45605146105da57600080fd5b8063a0d82dc5116100dc578063a0d82dc5146104e8578063a9059cbb146104fe578063c02466681461051e578063c17b5b8c1461053e57600080fd5b80638ea5220f1461048757806392136913146104a757806395d89b41146104bd57806398118cb4146104d257600080fd5b80634fbee19311610190578063728d41c91161015f578063728d41c9146103e7578063750c11b61461040957806375f0a874146104295780638095d564146104495780638da5cb5b1461046957600080fd5b80634fbee1931461034c5780636827e764146103855780636b67c4df1461039b57806370a08231146103b157600080fd5b806323b872dd116101cc57806323b872dd146102bb578063313ce567146102db57806349bd5a5e146102f75780634a74bb021461032b57600080fd5b806306fdde0314610209578063095ea7b3146102345780631694505e1461026457806318160ddd1461029c57600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610671565b60405161022b91906116f6565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611760565b610703565b604051901515815260200161022b565b34801561027057600080fd5b50601054610284906001600160a01b031681565b6040516001600160a01b03909116815260200161022b565b3480156102a857600080fd5b506002545b60405190815260200161022b565b3480156102c757600080fd5b506102546102d636600461178c565b610719565b3480156102e757600080fd5b506040516012815260200161022b565b34801561030357600080fd5b506102847f000000000000000000000000000000000000000000000000000000000000000081565b34801561033757600080fd5b5060065461025490600160a81b900460ff1681565b34801561035857600080fd5b506102546103673660046117cd565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561039157600080fd5b506102ad60095481565b3480156103a757600080fd5b506102ad60085481565b3480156103bd57600080fd5b506102ad6103cc3660046117cd565b6001600160a01b031660009081526020819052604090205490565b3480156103f357600080fd5b506104076104023660046117ea565b6107c8565b005b34801561041557600080fd5b506104076104243660046117ea565b61084f565b34801561043557600080fd5b50601154610284906001600160a01b031681565b34801561045557600080fd5b50610407610464366004611803565b61087e565b34801561047557600080fd5b506005546001600160a01b0316610284565b34801561049357600080fd5b50601254610284906001600160a01b031681565b3480156104b357600080fd5b506102ad600b5481565b3480156104c957600080fd5b5061021e610909565b3480156104de57600080fd5b506102ad60075481565b3480156104f457600080fd5b506102ad600c5481565b34801561050a57600080fd5b50610254610519366004611760565b610918565b34801561052a57600080fd5b50610407610539366004611844565b610925565b34801561054a57600080fd5b50610407610559366004611803565b610a31565b34801561056a57600080fd5b50610407610579366004611879565b610ab6565b34801561058a57600080fd5b506102ad600d5481565b3480156105a057600080fd5b506102ad6105af366004611894565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105e657600080fd5b506102ad600f5481565b3480156105fc57600080fd5b506102ad600e5481565b34801561061257600080fd5b50610407610621366004611894565b610b38565b34801561063257600080fd5b506104076106413660046117ea565b610b90565b34801561065257600080fd5b506102ad600a5481565b34801561066857600080fd5b50610407610c11565b606060038054610680906118cd565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac906118cd565b80156106f95780601f106106ce576101008083540402835291602001916106f9565b820191906000526020600020905b8154815290600101906020018083116106dc57829003601f168201915b5050505050905090565b6000610710338484610c50565b50600192915050565b6000610726848484610d74565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107b05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107bd8533858403610c50565b506001949350505050565b6005546001600160a01b031633146107f25760405162461bcd60e51b81526004016107a790611907565b600e81905561080b60c861080560025490565b906111b5565b600e54101561084c5760405162461bcd60e51b815260206004820152600d60248201526c76616c756520746f6f206c6f7760981b60448201526064016107a7565b50565b6005546001600160a01b031633146108795760405162461bcd60e51b81526004016107a790611907565b600f55565b6005546001600160a01b031633146108a85760405162461bcd60e51b81526004016107a790611907565b60056108be826108b886866111c8565b906111c8565b11156108fb5760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b60448201526064016107a7565b600792909255600855600955565b606060048054610680906118cd565b6000610710338484610d74565b6005546001600160a01b0316331461094f5760405162461bcd60e51b81526004016107a790611907565b6001600160a01b03821660009081526013602052604090205481151560ff9091161515036109d25760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084016107a7565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a5b5760405162461bcd60e51b81526004016107a790611907565b6005610a6b826108b886866111c8565b1115610aa85760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b60448201526064016107a7565b600a92909255600b55600c55565b6005546001600160a01b03163314610ae05760405162461bcd60e51b81526004016107a790611907565b60068054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610b2d90831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610b625760405162461bcd60e51b81526004016107a790611907565b601180546001600160a01b039384166001600160a01b03199182161790915560128054929093169116179055565b6005546001600160a01b03163314610bba5760405162461bcd60e51b81526004016107a790611907565b600d819055610bd0633b9aca0061080560025490565b600d54101561084c5760405162461bcd60e51b815260206004820152600d60248201526c76616c756520746f6f206c6f7760981b60448201526064016107a7565b6005546001600160a01b03163314610c3b5760405162461bcd60e51b81526004016107a790611907565b6006805460ff60b01b1916600160b01b179055565b6001600160a01b038316610cb25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107a7565b6001600160a01b038216610d135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107a7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d9a5760405162461bcd60e51b81526004016107a79061193c565b6001600160a01b038216610dc05760405162461bcd60e51b81526004016107a790611981565b6001600160a01b03831660009081526013602052604081205460ff1680610dff57506001600160a01b03831660009081526013602052604090205460ff165b600654909150600160b01b900460ff1680610e175750805b610e595760405162461bcd60e51b81526020600482015260136024820152723a3930b234b7339034b9903cb2ba1027b832b760691b60448201526064016107a7565b81600003610e7357610e6d848460006111d4565b50505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316148015610ecd57506001600160a01b03841660009081526013602052604090205460ff16155b8015610ef257506001600160a01b03831660009081526013602052604090205460ff16155b15610f79576001600160a01b038316600090815260208190526040902054600e54610f1d84836119da565b1115610f775760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b60648201526084016107a7565b505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610fb8575080155b1561102057600d548211156110205760405162461bcd60e51b815260206004820152602860248201527f616d6f756e74206578636565647320746865206d61785472616e73616374696f6044820152673720b6b7bab73a1760c11b60648201526084016107a7565b30600090815260208190526040902054600f548110801590819061104e5750600654600160a01b900460ff16155b801561108b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316145b80156110a05750600654600160a81b900460ff165b156110b357600f5491506110b382611328565b826111a25760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b0316036111225761111f60646108056111186009546108b86008546007546111c890919063ffffffff16565b889061149e565b90505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031603611183576111806064610805611118600c546108b8600b54600a546111c890919063ffffffff16565b90505b61118d85826114aa565b945080156111a0576111a08730836111d4565b505b6111ad8686866111d4565b505050505050565b60006111c182846119f2565b9392505050565b60006111c182846119da565b6001600160a01b0383166111fa5760405162461bcd60e51b81526004016107a79061193c565b6001600160a01b0382166112205760405162461bcd60e51b81526004016107a790611981565b6001600160a01b038316600090815260208190526040902054818110156112985760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107a7565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112cf9084906119da565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161131b91815260200190565b60405180910390a3610e6d565b6006805460ff60a01b1916600160a01b179055600c54600a54600b5460009261136692611358926108b8916111c8565b600a5461080590859061149e565b905060006113758260026111b5565b9050600061138383836114aa565b90504761138f836114b6565b600061139b47836114aa565b90506113a78382611639565b6113b96113b487876114aa565b6114b6565b601254600c54600b546001600160a01b03909216916108fc916113ed916113df916111c8565b600c5461080590479061149e565b6040518115909202916000818181858888f19350505050158015611415573d6000803e3d6000fd5b506011546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561144f573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506006805460ff60a01b1916905550505050565b60006111c18284611a14565b60006111c18284611a33565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106114eb576114eb611a4a565b6001600160a01b03928316602091820292909201810191909152601054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115689190611a60565b8160018151811061157b5761157b611a4a565b6001600160a01b03928316602091820292909201810191909152601054306000908152600183526040808220929094168152915220548211156115d2576010546115d29030906001600160a01b0316600019610c50565b60105460405163791ac94760e01b81526001600160a01b039091169063791ac9479061160b908590600090869030904290600401611a7d565b600060405180830381600087803b15801561162557600080fd5b505af11580156111ad573d6000803e3d6000fd5b6010546001600160a01b031663f305d7198230856000806116626005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156116ca573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116ef9190611aee565b5050505050565b600060208083528351808285015260005b8181101561172357858101830151858201604001528201611707565b81811115611735576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461084c57600080fd5b6000806040838503121561177357600080fd5b823561177e8161174b565b946020939093013593505050565b6000806000606084860312156117a157600080fd5b83356117ac8161174b565b925060208401356117bc8161174b565b929592945050506040919091013590565b6000602082840312156117df57600080fd5b81356111c18161174b565b6000602082840312156117fc57600080fd5b5035919050565b60008060006060848603121561181857600080fd5b505081359360208301359350604090920135919050565b8035801515811461183f57600080fd5b919050565b6000806040838503121561185757600080fd5b82356118628161174b565b91506118706020840161182f565b90509250929050565b60006020828403121561188b57600080fd5b6111c18261182f565b600080604083850312156118a757600080fd5b82356118b28161174b565b915060208301356118c28161174b565b809150509250929050565b600181811c908216806118e157607f821691505b60208210810361190157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156119ed576119ed6119c4565b500190565b600082611a0f57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611a2e57611a2e6119c4565b500290565b600082821015611a4557611a456119c4565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a7257600080fd5b81516111c18161174b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611acd5784516001600160a01b031683529383019391830191600101611aa8565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611b0357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220737e566eb6c65a56f8fd7d6dde45ce923c95fbee1f1efdde68bb644da6c89f2c64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c80638ea5220f1161010d578063c49b9a80116100a0578063e6c75f711161006f578063e6c75f71146105f0578063e8ba854f14610606578063ec28438a14610626578063f637434214610646578063fb201b1d1461065c57600080fd5b8063c49b9a801461055e578063c8c8ebe41461057e578063dd62ed3e14610594578063e2f45605146105da57600080fd5b8063a0d82dc5116100dc578063a0d82dc5146104e8578063a9059cbb146104fe578063c02466681461051e578063c17b5b8c1461053e57600080fd5b80638ea5220f1461048757806392136913146104a757806395d89b41146104bd57806398118cb4146104d257600080fd5b80634fbee19311610190578063728d41c91161015f578063728d41c9146103e7578063750c11b61461040957806375f0a874146104295780638095d564146104495780638da5cb5b1461046957600080fd5b80634fbee1931461034c5780636827e764146103855780636b67c4df1461039b57806370a08231146103b157600080fd5b806323b872dd116101cc57806323b872dd146102bb578063313ce567146102db57806349bd5a5e146102f75780634a74bb021461032b57600080fd5b806306fdde0314610209578063095ea7b3146102345780631694505e1461026457806318160ddd1461029c57600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610671565b60405161022b91906116f6565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611760565b610703565b604051901515815260200161022b565b34801561027057600080fd5b50601054610284906001600160a01b031681565b6040516001600160a01b03909116815260200161022b565b3480156102a857600080fd5b506002545b60405190815260200161022b565b3480156102c757600080fd5b506102546102d636600461178c565b610719565b3480156102e757600080fd5b506040516012815260200161022b565b34801561030357600080fd5b506102847f0000000000000000000000008d2f7f0dfb875dc8ab3117e8f854167aea41d4f381565b34801561033757600080fd5b5060065461025490600160a81b900460ff1681565b34801561035857600080fd5b506102546103673660046117cd565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561039157600080fd5b506102ad60095481565b3480156103a757600080fd5b506102ad60085481565b3480156103bd57600080fd5b506102ad6103cc3660046117cd565b6001600160a01b031660009081526020819052604090205490565b3480156103f357600080fd5b506104076104023660046117ea565b6107c8565b005b34801561041557600080fd5b506104076104243660046117ea565b61084f565b34801561043557600080fd5b50601154610284906001600160a01b031681565b34801561045557600080fd5b50610407610464366004611803565b61087e565b34801561047557600080fd5b506005546001600160a01b0316610284565b34801561049357600080fd5b50601254610284906001600160a01b031681565b3480156104b357600080fd5b506102ad600b5481565b3480156104c957600080fd5b5061021e610909565b3480156104de57600080fd5b506102ad60075481565b3480156104f457600080fd5b506102ad600c5481565b34801561050a57600080fd5b50610254610519366004611760565b610918565b34801561052a57600080fd5b50610407610539366004611844565b610925565b34801561054a57600080fd5b50610407610559366004611803565b610a31565b34801561056a57600080fd5b50610407610579366004611879565b610ab6565b34801561058a57600080fd5b506102ad600d5481565b3480156105a057600080fd5b506102ad6105af366004611894565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105e657600080fd5b506102ad600f5481565b3480156105fc57600080fd5b506102ad600e5481565b34801561061257600080fd5b50610407610621366004611894565b610b38565b34801561063257600080fd5b506104076106413660046117ea565b610b90565b34801561065257600080fd5b506102ad600a5481565b34801561066857600080fd5b50610407610c11565b606060038054610680906118cd565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac906118cd565b80156106f95780601f106106ce576101008083540402835291602001916106f9565b820191906000526020600020905b8154815290600101906020018083116106dc57829003601f168201915b5050505050905090565b6000610710338484610c50565b50600192915050565b6000610726848484610d74565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107b05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107bd8533858403610c50565b506001949350505050565b6005546001600160a01b031633146107f25760405162461bcd60e51b81526004016107a790611907565b600e81905561080b60c861080560025490565b906111b5565b600e54101561084c5760405162461bcd60e51b815260206004820152600d60248201526c76616c756520746f6f206c6f7760981b60448201526064016107a7565b50565b6005546001600160a01b031633146108795760405162461bcd60e51b81526004016107a790611907565b600f55565b6005546001600160a01b031633146108a85760405162461bcd60e51b81526004016107a790611907565b60056108be826108b886866111c8565b906111c8565b11156108fb5760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b60448201526064016107a7565b600792909255600855600955565b606060048054610680906118cd565b6000610710338484610d74565b6005546001600160a01b0316331461094f5760405162461bcd60e51b81526004016107a790611907565b6001600160a01b03821660009081526013602052604090205481151560ff9091161515036109d25760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084016107a7565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a5b5760405162461bcd60e51b81526004016107a790611907565b6005610a6b826108b886866111c8565b1115610aa85760405162461bcd60e51b815260206004820152600c60248201526b0e8c2f040e8dede40d0d2ced60a31b60448201526064016107a7565b600a92909255600b55600c55565b6005546001600160a01b03163314610ae05760405162461bcd60e51b81526004016107a790611907565b60068054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610b2d90831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610b625760405162461bcd60e51b81526004016107a790611907565b601180546001600160a01b039384166001600160a01b03199182161790915560128054929093169116179055565b6005546001600160a01b03163314610bba5760405162461bcd60e51b81526004016107a790611907565b600d819055610bd0633b9aca0061080560025490565b600d54101561084c5760405162461bcd60e51b815260206004820152600d60248201526c76616c756520746f6f206c6f7760981b60448201526064016107a7565b6005546001600160a01b03163314610c3b5760405162461bcd60e51b81526004016107a790611907565b6006805460ff60b01b1916600160b01b179055565b6001600160a01b038316610cb25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107a7565b6001600160a01b038216610d135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107a7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d9a5760405162461bcd60e51b81526004016107a79061193c565b6001600160a01b038216610dc05760405162461bcd60e51b81526004016107a790611981565b6001600160a01b03831660009081526013602052604081205460ff1680610dff57506001600160a01b03831660009081526013602052604090205460ff165b600654909150600160b01b900460ff1680610e175750805b610e595760405162461bcd60e51b81526020600482015260136024820152723a3930b234b7339034b9903cb2ba1027b832b760691b60448201526064016107a7565b81600003610e7357610e6d848460006111d4565b50505050565b7f0000000000000000000000008d2f7f0dfb875dc8ab3117e8f854167aea41d4f36001600160a01b0316846001600160a01b0316148015610ecd57506001600160a01b03841660009081526013602052604090205460ff16155b8015610ef257506001600160a01b03831660009081526013602052604090205460ff16155b15610f79576001600160a01b038316600090815260208190526040902054600e54610f1d84836119da565b1115610f775760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b60648201526084016107a7565b505b7f0000000000000000000000008d2f7f0dfb875dc8ab3117e8f854167aea41d4f36001600160a01b0316836001600160a01b0316148015610fb8575080155b1561102057600d548211156110205760405162461bcd60e51b815260206004820152602860248201527f616d6f756e74206578636565647320746865206d61785472616e73616374696f6044820152673720b6b7bab73a1760c11b60648201526084016107a7565b30600090815260208190526040902054600f548110801590819061104e5750600654600160a01b900460ff16155b801561108b57507f0000000000000000000000008d2f7f0dfb875dc8ab3117e8f854167aea41d4f36001600160a01b0316856001600160a01b0316145b80156110a05750600654600160a81b900460ff165b156110b357600f5491506110b382611328565b826111a25760007f0000000000000000000000008d2f7f0dfb875dc8ab3117e8f854167aea41d4f36001600160a01b0316876001600160a01b0316036111225761111f60646108056111186009546108b86008546007546111c890919063ffffffff16565b889061149e565b90505b7f0000000000000000000000008d2f7f0dfb875dc8ab3117e8f854167aea41d4f36001600160a01b0316866001600160a01b031603611183576111806064610805611118600c546108b8600b54600a546111c890919063ffffffff16565b90505b61118d85826114aa565b945080156111a0576111a08730836111d4565b505b6111ad8686866111d4565b505050505050565b60006111c182846119f2565b9392505050565b60006111c182846119da565b6001600160a01b0383166111fa5760405162461bcd60e51b81526004016107a79061193c565b6001600160a01b0382166112205760405162461bcd60e51b81526004016107a790611981565b6001600160a01b038316600090815260208190526040902054818110156112985760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107a7565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112cf9084906119da565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161131b91815260200190565b60405180910390a3610e6d565b6006805460ff60a01b1916600160a01b179055600c54600a54600b5460009261136692611358926108b8916111c8565b600a5461080590859061149e565b905060006113758260026111b5565b9050600061138383836114aa565b90504761138f836114b6565b600061139b47836114aa565b90506113a78382611639565b6113b96113b487876114aa565b6114b6565b601254600c54600b546001600160a01b03909216916108fc916113ed916113df916111c8565b600c5461080590479061149e565b6040518115909202916000818181858888f19350505050158015611415573d6000803e3d6000fd5b506011546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561144f573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506006805460ff60a01b1916905550505050565b60006111c18284611a14565b60006111c18284611a33565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106114eb576114eb611a4a565b6001600160a01b03928316602091820292909201810191909152601054604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115689190611a60565b8160018151811061157b5761157b611a4a565b6001600160a01b03928316602091820292909201810191909152601054306000908152600183526040808220929094168152915220548211156115d2576010546115d29030906001600160a01b0316600019610c50565b60105460405163791ac94760e01b81526001600160a01b039091169063791ac9479061160b908590600090869030904290600401611a7d565b600060405180830381600087803b15801561162557600080fd5b505af11580156111ad573d6000803e3d6000fd5b6010546001600160a01b031663f305d7198230856000806116626005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156116ca573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116ef9190611aee565b5050505050565b600060208083528351808285015260005b8181101561172357858101830151858201604001528201611707565b81811115611735576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461084c57600080fd5b6000806040838503121561177357600080fd5b823561177e8161174b565b946020939093013593505050565b6000806000606084860312156117a157600080fd5b83356117ac8161174b565b925060208401356117bc8161174b565b929592945050506040919091013590565b6000602082840312156117df57600080fd5b81356111c18161174b565b6000602082840312156117fc57600080fd5b5035919050565b60008060006060848603121561181857600080fd5b505081359360208301359350604090920135919050565b8035801515811461183f57600080fd5b919050565b6000806040838503121561185757600080fd5b82356118628161174b565b91506118706020840161182f565b90509250929050565b60006020828403121561188b57600080fd5b6111c18261182f565b600080604083850312156118a757600080fd5b82356118b28161174b565b915060208301356118c28161174b565b809150509250929050565b600181811c908216806118e157607f821691505b60208210810361190157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156119ed576119ed6119c4565b500190565b600082611a0f57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611a2e57611a2e6119c4565b500290565b600082821015611a4557611a456119c4565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a7257600080fd5b81516111c18161174b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611acd5784516001600160a01b031683529383019391830191600101611aa8565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611b0357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220737e566eb6c65a56f8fd7d6dde45ce923c95fbee1f1efdde68bb644da6c89f2c64736f6c634300080f0033

Deployed Bytecode Sourcemap

29870:8857:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3727:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5362:169;;;;;;;;;;-1:-1:-1;5362:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;5362:169:0;1072:187:1;30479:41:0;;;;;;;;;;-1:-1:-1;30479:41:0;;;;-1:-1:-1;;;;;30479:41:0;;;;;;-1:-1:-1;;;;;1454:32:1;;;1436:51;;1424:2;1409:18;30479:41:0;1264:229:1;4315:108:0;;;;;;;;;;-1:-1:-1;4403:12:0;;4315:108;;;1644:25:1;;;1632:2;1617:18;4315:108:0;1498:177:1;5756:492:0;;;;;;;;;;-1:-1:-1;5756:492:0;;;;;:::i;:::-;;:::i;4157:93::-;;;;;;;;;;-1:-1:-1;4157:93:0;;4240:2;2283:36:1;;2271:2;2256:18;4157:93:0;2141:184:1;30527:38:0;;;;;;;;;;;;;;;29984:40;;;;;;;;;;-1:-1:-1;29984:40:0;;;;-1:-1:-1;;;29984:40:0;;;;;;36938:125;;;;;;;;;;-1:-1:-1;36938:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;37027:28:0;37003:4;37027:28;;;:19;:28;;;;;;;;;36938:125;30143:25;;;;;;;;;;;;;;;;30105:31;;;;;;;;;;;;;;;;4486:127;;;;;;;;;;-1:-1:-1;4486:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;4587:18:0;4560:7;4587:18;;;;;;;;;;;;4486:127;37151:185;;;;;;;;;;-1:-1:-1;37151:185:0;;;;;:::i;:::-;;:::i;:::-;;38377:119;;;;;;;;;;-1:-1:-1;38377:119:0;;;;;:::i;:::-;;:::i;30574:92::-;;;;;;;;;;-1:-1:-1;30574:92:0;;;;-1:-1:-1;;;;;30574:92:0;;;37547:302;;;;;;;;;;-1:-1:-1;37547:302:0;;;;;:::i;:::-;;:::i;2826:79::-;;;;;;;;;;-1:-1:-1;2891:6:0;;-1:-1:-1;;;;;2891:6:0;2826:79;;30674:86;;;;;;;;;;-1:-1:-1;30674:86:0;;;;-1:-1:-1;;;;;30674:86:0;;;30217:35;;;;;;;;;;;;;;;;3946:104;;;;;;;;;;;;;:::i;30067:31::-;;;;;;;;;;;;;;;;30259:29;;;;;;;;;;;;;;;;4826:175;;;;;;;;;;-1:-1:-1;4826:175:0;;;;;:::i;:::-;;:::i;36638:288::-;;;;;;;;;;-1:-1:-1;36638:288:0;;;;;:::i;:::-;;:::i;37858:315::-;;;;;;;;;;-1:-1:-1;37858:315:0;;;;;:::i;:::-;;:::i;38504:171::-;;;;;;;;;;-1:-1:-1;38504:171:0;;;;;:::i;:::-;;:::i;30295:57::-;;;;;;;;;;;;;;;;5064:151;;;;;;;;;;-1:-1:-1;5064:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;5180:18:0;;;5153:7;5180:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5064:151;30417:53;;;;;;;;;;;;;;;;30359:51;;;;;;;;;;;;;;;;38181:188;;;;;;;;;;-1:-1:-1;38181:188:0;;;;;:::i;:::-;;:::i;37344:195::-;;;;;;;;;;-1:-1:-1;37344:195:0;;;;;:::i;:::-;;:::i;30175:35::-;;;;;;;;;;;;;;;;37071:72;;;;;;;;;;;;;:::i;3727:100::-;3781:13;3814:5;3807:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3727:100;:::o;5362:169::-;5445:4;5462:39;1974:10;5485:7;5494:6;5462:8;:39::i;:::-;-1:-1:-1;5519:4:0;5362:169;;;;:::o;5756:492::-;5896:4;5913:36;5923:6;5931:9;5942:6;5913:9;:36::i;:::-;-1:-1:-1;;;;;5989:19:0;;5962:24;5989:19;;;:11;:19;;;;;;;;1974:10;5989:33;;;;;;;;6041:26;;;;6033:79;;;;-1:-1:-1;;;6033:79:0;;5579:2:1;6033:79:0;;;5561:21:1;5618:2;5598:18;;;5591:30;5657:34;5637:18;;;5630:62;-1:-1:-1;;;5708:18:1;;;5701:38;5756:19;;6033:79:0;;;;;;;;;6148:57;6157:6;1974:10;6198:6;6179:16;:25;6148:8;:57::i;:::-;-1:-1:-1;6236:4:0;;5756:492;-1:-1:-1;;;;5756:492:0:o;37151:185::-;3038:6;;-1:-1:-1;;;;;3038:6:0;1974:10;3038:22;3030:67;;;;-1:-1:-1;;;3030:67:0;;;;;;;:::i;:::-;37225:14:::1;:26:::0;;;37288:22:::1;37306:3;37288:13;4403:12:::0;;;4315:108;37288:13:::1;:17:::0;::::1;:22::i;:::-;37270:14;;:40;;37262:66;;;::::0;-1:-1:-1;;;37262:66:0;;6349:2:1;37262:66:0::1;::::0;::::1;6331:21:1::0;6388:2;6368:18;;;6361:30;-1:-1:-1;;;6407:18:1;;;6400:43;6460:18;;37262:66:0::1;6147:337:1::0;37262:66:0::1;37151:185:::0;:::o;38377:119::-;3038:6;;-1:-1:-1;;;;;3038:6:0;1974:10;3038:22;3030:67;;;;-1:-1:-1;;;3030:67:0;;;;;;;:::i;:::-;38457:18:::1;:31:::0;38377:119::o;37547:302::-;3038:6;;-1:-1:-1;;;;;3038:6:0;1974:10;3038:22;3030:67;;;;-1:-1:-1;;;3030:67:0;;;;;;;:::i;:::-;37718:1:::1;37669:45;37706:7:::0;37669:32:::1;:13:::0;37687;37669:17:::1;:32::i;:::-;:36:::0;::::1;:45::i;:::-;:50;;37661:75;;;::::0;-1:-1:-1;;;37661:75:0;;6691:2:1;37661:75:0::1;::::0;::::1;6673:21:1::0;6730:2;6710:18;;;6703:30;-1:-1:-1;;;6749:18:1;;;6742:42;6801:18;;37661:75:0::1;6489:336:1::0;37661:75:0::1;37747:12;:28:::0;;;;37786:12:::1;:28:::0;37825:6:::1;:16:::0;37547:302::o;3946:104::-;4002:13;4035:7;4028:14;;;;;:::i;4826:175::-;4912:4;4929:42;1974:10;4953:9;4964:6;4929:9;:42::i;36638:288::-;3038:6;;-1:-1:-1;;;;;3038:6:0;1974:10;3038:22;3030:67;;;;-1:-1:-1;;;3030:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36731:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;36723:95:::1;;;::::0;-1:-1:-1;;;36723:95:0;;7032:2:1;36723:95:0::1;::::0;::::1;7014:21:1::0;7071:2;7051:18;;;7044:30;7110:34;7090:18;;;7083:62;-1:-1:-1;;;7161:18:1;;;7154:40;7211:19;;36723:95:0::1;6830:406:1::0;36723:95:0::1;-1:-1:-1::0;;;;;36829:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36829:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36884:34;;1212:41:1;;;36884:34:0::1;::::0;1185:18:1;36884:34:0::1;;;;;;;36638:288:::0;;:::o;37858:315::-;3038:6;;-1:-1:-1;;;;;3038:6:0;1974:10;3038:22;3030:67;;;;-1:-1:-1;;;3030:67:0;;;;;;;:::i;:::-;38030:1:::1;37981:45;38018:7:::0;37981:32:::1;:13:::0;37999;37981:17:::1;:32::i;:45::-;:50;;37973:75;;;::::0;-1:-1:-1;;;37973:75:0;;6691:2:1;37973:75:0::1;::::0;::::1;6673:21:1::0;6730:2;6710:18;;;6703:30;-1:-1:-1;;;6749:18:1;;;6742:42;6801:18;;37973:75:0::1;6489:336:1::0;37973:75:0::1;38059:16;:32:::0;;;;38102:16:::1;:32:::0;38145:10:::1;:20:::0;37858:315::o;38504:171::-;3038:6;;-1:-1:-1;;;;;3038:6:0;1974:10;3038:22;3030:67;;;;-1:-1:-1;;;3030:67:0;;;;;;;:::i;:::-;38581:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;38581:32:0::1;-1:-1:-1::0;;;;38581:32:0;;::::1;;::::0;;38629:38:::1;::::0;::::1;::::0;::::1;::::0;38605:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;38629:38:0::1;;;;;;;;38504:171:::0;:::o;38181:188::-;3038:6;;-1:-1:-1;;;;;3038:6:0;1974:10;3038:22;3030:67;;;;-1:-1:-1;;;3030:67:0;;;;;;;:::i;:::-;38294:15:::1;:34:::0;;-1:-1:-1;;;;;38294:34:0;;::::1;-1:-1:-1::0;;;;;;38294:34:0;;::::1;;::::0;;;38339:9:::1;:22:::0;;;;;::::1;::::0;::::1;;::::0;;38181:188::o;37344:195::-;3038:6;;-1:-1:-1;;;;;3038:6:0;1974:10;3038:22;3030:67;;;;-1:-1:-1;;;3030:67:0;;;;;;;:::i;:::-;37412:20:::1;:29:::0;;;37484::::1;37502:10;37484:13;4403:12:::0;;;4315:108;37484:29:::1;37460:20;;:53;;37452:79;;;::::0;-1:-1:-1;;;37452:79:0;;6349:2:1;37452:79:0::1;::::0;::::1;6331:21:1::0;6388:2;6368:18;;;6361:30;-1:-1:-1;;;6407:18:1;;;6400:43;6460:18;;37452:79:0::1;6147:337:1::0;37071:72:0;3038:6;;-1:-1:-1;;;;;3038:6:0;1974:10;3038:22;3030:67;;;;-1:-1:-1;;;3030:67:0;;;;;;;:::i;:::-;37122:6:::1;:13:::0;;-1:-1:-1;;;;37122:13:0::1;-1:-1:-1::0;;;37122:13:0::1;::::0;;37071:72::o;7696:380::-;-1:-1:-1;;;;;7832:19:0;;7824:68;;;;-1:-1:-1;;;7824:68:0;;7443:2:1;7824:68:0;;;7425:21:1;7482:2;7462:18;;;7455:30;7521:34;7501:18;;;7494:62;-1:-1:-1;;;7572:18:1;;;7565:34;7616:19;;7824:68:0;7241:400:1;7824:68:0;-1:-1:-1;;;;;7911:21:0;;7903:68;;;;-1:-1:-1;;;7903:68:0;;7848:2:1;7903:68:0;;;7830:21:1;7887:2;7867:18;;;7860:30;7926:34;7906:18;;;7899:62;-1:-1:-1;;;7977:18:1;;;7970:32;8019:19;;7903:68:0;7646:398:1;7903:68:0;-1:-1:-1;;;;;7984:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;8036:32;;1644:25:1;;;8036:32:0;;1617:18:1;8036:32:0;;;;;;;7696:380;;;:::o;32172:2029::-;-1:-1:-1;;;;;32304:18:0;;32296:68;;;;-1:-1:-1;;;32296:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32383:16:0;;32375:64;;;;-1:-1:-1;;;32375:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32473:25:0;;32450:20;32473:25;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;32502:23:0;;;;;;:19;:23;;;;;;;;32473:52;32544:6;;32450:75;;-1:-1:-1;;;;32544:6:0;;;;;:25;;;32554:15;32544:25;32536:57;;;;-1:-1:-1;;;32536:57:0;;9061:2:1;32536:57:0;;;9043:21:1;9100:2;9080:18;;;9073:30;-1:-1:-1;;;9119:18:1;;;9112:49;9178:18;;32536:57:0;8859:343:1;32536:57:0;32609:6;32619:1;32609:11;32606:92;;32637:28;32653:4;32659:2;32663:1;32637:15;:28::i;:::-;32680:7;32172:2029;;;:::o;32606:92::-;32720:13;-1:-1:-1;;;;;32714:19:0;:4;-1:-1:-1;;;;;32714:19:0;;:49;;;;-1:-1:-1;;;;;;32738:25:0;;;;;;:19;:25;;;;;;;;32737:26;32714:49;:77;;;;-1:-1:-1;;;;;;32768:23:0;;;;;;:19;:23;;;;;;;;32767:24;32714:77;32711:271;;;-1:-1:-1;;;;;4587:18:0;;32807:32;4587:18;;;;;;;;;;;32915:14;;32878:33;32905:6;4587:18;32878:33;:::i;:::-;:51;;32870:100;;;;-1:-1:-1;;;32870:100:0;;9674:2:1;32870:100:0;;;9656:21:1;9713:2;9693:18;;;9686:30;9752:34;9732:18;;;9725:62;-1:-1:-1;;;9803:18:1;;;9796:34;9847:19;;32870:100:0;9472:400:1;32870:100:0;32792:190;32711:271;33009:13;-1:-1:-1;;;;;33005:17:0;:2;-1:-1:-1;;;;;33005:17:0;;:37;;;;;33027:15;33026:16;33005:37;33002:152;;;33077:20;;33067:6;:30;;33059:83;;;;-1:-1:-1;;;33059:83:0;;10079:2:1;33059:83:0;;;10061:21:1;10118:2;10098:18;;;10091:30;10157:34;10137:18;;;10130:62;-1:-1:-1;;;10208:18:1;;;10201:38;10256:19;;33059:83:0;9877:404:1;33059:83:0;33220:4;33171:28;4587:18;;;;;;;;;;;33298;;33274:42;;;;;;;33339:40;;-1:-1:-1;33363:16:0;;-1:-1:-1;;;33363:16:0;;;;33362:17;33339:40;:61;;;;;33387:13;-1:-1:-1;;;;;33383:17:0;:2;-1:-1:-1;;;;;33383:17:0;;33339:61;:86;;;;-1:-1:-1;33404:21:0;;-1:-1:-1;;;33404:21:0;;;;33339:86;33336:212;;;33465:18;;33442:41;;33498:36;33513:20;33498:14;:36::i;:::-;33650:15;33646:500;;33682:12;33718:13;-1:-1:-1;;;;;33712:19:0;:4;-1:-1:-1;;;;;33712:19:0;;33709:128;;33758:63;33817:3;33758:54;33769:42;33804:6;;33769:30;33786:12;;33769;;:16;;:30;;;;:::i;:42::-;33758:6;;:10;:54::i;:63::-;33750:71;;33709:128;33860:13;-1:-1:-1;;;;;33856:17:0;:2;-1:-1:-1;;;;;33856:17:0;;33853:138;;33900:75;33971:3;33900:66;33911:54;33954:10;;33911:38;33932:16;;33911;;:20;;:38;;;;:::i;33900:75::-;33892:83;;33853:138;34013:16;:6;34024:4;34013:10;:16::i;:::-;34004:25;-1:-1:-1;34047:8:0;;34044:91;;34076:42;34092:4;34106;34113;34076:15;:42::i;:::-;33667:479;33646:500;34158:33;34174:4;34180:2;34184:6;34158:15;:33::i;:::-;32285:1916;;;32172:2029;;;:::o;19521:98::-;19579:7;19606:5;19610:1;19606;:5;:::i;:::-;19599:12;19521:98;-1:-1:-1;;;19521:98:0:o;18384:::-;18442:7;18469:5;18473:1;18469;:5;:::i;6346:733::-;-1:-1:-1;;;;;6486:20:0;;6478:70;;;;-1:-1:-1;;;6478:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6567:23:0;;6559:71;;;;-1:-1:-1;;;6559:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6727:17:0;;6703:21;6727:17;;;;;;;;;;;6763:23;;;;6755:74;;;;-1:-1:-1;;;6755:74:0;;10710:2:1;6755:74:0;;;10692:21:1;10749:2;10729:18;;;10722:30;10788:34;10768:18;;;10761:62;-1:-1:-1;;;10839:18:1;;;10832:36;10885:19;;6755:74:0;10508:402:1;6755:74:0;-1:-1:-1;;;;;6865:17:0;;;:9;:17;;;;;;;;;;;6885:22;;;6865:42;;6929:20;;;;;;;;:30;;6901:6;;6865:9;6929:30;;6901:6;;6929:30;:::i;:::-;;;;;;;;6994:9;-1:-1:-1;;;;;6977:35:0;6986:6;-1:-1:-1;;;;;6977:35:0;;7005:6;6977:35;;;;1644:25:1;;1632:2;1617:18;;1498:177;6977:35:0;;;;;;;;7025:46;8165:125;34210:1330;30916:16;:23;;-1:-1:-1;;;;30916:23:0;-1:-1:-1;;;30916:23:0;;;34414:10:::1;::::0;34392:16:::1;::::0;34371::::1;::::0;30916:23;;34324:102:::1;::::0;34371:54:::1;::::0;:38:::1;::::0;:20:::1;:38::i;:54::-;34349:16;::::0;34324:42:::1;::::0;:20;;:24:::1;:42::i;:102::-;34295:131:::0;-1:-1:-1;34495:12:0::1;34510:25;34295:131:::0;34533:1:::1;34510:22;:25::i;:::-;34495:40:::0;-1:-1:-1;34546:17:0::1;34566:28;:18:::0;34495:40;34566:22:::1;:28::i;:::-;34546:48:::0;-1:-1:-1;34897:21:0::1;34963:22;34980:4:::0;34963:16:::1;:22::i;:::-;35047:18;35068:41;:21;35094:14:::0;35068:25:::1;:41::i;:::-;35047:62;;35159:35;35172:9;35183:10;35159:12;:35::i;:::-;35248:62;35265:44;:20:::0;35290:18;35265:24:::1;:44::i;:::-;35248:16;:62::i;:::-;35321:9;::::0;35403:10:::1;::::0;35382:16:::1;::::0;-1:-1:-1;;;;;35321:9:0;;::::1;::::0;:95:::1;::::0;35340:75:::1;::::0;35382:32:::1;::::0;:20:::1;:32::i;:::-;35366:10;::::0;35340:37:::1;::::0;:21:::1;::::0;:25:::1;:37::i;:75::-;35321:95;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;35427:15:0::1;::::0;:47:::1;::::0;-1:-1:-1;;;;;35427:15:0;;::::1;::::0;35452:21:::1;35427:47:::0;::::1;;;::::0;:15:::1;:47:::0;:15;:47;35452:21;35427:15;:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;35499:32:0::1;::::0;;11089:25:1;;;11145:2;11130:18;;11123:34;;;35499:32:0::1;::::0;11062:18:1;35499:32:0::1;;;;;;;-1:-1:-1::0;;30962:16:0;:24;;-1:-1:-1;;;;30962:24:0;;;-1:-1:-1;;;;34210:1330:0:o;19122:98::-;19180:7;19207:5;19211:1;19207;:5;:::i;18765:98::-;18823:7;18850:5;18854:1;18850;:5;:::i;35548:692::-;35698:16;;;35712:1;35698:16;;;;;;;;35674:21;;35698:16;;;;;;;;;;-1:-1:-1;35698:16:0;35674:40;;35743:4;35725;35730:1;35725:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35725:23:0;;;:7;;;;;;;;;;:23;;;;35769:15;;:22;;;-1:-1:-1;;;35769:22:0;;;;:15;;;;;:20;;:22;;;;;35725:7;;35769:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35759:4;35764:1;35759:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35759:32:0;;;:7;;;;;;;;;;:32;;;;35840:15;;35825:4;5153:7;5180:18;;;:11;:18;;;;;;35840:15;;;;5180:27;;;;;;35860:11;-1:-1:-1;35804:156:0;;;35918:15;;35886:62;;35903:4;;-1:-1:-1;;;;;35918:15:0;-1:-1:-1;;35886:8:0;:62::i;:::-;35998:15;;:224;;-1:-1:-1;;;35998:224:0;;-1:-1:-1;;;;;35998:15:0;;;;:66;;:224;;36079:11;;35998:15;;36149:4;;36176;;36196:15;;35998:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36248:381;36359:15;;-1:-1:-1;;;;;36359:15:0;:31;36398:9;36431:4;36451:11;36359:15;;36563:7;2891:6;;-1:-1:-1;;;;;2891:6:0;;2826:79;36563:7;36359:252;;;;;;-1:-1:-1;;;;;;36359:252:0;;;-1:-1:-1;;;;;13335:15:1;;;36359:252:0;;;13317:34:1;13367:18;;;13360:34;;;;13410:18;;;13403:34;;;;13453:18;;;13446:34;13517:15;;;13496:19;;;13489:44;36585:15:0;13549:19:1;;;13542:35;13251:19;;36359:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36248:381;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1680:456::-;1757:6;1765;1773;1826:2;1814:9;1805:7;1801:23;1797:32;1794:52;;;1842:1;1839;1832:12;1794:52;1881:9;1868:23;1900:31;1925:5;1900:31;:::i;:::-;1950:5;-1:-1:-1;2007:2:1;1992:18;;1979:32;2020:33;1979:32;2020:33;:::i;:::-;1680:456;;2072:7;;-1:-1:-1;;;2126:2:1;2111:18;;;;2098:32;;1680:456::o;2538:247::-;2597:6;2650:2;2638:9;2629:7;2625:23;2621:32;2618:52;;;2666:1;2663;2656:12;2618:52;2705:9;2692:23;2724:31;2749:5;2724:31;:::i;2790:180::-;2849:6;2902:2;2890:9;2881:7;2877:23;2873:32;2870:52;;;2918:1;2915;2908:12;2870:52;-1:-1:-1;2941:23:1;;2790:180;-1:-1:-1;2790:180:1:o;3199:316::-;3276:6;3284;3292;3345:2;3333:9;3324:7;3320:23;3316:32;3313:52;;;3361:1;3358;3351:12;3313:52;-1:-1:-1;;3384:23:1;;;3454:2;3439:18;;3426:32;;-1:-1:-1;3505:2:1;3490:18;;;3477:32;;3199:316;-1:-1:-1;3199:316:1:o;3520:160::-;3585:20;;3641:13;;3634:21;3624:32;;3614:60;;3670:1;3667;3660:12;3614:60;3520:160;;;:::o;3685:315::-;3750:6;3758;3811:2;3799:9;3790:7;3786:23;3782:32;3779:52;;;3827:1;3824;3817:12;3779:52;3866:9;3853:23;3885:31;3910:5;3885:31;:::i;:::-;3935:5;-1:-1:-1;3959:35:1;3990:2;3975:18;;3959:35;:::i;:::-;3949:45;;3685:315;;;;;:::o;4005:180::-;4061:6;4114:2;4102:9;4093:7;4089:23;4085:32;4082:52;;;4130:1;4127;4120:12;4082:52;4153:26;4169:9;4153:26;:::i;4190:388::-;4258:6;4266;4319:2;4307:9;4298:7;4294:23;4290:32;4287:52;;;4335:1;4332;4325:12;4287:52;4374:9;4361:23;4393:31;4418:5;4393:31;:::i;:::-;4443:5;-1:-1:-1;4500:2:1;4485:18;;4472:32;4513:33;4472:32;4513:33;:::i;:::-;4565:7;4555:17;;;4190:388;;;;;:::o;4992:380::-;5071:1;5067:12;;;;5114;;;5135:61;;5189:4;5181:6;5177:17;5167:27;;5135:61;5242:2;5234:6;5231:14;5211:18;5208:38;5205:161;;5288:10;5283:3;5279:20;5276:1;5269:31;5323:4;5320:1;5313:15;5351:4;5348:1;5341:15;5205:161;;4992:380;;;:::o;5786:356::-;5988:2;5970:21;;;6007:18;;;6000:30;6066:34;6061:2;6046:18;;6039:62;6133:2;6118:18;;5786:356::o;8049:401::-;8251:2;8233:21;;;8290:2;8270:18;;;8263:30;8329:34;8324:2;8309:18;;8302:62;-1:-1:-1;;;8395:2:1;8380:18;;8373:35;8440:3;8425:19;;8049:401::o;8455:399::-;8657:2;8639:21;;;8696:2;8676:18;;;8669:30;8735:34;8730:2;8715:18;;8708:62;-1:-1:-1;;;8801:2:1;8786:18;;8779:33;8844:3;8829:19;;8455:399::o;9207:127::-;9268:10;9263:3;9259:20;9256:1;9249:31;9299:4;9296:1;9289:15;9323:4;9320:1;9313:15;9339:128;9379:3;9410:1;9406:6;9403:1;9400:13;9397:39;;;9416:18;;:::i;:::-;-1:-1:-1;9452:9:1;;9339:128::o;10286:217::-;10326:1;10352;10342:132;;10396:10;10391:3;10387:20;10384:1;10377:31;10431:4;10428:1;10421:15;10459:4;10456:1;10449:15;10342:132;-1:-1:-1;10488:9:1;;10286:217::o;11168:168::-;11208:7;11274:1;11270;11266:6;11262:14;11259:1;11256:21;11251:1;11244:9;11237:17;11233:45;11230:71;;;11281:18;;:::i;:::-;-1:-1:-1;11321:9:1;;11168:168::o;11341:125::-;11381:4;11409:1;11406;11403:8;11400:34;;;11414:18;;:::i;:::-;-1:-1:-1;11451:9:1;;11341:125::o;11603:127::-;11664:10;11659:3;11655:20;11652:1;11645:31;11695:4;11692:1;11685:15;11719:4;11716:1;11709:15;11735:251;11805:6;11858:2;11846:9;11837:7;11833:23;11829:32;11826:52;;;11874:1;11871;11864:12;11826:52;11906:9;11900:16;11925:31;11950:5;11925:31;:::i;11991:980::-;12253:4;12301:3;12290:9;12286:19;12332:6;12321:9;12314:25;12358:2;12396:6;12391:2;12380:9;12376:18;12369:34;12439:3;12434:2;12423:9;12419:18;12412:31;12463:6;12498;12492:13;12529:6;12521;12514:22;12567:3;12556:9;12552:19;12545:26;;12606:2;12598:6;12594:15;12580:29;;12627:1;12637:195;12651:6;12648:1;12645:13;12637:195;;;12716:13;;-1:-1:-1;;;;;12712:39:1;12700:52;;12807:15;;;;12772:12;;;;12748:1;12666:9;12637:195;;;-1:-1:-1;;;;;;;12888:32:1;;;;12883:2;12868:18;;12861:60;-1:-1:-1;;;12952:3:1;12937:19;12930:35;12849:3;11991:980;-1:-1:-1;;;11991:980:1:o;13588:306::-;13676:6;13684;13692;13745:2;13733:9;13724:7;13720:23;13716:32;13713:52;;;13761:1;13758;13751:12;13713:52;13790:9;13784:16;13774:26;;13840:2;13829:9;13825:18;13819:25;13809:35;;13884:2;13873:9;13869:18;13863:25;13853:35;;13588:306;;;;;:::o

Swarm Source

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