ETH Price: $3,470.55 (+1.51%)
Gas: 13 Gwei

Token

Alcatraz (ALCZ)
 

Overview

Max Total Supply

2,000,000 ALCZ

Holders

623 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,772.994677118944231163 ALCZ

Value
$0.00
0xbbb46762d687a5b6e558e8cd19fcc7c949b80e95
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Secure liquidity locking for Layer 2 networks and Ethereum, with low fees and high security with a core concept of revenue sharing that benefits both project creators and token holders.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Alcatraz

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 2 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    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.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 3 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 4 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 5 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 6 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 7 of 10 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

File 8 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

File 9 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

File 10 of 10 : Alcatraz.sol
/**
    Alcatraz
    Your fortress for secure liquidity. Making crypto safe for everyone and returning 
    profits to our token holders.
    
    Website: alcatraz.tech
    Telegram: t.me/alcatrazportal
    Twitter: twitter.com/Alcatraztech
**/

// SPDX-License-Identifier: No License

pragma solidity 0.8.21;

import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';

contract Alcatraz is ERC20, Ownable {

  IUniswapV2Router02 public immutable uniswapV2Router;
  address public immutable uniswapV2Pair;

  uint256 public constant MAX_SUPPLY = 2_000_000e18;

  bool private swapping;

  address public revShareWallet;
  address public marketingWallet;
  address public lpTokensReceiver;

  uint256 public maxTransactionAmount = (MAX_SUPPLY * 1) / 100; // 1%
  uint256 public swapTokensAtAmount = (MAX_SUPPLY * 5) / 10000; // 0.05%
  uint256 public maxWallet = (MAX_SUPPLY * 1) / 100; // 1%

  bool public limitsInEffect = true;
  bool public swapEnabled = false;

  bool public botCheckEnabled = true;

  // Anti-bot and anti-whale mappings and variables
  mapping(address => bool) bots;

  uint256 public constant taxRate = 4; // 4% of buy and sell
  uint256 public constant revenueShare = 1; // 1%
  uint256 public constant marketingShare = 2; // 2%
  uint256 public constant liquidityShare = 1; // 1%

  /******************/

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

  // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
  // could be subject to a maximum transfer amount
  mapping(address => bool) public automatedMarketMakerPairs;

  event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
  event ExcludeFromFees(address indexed account, bool isExcluded);
  event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
  event revShareWalletUpdated(address indexed newWallet, address indexed oldWallet);
  event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
  event lpTokensReceiverUpdated(address indexed newWallet, address indexed oldWallet);
  event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);

  constructor(address revWallet, address marWallet, address lpReceiverWallet) ERC20('Alcatraz', 'ALCZ') {

    IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    excludeFromMaxTransaction(address(_uniswapV2Router), true);
    uniswapV2Router = _uniswapV2Router;

    uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
    excludeFromMaxTransaction(address(uniswapV2Pair), true);
    _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

    revShareWallet = revWallet;
    marketingWallet = marWallet;
    lpTokensReceiver = lpReceiverWallet;

    // exclude from paying fees or having max transaction amount
    excludeFromFees(owner(), true);
    excludeFromFees(address(this), true);

    excludeFromMaxTransaction(owner(), true);
    excludeFromMaxTransaction(address(this), true);

    /*
        _mint is an internal function in ERC20.sol that is only called here,
        and CANNOT be called ever again
    */
    _mint(msg.sender, MAX_SUPPLY);
  }

  receive() external payable {}

  // remove limits after token is stable
  function removeLimits() external onlyOwner {
    limitsInEffect = false;
  }

  // change the minimum amount of tokens to sell from fees
  function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
    require(newAmount >= (totalSupply() * 1) / 100000, 'Swap amount cannot be lower than 0.001% total supply.');
    require(newAmount <= (totalSupply() * 5) / 1000, 'Swap amount cannot be higher than 0.5% total supply.');
    swapTokensAtAmount = newAmount;
  }

  function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
    require(newNum >= ((totalSupply() * 5) / 1000) / 1e18, 'Cannot set maxTransactionAmount lower than 0.5%');
    maxTransactionAmount = newNum * (10 ** 18);
  }

  function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
    require(newNum >= ((totalSupply() * 10) / 1000) / 1e18, 'Cannot set maxWallet lower than 1.0%');
    maxWallet = newNum * (10 ** 18);
  }

  function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
    _isExcludedMaxTransactionAmount[updAds] = isEx;
  }

  // only use to disable contract sales if absolutely necessary (emergency use only)
  function updateSwapEnabled(bool enabled) external onlyOwner {
    swapEnabled = enabled;
  }

  function excludeFromFees(address account, bool excluded) public onlyOwner {
    _isExcludedFromFees[account] = excluded;
    emit ExcludeFromFees(account, excluded);
  }

  function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
    require(pair != uniswapV2Pair, 'The pair cannot be removed from automatedMarketMakerPairs');

    _setAutomatedMarketMakerPair(pair, value);
  }

  function _setAutomatedMarketMakerPair(address pair, bool value) private {
    automatedMarketMakerPairs[pair] = value;

    emit SetAutomatedMarketMakerPair(pair, value);
  }

  function updateRevShareWallet(address newRevShareWallet) external onlyOwner {
    emit revShareWalletUpdated(newRevShareWallet, revShareWallet);
    revShareWallet = newRevShareWallet;
  }

  function updateMarketingWallet(address newWallet) external onlyOwner {
    emit marketingWalletUpdated(newWallet, marketingWallet);
    marketingWallet = newWallet;
  }

  function setLpTokensReceiver(address newWallet) public onlyOwner {
    emit lpTokensReceiverUpdated(newWallet, lpTokensReceiver);
    lpTokensReceiver = newWallet;
  }

  function isExcludedFromFees(address account) public view returns (bool) {
    return _isExcludedFromFees[account];
  }

  function isBot(address account) public view returns (bool) {
    return bots[account];
  }

  function _transfer(address from, address to, uint256 amount) internal override {
    require(from != address(0), 'TOKEN: transfer from the zero address');
    require(to != address(0), 'TOKEN: transfer to the zero address');
    require(!bots[from] && !bots[to], "TOKEN: Nasty bot, ain't you!");

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

    if (limitsInEffect) {
      if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {

        //when buy
        if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
          require(amount <= maxTransactionAmount, 'Buy transfer amount exceeds the maxTransactionAmount.');
          require(amount + balanceOf(to) <= maxWallet, 'Max wallet exceeded');
        }
        //when sell
        else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
          require(amount <= maxTransactionAmount, 'Sell transfer amount exceeds the maxTransactionAmount.');
        } else if (!_isExcludedMaxTransactionAmount[to]) {
          require(amount + balanceOf(to) <= maxWallet, 'Max wallet exceeded');
        }
      }
    }

    uint256 contractTokenBalance = balanceOf(address(this));

    bool canSwap = contractTokenBalance >= swapTokensAtAmount;

    if (
      canSwap &&
      swapEnabled &&
      !swapping &&
      !automatedMarketMakerPairs[from] &&
      !_isExcludedFromFees[from] &&
      !_isExcludedFromFees[to]
    ) {
      swapping = true;

      swapBack();

      swapping = false;
    }

    bool takeFee = !swapping;

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

    uint256 fees = 0;
    // only take fees on buys/sells, do not take on wallet transfers
    if (takeFee) {
      // on sell
      if (automatedMarketMakerPairs[to] && taxRate > 0) {
        fees = (amount * taxRate) / 100;
      }
      // on buy
      else if (automatedMarketMakerPairs[from] && taxRate > 0) {
        fees = (amount * taxRate) / 100;
      }

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

      amount -= fees;
    }

    super._transfer(from, to, amount);
  }

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

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

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

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

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

  function swapBack() private {
    uint256 contractBalance = balanceOf(address(this));
    bool success;

    if (contractBalance == 0) {
      return;
    }

    if (contractBalance > swapTokensAtAmount * 20) {
      contractBalance = swapTokensAtAmount * 20;
    }

    // Halve the amount of liquidity tokens
    uint256 liquidityTokens = (contractBalance * liquidityShare) / taxRate / 2;
    uint256 amountToSwapForETH = contractBalance - liquidityTokens;

    uint256 initialETHBalance = address(this).balance;

    swapTokensForEth(amountToSwapForETH);

    uint256 ethBalance = address(this).balance - initialETHBalance;

    uint256 ethForRevShare = (ethBalance * revenueShare) / (taxRate - (liquidityShare / 2));

    uint256 ethForMarketing = (ethBalance * marketingShare) / (taxRate - (liquidityShare / 2));

    uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForMarketing;

    (success, ) = address(marketingWallet).call{ value: ethForMarketing }('');

    if (liquidityTokens > 0 && ethForLiquidity > 0) {
      addLiquidity(liquidityTokens, ethForLiquidity);
      emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, liquidityShare);
    }

    (success, ) = address(revShareWallet).call{ value: address(this).balance }('');
  }

  function withdrawStuckToken(address _token, address _to) external onlyOwner {
    require(_token != address(0), '_token address cannot be 0');
    uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
    IERC20(_token).transfer(_to, _contractBalance);
  }

  function withdrawStuckEth(address toAddr) external onlyOwner {
    (bool success, ) = toAddr.call{ value: address(this).balance }('');
    require(success);
  }

  // @dev team renounce blacklist commands
  function removeBotCheck() public onlyOwner {
    botCheckEnabled = false;
  }

  function blockBot(address _addr, bool yourOut) public onlyOwner {
    require(botCheckEnabled, 'Team has revoked bot check');
    require(
      _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
      "Cannot blacklist token's v2 router or v2 pool."
    );
    bots[_addr] = yourOut;
  }

  // @dev unblock address; not affected by botCheckEnabled incase team mistakenly blocked real address
  function unblockBot(address _addr) public onlyOwner {
    bots[_addr] = false;
  }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"revWallet","type":"address"},{"internalType":"address","name":"marWallet","type":"address"},{"internalType":"address","name":"lpReceiverWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"lpTokensReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"yourOut","type":"bool"}],"name":"blockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"botCheckEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpTokensReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeBotCheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revenueShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setLpTokensReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","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":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405260646200001e6a01a784379d99db42000000600162000610565b6200002a919062000630565b600955612710620000486a01a784379d99db42000000600562000610565b62000054919062000630565b600a556064620000716a01a784379d99db42000000600162000610565b6200007d919062000630565b600b55600c805462ffffff1916620100011790553480156200009e57600080fd5b5060405162002fac38038062002fac833981016040819052620000c19162000670565b6040518060400160405280600881526020016720b631b0ba3930bd60c11b8152506040518060400160405280600481526020016320a621ad60e11b81525081600390816200011091906200075e565b5060046200011f82826200075e565b5050506200013c620001366200038860201b60201c565b6200038c565b737a250d5630b4cf539739df2c5dacb4c659f2488d6200015e816001620003de565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620001a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cf91906200082a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200021d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024391906200082a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000291573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b791906200082a565b6001600160a01b031660a0819052620002d2906001620003de565b60a051620002e290600162000413565b600680546001600160a01b03199081166001600160a01b0387811691909117909255600780548216868416179055600880549091168483161790556005546200032e9116600162000467565b6200033b30600162000467565b6200035a620003526005546001600160a01b031690565b6001620003de565b62000367306001620003de565b6200037e336a01a784379d99db42000000620004d0565b5050505062000865565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003e862000597565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6200047162000597565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200052c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200054091906200084f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000523565b565b505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200062a576200062a620005fa565b92915050565b6000826200064e57634e487b7160e01b600052601260045260246000fd5b500490565b80516001600160a01b03811681146200066b57600080fd5b919050565b6000806000606084860312156200068657600080fd5b620006918462000653565b9250620006a16020850162000653565b9150620006b16040850162000653565b90509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006e557607f821691505b6020821081036200070657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005f557600081815260208120601f850160051c81016020861015620007355750805b601f850160051c820191505b81811015620007565782815560010162000741565b505050505050565b81516001600160401b038111156200077a576200077a620006ba565b62000792816200078b8454620006d0565b846200070c565b602080601f831160018114620007ca5760008415620007b15750858301515b600019600386901b1c1916600185901b17855562000756565b600085815260208120601f198616915b82811015620007fb57888601518255948401946001909101908401620007da565b50858210156200081a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200083d57600080fd5b620008488262000653565b9392505050565b808201808211156200062a576200062a620005fa565b60805160a0516126f0620008bc6000396000818161050501528181610cc70152610ded0152600081816103d001528181612115015281816121ce0152818161220a0152818161228401526122ec01526126f06000f3fe6080604052600436106102cd5760003560e01c8063782c4e9911610175578063aacebbe3116100dc578063c8c8ebe411610095578063e2f456051161006f578063e2f45605146108fc578063f2fde38b14610912578063f8b45b0514610932578063ff0984ca146103a957600080fd5b8063c8c8ebe4146108a6578063d257b34f146108bc578063dd62ed3e146108dc57600080fd5b8063aacebbe3146107d6578063adee28ff146107f6578063b62496f514610816578063bc205ad314610846578063c024666814610866578063c18bc1951461088657600080fd5b8063924de9b71161012e578063924de9b71461072157806394f45b7e1461074157806395d89b41146107615780639a7a23d614610776578063a457c2d714610796578063a9059cbb146107b657600080fd5b8063782c4e991461066e5780637ca8448a1461068e5780638089dbfd146106ae578063854a8d0f146106ce5780638b518591146106e35780638da5cb5b1461070357600080fd5b806339509351116102345780636ddd1713116101ed578063751039fc116101c7578063751039fc146106045780637571336a1461061957806375f0a87414610639578063771a3a1d1461065957600080fd5b80636ddd17131461059a57806370a08231146105b9578063715018a6146105ef57600080fd5b8063395093511461049a5780633bbac579146104ba57806349bd5a5e146104f35780634a62bb65146105275780634fbee193146105415780636b9990531461057a57600080fd5b80631694505e116102865780631694505e146103be57806318160ddd1461040a578063203e727e1461041f57806323b872dd1461043f578063313ce5671461045f57806332cb6b0c1461047b57600080fd5b8063021246a9146102d957806306fdde03146102fb57806309218ee714610326578063095ea7b31461034957806310d5de531461037957806315291cd4146103a957600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102f96102f4366004612379565b610948565b005b34801561030757600080fd5b506103106109ad565b60405161031d919061239d565b60405180910390f35b34801561033257600080fd5b5061033b600281565b60405190815260200161031d565b34801561035557600080fd5b506103696103643660046123eb565b610a3f565b604051901515815260200161031d565b34801561038557600080fd5b50610369610394366004612379565b600f6020526000908152604090205460ff1681565b3480156103b557600080fd5b5061033b600181565b3480156103ca57600080fd5b506103f27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161031d565b34801561041657600080fd5b5060025461033b565b34801561042b57600080fd5b506102f961043a366004612417565b610a59565b34801561044b57600080fd5b5061036961045a366004612430565b610b19565b34801561046b57600080fd5b506040516012815260200161031d565b34801561048757600080fd5b5061033b6a01a784379d99db4200000081565b3480156104a657600080fd5b506103696104b53660046123eb565b610b3d565b3480156104c657600080fd5b506103696104d5366004612379565b6001600160a01b03166000908152600d602052604090205460ff1690565b3480156104ff57600080fd5b506103f27f000000000000000000000000000000000000000000000000000000000000000081565b34801561053357600080fd5b50600c546103699060ff1681565b34801561054d57600080fd5b5061036961055c366004612379565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561058657600080fd5b506102f9610595366004612379565b610b5f565b3480156105a657600080fd5b50600c5461036990610100900460ff1681565b3480156105c557600080fd5b5061033b6105d4366004612379565b6001600160a01b031660009081526020819052604090205490565b3480156105fb57600080fd5b506102f9610b88565b34801561061057600080fd5b506102f9610b9c565b34801561062557600080fd5b506102f961063436600461247f565b610bb0565b34801561064557600080fd5b506007546103f2906001600160a01b031681565b34801561066557600080fd5b5061033b600481565b34801561067a57600080fd5b506006546103f2906001600160a01b031681565b34801561069a57600080fd5b506102f96106a9366004612379565b610be3565b3480156106ba57600080fd5b506008546103f2906001600160a01b031681565b3480156106da57600080fd5b506102f9610c4f565b3480156106ef57600080fd5b506102f96106fe36600461247f565b610c65565b34801561070f57600080fd5b506005546001600160a01b03166103f2565b34801561072d57600080fd5b506102f961073c3660046124b8565b610db2565b34801561074d57600080fd5b50600c546103699062010000900460ff1681565b34801561076d57600080fd5b50610310610dd4565b34801561078257600080fd5b506102f961079136600461247f565b610de3565b3480156107a257600080fd5b506103696107b13660046123eb565b610e9c565b3480156107c257600080fd5b506103696107d13660046123eb565b610f17565b3480156107e257600080fd5b506102f96107f1366004612379565b610f25565b34801561080257600080fd5b506102f9610811366004612379565b610f8a565b34801561082257600080fd5b50610369610831366004612379565b60106020526000908152604090205460ff1681565b34801561085257600080fd5b506102f96108613660046124d5565b610fef565b34801561087257600080fd5b506102f961088136600461247f565b611135565b34801561089257600080fd5b506102f96108a1366004612417565b61119c565b3480156108b257600080fd5b5061033b60095481565b3480156108c857600080fd5b506102f96108d7366004612417565b61124b565b3480156108e857600080fd5b5061033b6108f73660046124d5565b611374565b34801561090857600080fd5b5061033b600a5481565b34801561091e57600080fd5b506102f961092d366004612379565b61139f565b34801561093e57600080fd5b5061033b600b5481565b610950611418565b6008546040516001600160a01b03918216918316907fd03d2bc9d0cd1c31f08e3fc07c11c7ff047d7491a7365bfa741c83121f7dec4490600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6060600380546109bc90612503565b80601f01602080910402602001604051908101604052809291908181526020018280546109e890612503565b8015610a355780601f10610a0a57610100808354040283529160200191610a35565b820191906000526020600020905b815481529060010190602001808311610a1857829003601f168201915b5050505050905090565b600033610a4d818585611472565b60019150505b92915050565b610a61611418565b670de0b6b3a76400006103e8610a7660025490565b610a81906005612553565b610a8b919061256a565b610a95919061256a565b811015610b015760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b60648201526084015b60405180910390fd5b610b1381670de0b6b3a7640000612553565b60095550565b600033610b27858285611596565b610b3285858561160a565b506001949350505050565b600033610a4d818585610b508383611374565b610b5a919061258c565b611472565b610b67611418565b6001600160a01b03166000908152600d60205260409020805460ff19169055565b610b90611418565b610b9a6000611c57565b565b610ba4611418565b600c805460ff19169055565b610bb8611418565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b610beb611418565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c38576040519150601f19603f3d011682016040523d82523d6000602084013e610c3d565b606091505b5050905080610c4b57600080fd5b5050565b610c57611418565b600c805462ff000019169055565b610c6d611418565b600c5462010000900460ff16610cc55760405162461bcd60e51b815260206004820152601a60248201527f5465616d20686173207265766f6b656420626f7420636865636b0000000000006044820152606401610af8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614158015610d2457506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d14155b610d875760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610af8565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610dba611418565b600c80549115156101000261ff0019909216919091179055565b6060600480546109bc90612503565b610deb611418565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610e925760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610af8565b610c4b8282611ca9565b60003381610eaa8286611374565b905083811015610f0a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610af8565b610b328286868403611472565b600033610a4d81858561160a565b610f2d611418565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610f92611418565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b610ff7611418565b6001600160a01b03821661104d5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610af8565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611094573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b8919061259f565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af115801561110b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112f91906125b8565b50505050565b61113d611418565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6111a4611418565b670de0b6b3a76400006103e86111b960025490565b6111c490600a612553565b6111ce919061256a565b6111d8919061256a565b8110156112335760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610af8565b61124581670de0b6b3a7640000612553565b600b5550565b611253611418565b620186a061126060025490565b61126b906001612553565b611275919061256a565b8110156112e25760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610af8565b6103e86112ee60025490565b6112f9906005612553565b611303919061256a565b81111561136f5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610af8565b600a55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6113a7611418565b6001600160a01b03811661140c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610af8565b61141581611c57565b50565b6005546001600160a01b03163314610b9a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af8565b6001600160a01b0383166114d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610af8565b6001600160a01b0382166115355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610af8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006115a28484611374565b9050600019811461112f57818110156115fd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610af8565b61112f8484848403611472565b6001600160a01b03831661166e5760405162461bcd60e51b815260206004820152602560248201527f544f4b454e3a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610af8565b6001600160a01b0382166116d05760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610af8565b6001600160a01b0383166000908152600d602052604090205460ff1615801561171257506001600160a01b0382166000908152600d602052604090205460ff16155b61175e5760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204e6173747920626f742c2061696e277420796f7521000000006044820152606401610af8565b806000036117775761177283836000611cfd565b505050565b600c5460ff1615611a5a576005546001600160a01b038481169116148015906117ae57506005546001600160a01b03838116911614155b80156117c257506001600160a01b03821615155b80156117d957506001600160a01b03821661dead14155b80156117ef5750600554600160a01b900460ff16155b15611a5a576001600160a01b03831660009081526010602052604090205460ff16801561183557506001600160a01b0382166000908152600f602052604090205460ff16155b15611919576009548111156118aa5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610af8565b600b546001600160a01b0383166000908152602081905260409020546118d0908361258c565b11156119145760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610af8565b611a5a565b6001600160a01b03821660009081526010602052604090205460ff16801561195a57506001600160a01b0383166000908152600f602052604090205460ff16155b156119d0576009548111156119145760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610af8565b6001600160a01b0382166000908152600f602052604090205460ff16611a5a57600b546001600160a01b038316600090815260208190526040902054611a16908361258c565b1115611a5a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610af8565b30600090815260208190526040902054600a5481108015908190611a855750600c54610100900460ff165b8015611a9b5750600554600160a01b900460ff16155b8015611ac057506001600160a01b03851660009081526010602052604090205460ff16155b8015611ae557506001600160a01b0385166000908152600e602052604090205460ff16155b8015611b0a57506001600160a01b0384166000908152600e602052604090205460ff16155b15611b38576005805460ff60a01b1916600160a01b179055611b2a611ea1565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600e602052604090205460ff600160a01b909204821615911680611b8657506001600160a01b0385166000908152600e602052604090205460ff165b15611b8f575060005b60008115611c43576001600160a01b03861660009081526010602052604090205460ff168015611bbd575060015b15611be0576064611bcf600487612553565b611bd9919061256a565b9050611c25565b6001600160a01b03871660009081526010602052604090205460ff168015611c06575060015b15611c25576064611c18600487612553565b611c22919061256a565b90505b8015611c3657611c36873083611cfd565b611c4081866125d5565b94505b611c4e878787611cfd565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d615760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610af8565b6001600160a01b038216611dc35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610af8565b6001600160a01b03831660009081526020819052604090205481811015611e3b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610af8565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361112f565b3060009081526020819052604081205490818103611ebd575050565b600a54611ecb906014612553565b821115611ee357600a54611ee0906014612553565b91505b600060026004611ef4600186612553565b611efe919061256a565b611f08919061256a565b90506000611f1682856125d5565b905047611f22826120be565b6000611f2e82476125d5565b90506000611f3e6002600161256a565b611f499060046125d5565b611f54600184612553565b611f5e919061256a565b90506000611f6e6002600161256a565b611f799060046125d5565b611f84600285612553565b611f8e919061256a565b9050600081611f9d84866125d5565b611fa791906125d5565b6007546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114611ff5576040519150601f19603f3d011682016040523d82523d6000602084013e611ffa565b606091505b5090985050861580159061200e5750600081115b1561205e5761201d878261227e565b604080518781526020810183905260018183015290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146120ab576040519150601f19603f3d011682016040523d82523d6000602084013e6120b0565b606091505b505050505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120f3576120f36125e8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612171573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061219591906125fe565b816001815181106121a8576121a86125e8565b60200260200101906001600160a01b031690816001600160a01b0316815250506121f3307f000000000000000000000000000000000000000000000000000000000000000084611472565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061224890859060009086903090429060040161261b565b600060405180830381600087803b15801561226257600080fd5b505af1158015612276573d6000803e3d6000fd5b505050505050565b6122a9307f000000000000000000000000000000000000000000000000000000000000000084611472565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612338573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061235d919061268c565b5050505050565b6001600160a01b038116811461141557600080fd5b60006020828403121561238b57600080fd5b813561239681612364565b9392505050565b600060208083528351808285015260005b818110156123ca578581018301518582016040015282016123ae565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156123fe57600080fd5b823561240981612364565b946020939093013593505050565b60006020828403121561242957600080fd5b5035919050565b60008060006060848603121561244557600080fd5b833561245081612364565b9250602084013561246081612364565b929592945050506040919091013590565b801515811461141557600080fd5b6000806040838503121561249257600080fd5b823561249d81612364565b915060208301356124ad81612471565b809150509250929050565b6000602082840312156124ca57600080fd5b813561239681612471565b600080604083850312156124e857600080fd5b82356124f381612364565b915060208301356124ad81612364565b600181811c9082168061251757607f821691505b60208210810361253757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a5357610a5361253d565b60008261258757634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610a5357610a5361253d565b6000602082840312156125b157600080fd5b5051919050565b6000602082840312156125ca57600080fd5b815161239681612471565b81810381811115610a5357610a5361253d565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561261057600080fd5b815161239681612364565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561266b5784516001600160a01b031683529383019391830191600101612646565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156126a157600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122015283b2ff6d55547e2403844f35995d11e3e001f5d109e2cb2c072eb2f96851264736f6c634300081500330000000000000000000000003c0da4b0311b55c26bd672c996d8e4ede2ef63930000000000000000000000003c0da4b0311b55c26bd672c996d8e4ede2ef63930000000000000000000000009c4e606d6acb4f959d14debb80dfdfb6648571ea

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c8063782c4e9911610175578063aacebbe3116100dc578063c8c8ebe411610095578063e2f456051161006f578063e2f45605146108fc578063f2fde38b14610912578063f8b45b0514610932578063ff0984ca146103a957600080fd5b8063c8c8ebe4146108a6578063d257b34f146108bc578063dd62ed3e146108dc57600080fd5b8063aacebbe3146107d6578063adee28ff146107f6578063b62496f514610816578063bc205ad314610846578063c024666814610866578063c18bc1951461088657600080fd5b8063924de9b71161012e578063924de9b71461072157806394f45b7e1461074157806395d89b41146107615780639a7a23d614610776578063a457c2d714610796578063a9059cbb146107b657600080fd5b8063782c4e991461066e5780637ca8448a1461068e5780638089dbfd146106ae578063854a8d0f146106ce5780638b518591146106e35780638da5cb5b1461070357600080fd5b806339509351116102345780636ddd1713116101ed578063751039fc116101c7578063751039fc146106045780637571336a1461061957806375f0a87414610639578063771a3a1d1461065957600080fd5b80636ddd17131461059a57806370a08231146105b9578063715018a6146105ef57600080fd5b8063395093511461049a5780633bbac579146104ba57806349bd5a5e146104f35780634a62bb65146105275780634fbee193146105415780636b9990531461057a57600080fd5b80631694505e116102865780631694505e146103be57806318160ddd1461040a578063203e727e1461041f57806323b872dd1461043f578063313ce5671461045f57806332cb6b0c1461047b57600080fd5b8063021246a9146102d957806306fdde03146102fb57806309218ee714610326578063095ea7b31461034957806310d5de531461037957806315291cd4146103a957600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102f96102f4366004612379565b610948565b005b34801561030757600080fd5b506103106109ad565b60405161031d919061239d565b60405180910390f35b34801561033257600080fd5b5061033b600281565b60405190815260200161031d565b34801561035557600080fd5b506103696103643660046123eb565b610a3f565b604051901515815260200161031d565b34801561038557600080fd5b50610369610394366004612379565b600f6020526000908152604090205460ff1681565b3480156103b557600080fd5b5061033b600181565b3480156103ca57600080fd5b506103f27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161031d565b34801561041657600080fd5b5060025461033b565b34801561042b57600080fd5b506102f961043a366004612417565b610a59565b34801561044b57600080fd5b5061036961045a366004612430565b610b19565b34801561046b57600080fd5b506040516012815260200161031d565b34801561048757600080fd5b5061033b6a01a784379d99db4200000081565b3480156104a657600080fd5b506103696104b53660046123eb565b610b3d565b3480156104c657600080fd5b506103696104d5366004612379565b6001600160a01b03166000908152600d602052604090205460ff1690565b3480156104ff57600080fd5b506103f27f000000000000000000000000627850c471c9292e6606010ceca2bf9fa35cb79181565b34801561053357600080fd5b50600c546103699060ff1681565b34801561054d57600080fd5b5061036961055c366004612379565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561058657600080fd5b506102f9610595366004612379565b610b5f565b3480156105a657600080fd5b50600c5461036990610100900460ff1681565b3480156105c557600080fd5b5061033b6105d4366004612379565b6001600160a01b031660009081526020819052604090205490565b3480156105fb57600080fd5b506102f9610b88565b34801561061057600080fd5b506102f9610b9c565b34801561062557600080fd5b506102f961063436600461247f565b610bb0565b34801561064557600080fd5b506007546103f2906001600160a01b031681565b34801561066557600080fd5b5061033b600481565b34801561067a57600080fd5b506006546103f2906001600160a01b031681565b34801561069a57600080fd5b506102f96106a9366004612379565b610be3565b3480156106ba57600080fd5b506008546103f2906001600160a01b031681565b3480156106da57600080fd5b506102f9610c4f565b3480156106ef57600080fd5b506102f96106fe36600461247f565b610c65565b34801561070f57600080fd5b506005546001600160a01b03166103f2565b34801561072d57600080fd5b506102f961073c3660046124b8565b610db2565b34801561074d57600080fd5b50600c546103699062010000900460ff1681565b34801561076d57600080fd5b50610310610dd4565b34801561078257600080fd5b506102f961079136600461247f565b610de3565b3480156107a257600080fd5b506103696107b13660046123eb565b610e9c565b3480156107c257600080fd5b506103696107d13660046123eb565b610f17565b3480156107e257600080fd5b506102f96107f1366004612379565b610f25565b34801561080257600080fd5b506102f9610811366004612379565b610f8a565b34801561082257600080fd5b50610369610831366004612379565b60106020526000908152604090205460ff1681565b34801561085257600080fd5b506102f96108613660046124d5565b610fef565b34801561087257600080fd5b506102f961088136600461247f565b611135565b34801561089257600080fd5b506102f96108a1366004612417565b61119c565b3480156108b257600080fd5b5061033b60095481565b3480156108c857600080fd5b506102f96108d7366004612417565b61124b565b3480156108e857600080fd5b5061033b6108f73660046124d5565b611374565b34801561090857600080fd5b5061033b600a5481565b34801561091e57600080fd5b506102f961092d366004612379565b61139f565b34801561093e57600080fd5b5061033b600b5481565b610950611418565b6008546040516001600160a01b03918216918316907fd03d2bc9d0cd1c31f08e3fc07c11c7ff047d7491a7365bfa741c83121f7dec4490600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6060600380546109bc90612503565b80601f01602080910402602001604051908101604052809291908181526020018280546109e890612503565b8015610a355780601f10610a0a57610100808354040283529160200191610a35565b820191906000526020600020905b815481529060010190602001808311610a1857829003601f168201915b5050505050905090565b600033610a4d818585611472565b60019150505b92915050565b610a61611418565b670de0b6b3a76400006103e8610a7660025490565b610a81906005612553565b610a8b919061256a565b610a95919061256a565b811015610b015760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b60648201526084015b60405180910390fd5b610b1381670de0b6b3a7640000612553565b60095550565b600033610b27858285611596565b610b3285858561160a565b506001949350505050565b600033610a4d818585610b508383611374565b610b5a919061258c565b611472565b610b67611418565b6001600160a01b03166000908152600d60205260409020805460ff19169055565b610b90611418565b610b9a6000611c57565b565b610ba4611418565b600c805460ff19169055565b610bb8611418565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b610beb611418565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c38576040519150601f19603f3d011682016040523d82523d6000602084013e610c3d565b606091505b5050905080610c4b57600080fd5b5050565b610c57611418565b600c805462ff000019169055565b610c6d611418565b600c5462010000900460ff16610cc55760405162461bcd60e51b815260206004820152601a60248201527f5465616d20686173207265766f6b656420626f7420636865636b0000000000006044820152606401610af8565b7f000000000000000000000000627850c471c9292e6606010ceca2bf9fa35cb7916001600160a01b0316826001600160a01b031614158015610d2457506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d14155b610d875760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610af8565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610dba611418565b600c80549115156101000261ff0019909216919091179055565b6060600480546109bc90612503565b610deb611418565b7f000000000000000000000000627850c471c9292e6606010ceca2bf9fa35cb7916001600160a01b0316826001600160a01b031603610e925760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610af8565b610c4b8282611ca9565b60003381610eaa8286611374565b905083811015610f0a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610af8565b610b328286868403611472565b600033610a4d81858561160a565b610f2d611418565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610f92611418565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b610ff7611418565b6001600160a01b03821661104d5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610af8565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611094573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b8919061259f565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af115801561110b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112f91906125b8565b50505050565b61113d611418565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6111a4611418565b670de0b6b3a76400006103e86111b960025490565b6111c490600a612553565b6111ce919061256a565b6111d8919061256a565b8110156112335760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610af8565b61124581670de0b6b3a7640000612553565b600b5550565b611253611418565b620186a061126060025490565b61126b906001612553565b611275919061256a565b8110156112e25760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610af8565b6103e86112ee60025490565b6112f9906005612553565b611303919061256a565b81111561136f5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610af8565b600a55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6113a7611418565b6001600160a01b03811661140c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610af8565b61141581611c57565b50565b6005546001600160a01b03163314610b9a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af8565b6001600160a01b0383166114d45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610af8565b6001600160a01b0382166115355760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610af8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006115a28484611374565b9050600019811461112f57818110156115fd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610af8565b61112f8484848403611472565b6001600160a01b03831661166e5760405162461bcd60e51b815260206004820152602560248201527f544f4b454e3a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610af8565b6001600160a01b0382166116d05760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610af8565b6001600160a01b0383166000908152600d602052604090205460ff1615801561171257506001600160a01b0382166000908152600d602052604090205460ff16155b61175e5760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204e6173747920626f742c2061696e277420796f7521000000006044820152606401610af8565b806000036117775761177283836000611cfd565b505050565b600c5460ff1615611a5a576005546001600160a01b038481169116148015906117ae57506005546001600160a01b03838116911614155b80156117c257506001600160a01b03821615155b80156117d957506001600160a01b03821661dead14155b80156117ef5750600554600160a01b900460ff16155b15611a5a576001600160a01b03831660009081526010602052604090205460ff16801561183557506001600160a01b0382166000908152600f602052604090205460ff16155b15611919576009548111156118aa5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610af8565b600b546001600160a01b0383166000908152602081905260409020546118d0908361258c565b11156119145760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610af8565b611a5a565b6001600160a01b03821660009081526010602052604090205460ff16801561195a57506001600160a01b0383166000908152600f602052604090205460ff16155b156119d0576009548111156119145760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610af8565b6001600160a01b0382166000908152600f602052604090205460ff16611a5a57600b546001600160a01b038316600090815260208190526040902054611a16908361258c565b1115611a5a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610af8565b30600090815260208190526040902054600a5481108015908190611a855750600c54610100900460ff165b8015611a9b5750600554600160a01b900460ff16155b8015611ac057506001600160a01b03851660009081526010602052604090205460ff16155b8015611ae557506001600160a01b0385166000908152600e602052604090205460ff16155b8015611b0a57506001600160a01b0384166000908152600e602052604090205460ff16155b15611b38576005805460ff60a01b1916600160a01b179055611b2a611ea1565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600e602052604090205460ff600160a01b909204821615911680611b8657506001600160a01b0385166000908152600e602052604090205460ff165b15611b8f575060005b60008115611c43576001600160a01b03861660009081526010602052604090205460ff168015611bbd575060015b15611be0576064611bcf600487612553565b611bd9919061256a565b9050611c25565b6001600160a01b03871660009081526010602052604090205460ff168015611c06575060015b15611c25576064611c18600487612553565b611c22919061256a565b90505b8015611c3657611c36873083611cfd565b611c4081866125d5565b94505b611c4e878787611cfd565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d615760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610af8565b6001600160a01b038216611dc35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610af8565b6001600160a01b03831660009081526020819052604090205481811015611e3b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610af8565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361112f565b3060009081526020819052604081205490818103611ebd575050565b600a54611ecb906014612553565b821115611ee357600a54611ee0906014612553565b91505b600060026004611ef4600186612553565b611efe919061256a565b611f08919061256a565b90506000611f1682856125d5565b905047611f22826120be565b6000611f2e82476125d5565b90506000611f3e6002600161256a565b611f499060046125d5565b611f54600184612553565b611f5e919061256a565b90506000611f6e6002600161256a565b611f799060046125d5565b611f84600285612553565b611f8e919061256a565b9050600081611f9d84866125d5565b611fa791906125d5565b6007546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114611ff5576040519150601f19603f3d011682016040523d82523d6000602084013e611ffa565b606091505b5090985050861580159061200e5750600081115b1561205e5761201d878261227e565b604080518781526020810183905260018183015290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146120ab576040519150601f19603f3d011682016040523d82523d6000602084013e6120b0565b606091505b505050505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120f3576120f36125e8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612171573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061219591906125fe565b816001815181106121a8576121a86125e8565b60200260200101906001600160a01b031690816001600160a01b0316815250506121f3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611472565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061224890859060009086903090429060040161261b565b600060405180830381600087803b15801561226257600080fd5b505af1158015612276573d6000803e3d6000fd5b505050505050565b6122a9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611472565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612338573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061235d919061268c565b5050505050565b6001600160a01b038116811461141557600080fd5b60006020828403121561238b57600080fd5b813561239681612364565b9392505050565b600060208083528351808285015260005b818110156123ca578581018301518582016040015282016123ae565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156123fe57600080fd5b823561240981612364565b946020939093013593505050565b60006020828403121561242957600080fd5b5035919050565b60008060006060848603121561244557600080fd5b833561245081612364565b9250602084013561246081612364565b929592945050506040919091013590565b801515811461141557600080fd5b6000806040838503121561249257600080fd5b823561249d81612364565b915060208301356124ad81612471565b809150509250929050565b6000602082840312156124ca57600080fd5b813561239681612471565b600080604083850312156124e857600080fd5b82356124f381612364565b915060208301356124ad81612364565b600181811c9082168061251757607f821691505b60208210810361253757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a5357610a5361253d565b60008261258757634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610a5357610a5361253d565b6000602082840312156125b157600080fd5b5051919050565b6000602082840312156125ca57600080fd5b815161239681612471565b81810381811115610a5357610a5361253d565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561261057600080fd5b815161239681612364565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561266b5784516001600160a01b031683529383019391830191600101612646565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156126a157600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122015283b2ff6d55547e2403844f35995d11e3e001f5d109e2cb2c072eb2f96851264736f6c63430008150033

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

0000000000000000000000003c0da4b0311b55c26bd672c996d8e4ede2ef63930000000000000000000000003c0da4b0311b55c26bd672c996d8e4ede2ef63930000000000000000000000009c4e606d6acb4f959d14debb80dfdfb6648571ea

-----Decoded View---------------
Arg [0] : revWallet (address): 0x3C0da4B0311B55c26bD672C996d8e4EdE2EF6393
Arg [1] : marWallet (address): 0x3C0da4B0311B55c26bD672C996d8e4EdE2EF6393
Arg [2] : lpReceiverWallet (address): 0x9C4e606d6aCb4f959d14dEbb80dFDFb6648571ea

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000003c0da4b0311b55c26bd672c996d8e4ede2ef6393
Arg [1] : 0000000000000000000000003c0da4b0311b55c26bd672c996d8e4ede2ef6393
Arg [2] : 0000000000000000000000009c4e606d6acb4f959d14debb80dfdfb6648571ea


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.