ETH Price: $3,113.42 (+1.39%)
Gas: 4 Gwei

Token

Nuke (NUKE)
 

Overview

Max Total Supply

100,000,000 NUKE

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
daddysgotit.eth
Balance
62,508.432769869309779275 NUKE

Value
$0.00
0x0634f86d3e8902f69fef5b72c73609b01ea3dad8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NUKE

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*

TG: https://t.me/NuclearPowerr
Medium: https://medium.com/@nuclearpowereth 
Website: https://nuketoken.xyz/
Twitter: https://twitter.com/NukeToken

Nuke it! 
Nuclear energy for the win. 

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.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.zeppelin.solutions/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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

    /**
     * @dev 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * 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;
        _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;
        }
        _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 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 {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

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

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

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

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public _liqHasBeenAdded  = false;
    bool public botProtection  = true;
    bool public swapEnabled = false;
    uint256 public _liqAddedBlock   = 0;
    uint256 public breathingBlocks  = 13;
    uint256 public botsCaught       = 0;
    address private botTokensTrapWallet;
    bool public swapAndLiquifyEnabled = true;


    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

	uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public _blackListed;
    mapping (address => bool) private _liquidityAdders;
    // 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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
    event BlackListToggled(address indexed blacklistedBy, address blacklisted, bool status);

    constructor(address _routerAddress, address _botTrapAddress) ERC20("Nuke", "NUKE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            _routerAddress
        );
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

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

        botTokensTrapWallet = payable(_botTrapAddress);

        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 8;

        uint256 totalSupply = 1 * 1e8 * 1e18;

        maxTransactionAmount = 2 * 1e7 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 2 * 1e7 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyLiquidityFee + buyDevFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;

        devWallet = address(0xa07d967898E5Ac9991F8Fbe27a6E70a786262C4A); // set as dev wallet

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

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

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

    receive() external payable {}


    function toggleBlacklist(address _address, bool _status) external onlyOwner {
        require(_address != address(0), "NUKE::toggleBlacklist: blacklist cannot be the zero address");
        require(_address != deadAddress, "NUKE::toggleBlacklist: blacklist cannot be the burn address");
        require(_blackListed[_address] == !_status, "NUKE::toggleBlacklist: account already in the giving status");

        _blackListed[_address] = _status;

        emit BlackListToggled(msg.sender, _address, _status);
    }

    function toggleBotProtection(bool _status, uint16 _breathingBlocks, address _botTokensTrapWallet) external onlyOwner {
        if (!botProtection && _status && _liqHasBeenAdded) {
            revert("NUKE::toggleProtection : Cannot enable bot protection after launch");
        }

        botProtection   = _status;
        breathingBlocks = _breathingBlocks;
        botTokensTrapWallet  = _botTokensTrapWallet;

    }

    function activateTrading() public onlyOwner {
        require(!tradingActive, "NUKE::activateTrading : Trading has already been activated");
        require(_liqHasBeenAdded, "NUKE::activateTrading : Liquidity must be added first");

        _liqAddedBlock  = block.number;
        tradingActive   = true;
        swapEnabled = true;
    }

     function _transferHasLimitation(address from, address to) private view returns (bool) {
        return (from != owner() && to != owner() && tx.origin != owner() // Not the owner
        && !_liquidityAdders[to] && !_liquidityAdders[from] // Not initial liquidity adders
        && from != address(this) // Not from NUKE contract
        && to != deadAddress && to != address(0)
        ); 
    }

    function _processProtection(address from, address to) private returns (bool) {
        bool hasLimitation = _transferHasLimitation(from, to);

        if (hasLimitation && !tradingActive) {
            revert("NUKE::_processProtection : Trading not yet activated");
        }

        if (!_liqHasBeenAdded) {
            require(!hasLimitation, "NUKE::_processProtection : Only admin can transfer tokens for the moment");
            if (to == uniswapV2Pair) {
                // Adding liquidity
                _liqAddedBlock          = block.number;
                _liquidityAdders[from]  = true;
                _liqHasBeenAdded        = true;
                swapAndLiquifyEnabled   = true;
            }
        } else {
            if (_liqAddedBlock > 0 && hasLimitation
                && automatedMarketMakerPairs[from]
                && (block.number.sub(_liqAddedBlock) < breathingBlocks)
            ) {
                _blackListed[to] = true;
                botsCaught ++;
                return true;
            }
        }

        return false;
    }

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        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;
        return true;
    }
	
    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 isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_blackListed[from] && !_blackListed[to], "NUKE::_transfer : Transfer using blacklisted address");
        
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

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

        bool isBot = botProtection ? _processProtection(from, to) : false;
        if (isBot) {
            takeFee = false;
            to      = botTokensTrapWallet;
        } else {
        // 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] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;                
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
            }

            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
            devWallet,
            block.timestamp
        );
        
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
	
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

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

        (success, ) = address(devWallet).call{value: address(this).balance}("");
    }
    
    function transferForeignToken(address _token, address _to)
        external
        onlyOwner
        returns (bool _sent)
    {
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        _sent = IERC20(_token).transfer(_to, _contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"},{"internalType":"address","name":"_botTrapAddress","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":"blacklistedBy","type":"address"},{"indexed":false,"internalType":"address","name":"blacklisted","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"BlackListToggled","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_blackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liqAddedBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liqHasBeenAdded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","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":[],"name":"botProtection","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"botsCaught","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breathingBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"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":"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","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":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"toggleBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint16","name":"_breathingBlocks","type":"uint16"},{"internalType":"address","name":"_botTokensTrapWallet","type":"address"}],"name":"toggleBotProtection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805464ffffffffff191663010000011790556000600b819055600d600c81905555600e805460ff60a01b1916600160a01b1790553480156200004757600080fd5b5060405162003649380380620036498339810160408190526200006a9162000690565b604051806040016040528060048152602001634e756b6560e01b815250604051806040016040528060048152602001634e554b4560e01b8152508160039081620000b591906200076c565b506004620000c482826200076c565b505050620000e1620000db620003bb60201b60201c565b620003bf565b81620000ef81600162000411565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000160919062000838565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d4919062000838565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000222573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000248919062000838565b6001600160a01b031660a08190526200026390600162000411565b60a051620002739060016200048b565b600e80546001600160a01b0319166001600160a01b0384161790556a108b2a2c2802909400000060078190556009556000808060086a52b7d2dcc80cd2e4000000612710620002c482600a62000873565b620002d0919062000895565b60085560108590556011849055620002e98486620008b8565b600f5560138390556014829055620003028284620008b8565b601255600680546001600160a01b03191673a07d967898e5ac9991f8fbe27a6e70a786262c4a1790556200034a620003426005546001600160a01b031690565b6001620004df565b62000357306001620004df565b6200036661dead6001620004df565b620003856200037d6005546001600160a01b031690565b600162000411565b6200039230600162000411565b620003a161dead600162000411565b620003ad338262000589565b5050505050505050620008d4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004605760405162461bcd60e51b815260206004820181905260248201526000805160206200362983398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200052a5760405162461bcd60e51b8152602060048201819052602482015260008051602062003629833981519152604482015260640162000457565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005e15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000457565b8060026000828254620005f59190620008b8565b90915550506001600160a01b0382166000908152602081905260408120805483929062000624908490620008b8565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b80516001600160a01b03811681146200068b57600080fd5b919050565b60008060408385031215620006a457600080fd5b620006af8362000673565b9150620006bf6020840162000673565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006f357607f821691505b6020821081036200071457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200066e57600081815260208120601f850160051c81016020861015620007435750805b601f850160051c820191505b8181101562000764578281556001016200074f565b505050505050565b81516001600160401b03811115620007885762000788620006c8565b620007a081620007998454620006de565b846200071a565b602080601f831160018114620007d85760008415620007bf5750858301515b600019600386901b1c1916600185901b17855562000764565b600085815260208120601f198616915b828110156200080957888601518255948401946001909101908401620007e8565b5085821015620008285787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200084b57600080fd5b620008568262000673565b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200089057620008906200085d565b500290565b600082620008b357634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008ce57620008ce6200085d565b92915050565b60805160a051612cfe6200092b6000396000818161050601528181610eda015261236c0152600081816103c301528181612512015281816125cb015281816126070152818161268101526126e90152612cfe6000f3fe6080604052600436106103035760003560e01c80638366e79a11610190578063bb58a973116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610939578063f637434214610959578063f8b45b051461096f578063fc03b68a1461098557600080fd5b8063dd62ed3e146108c7578063e2f456051461090d578063f11a24d31461092357600080fd5b8063bb58a9731461081b578063bbc0c7421461083c578063c02466681461085b578063c8c8ebe41461087b578063d257b34f14610891578063d85ba063146108b157600080fd5b80639c3b4fdc11610149578063a457c2d711610123578063a457c2d71461078b578063a4aba653146107ab578063a9059cbb146107cb578063b62496f5146107eb57600080fd5b80639c3b4fdc146107495780639fccce321461075f578063a0d82dc51461077557600080fd5b80638366e79a146106965780638da5cb5b146106b65780638ea5220f146106d4578063924de9b7146106f457806395d89b41146107145780639a7a23d61461072957600080fd5b806349bd5a5e1161024f5780636a486a8e1161020857806370a08231116101e257806370a0823114610616578063715018a61461064c578063751039fc146106615780637571336a1461067657600080fd5b80636a486a8e146105c85780636b0a894c146105de5780636ddd1713146105f457600080fd5b806349bd5a5e146104f45780634a62bb65146105285780634a74bb02146105425780634fbee1931461056357806351e3960b1461059c5780635e029e29146105b257600080fd5b80631a8145bb116102bc57806327c8f8351161029657806327c8f83514610482578063313ce56714610498578063384eddac146104b457806339509351146104d457600080fd5b80631a8145bb1461041c5780631d231b2c1461043257806323b872dd1461046257600080fd5b806306fdde031461030f578063095ea7b31461033a5780630bd05b691461036a57806310d5de53146103815780631694505e146103b157806318160ddd146103fd57600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b506103246109a5565b6040516103319190612849565b60405180910390f35b34801561034657600080fd5b5061035a6103553660046128ac565b610a37565b6040519015158152602001610331565b34801561037657600080fd5b5061037f610a4e565b005b34801561038d57600080fd5b5061035a61039c3660046128d8565b60186020526000908152604090205460ff1681565b3480156103bd57600080fd5b506103e57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610331565b34801561040957600080fd5b506002545b604051908152602001610331565b34801561042857600080fd5b5061040e60155481565b34801561043e57600080fd5b5061035a61044d3660046128d8565b60196020526000908152604090205460ff1681565b34801561046e57600080fd5b5061035a61047d3660046128f5565b610b90565b34801561048e57600080fd5b506103e561dead81565b3480156104a457600080fd5b5060405160128152602001610331565b3480156104c057600080fd5b50600a5461035a9062010000900460ff1681565b3480156104e057600080fd5b5061035a6104ef3660046128ac565b610c3a565b34801561050057600080fd5b506103e57f000000000000000000000000000000000000000000000000000000000000000081565b34801561053457600080fd5b50600a5461035a9060ff1681565b34801561054e57600080fd5b50600e5461035a90600160a01b900460ff1681565b34801561056f57600080fd5b5061035a61057e3660046128d8565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156105a857600080fd5b5061040e600b5481565b3480156105be57600080fd5b5061040e600c5481565b3480156105d457600080fd5b5061040e60125481565b3480156105ea57600080fd5b5061040e600d5481565b34801561060057600080fd5b50600a5461035a90640100000000900460ff1681565b34801561062257600080fd5b5061040e6106313660046128d8565b6001600160a01b031660009081526020819052604090205490565b34801561065857600080fd5b5061037f610c76565b34801561066d57600080fd5b5061035a610cac565b34801561068257600080fd5b5061037f610691366004612944565b610ce9565b3480156106a257600080fd5b5061035a6106b136600461297d565b610d3e565b3480156106c257600080fd5b506005546001600160a01b03166103e5565b3480156106e057600080fd5b506006546103e5906001600160a01b031681565b34801561070057600080fd5b5061037f61070f3660046129ab565b610e55565b34801561072057600080fd5b50610324610e9f565b34801561073557600080fd5b5061037f610744366004612944565b610eae565b34801561075557600080fd5b5061040e60115481565b34801561076b57600080fd5b5061040e60165481565b34801561078157600080fd5b5061040e60145481565b34801561079757600080fd5b5061035a6107a63660046128ac565b610f8d565b3480156107b757600080fd5b5061037f6107c63660046129c8565b611026565b3480156107d757600080fd5b5061035a6107e63660046128ac565b61113f565b3480156107f757600080fd5b5061035a6108063660046128d8565b601b6020526000908152604090205460ff1681565b34801561082757600080fd5b50600a5461035a906301000000900460ff1681565b34801561084857600080fd5b50600a5461035a90610100900460ff1681565b34801561086757600080fd5b5061037f610876366004612944565b61114c565b34801561088757600080fd5b5061040e60075481565b34801561089d57600080fd5b5061035a6108ac366004612a1a565b6111d6565b3480156108bd57600080fd5b5061040e600f5481565b3480156108d357600080fd5b5061040e6108e236600461297d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561091957600080fd5b5061040e60085481565b34801561092f57600080fd5b5061040e60105481565b34801561094557600080fd5b5061037f6109543660046128d8565b611328565b34801561096557600080fd5b5061040e60135481565b34801561097b57600080fd5b5061040e60095481565b34801561099157600080fd5b5061037f6109a0366004612944565b6113c3565b6060600380546109b490612a33565b80601f01602080910402602001604051908101604052809291908181526020018280546109e090612a33565b8015610a2d5780601f10610a0257610100808354040283529160200191610a2d565b820191906000526020600020905b815481529060010190602001808311610a1057829003601f168201915b5050505050905090565b6000610a443384846115db565b5060015b92915050565b6005546001600160a01b03163314610a815760405162461bcd60e51b8152600401610a7890612a6d565b60405180910390fd5b600a54610100900460ff1615610aff5760405162461bcd60e51b815260206004820152603a60248201527f4e554b453a3a616374697661746554726164696e67203a2054726164696e672060448201527f68617320616c7265616479206265656e206163746976617465640000000000006064820152608401610a78565b600a5462010000900460ff16610b755760405162461bcd60e51b815260206004820152603560248201527f4e554b453a3a616374697661746554726164696e67203a204c697175696469746044820152741e481b5d5cdd08189948185919195908199a5c9cdd605a1b6064820152608401610a78565b43600b55600a805464ff0000ff001916640100000100179055565b6000610b9d8484846116ff565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c225760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a78565b610c2f85338584036115db565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a44918590610c71908690612ab8565b6115db565b6005546001600160a01b03163314610ca05760405162461bcd60e51b8152600401610a7890612a6d565b610caa6000611ea3565b565b6005546000906001600160a01b03163314610cd95760405162461bcd60e51b8152600401610a7890612a6d565b50600a805460ff19169055600190565b6005546001600160a01b03163314610d135760405162461bcd60e51b8152600401610a7890612a6d565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610d6b5760405162461bcd60e51b8152600401610a7890612a6d565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015610db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd69190612acb565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af1158015610e29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4d9190612ae4565b949350505050565b6005546001600160a01b03163314610e7f5760405162461bcd60e51b8152600401610a7890612a6d565b600a80549115156401000000000264ff0000000019909216919091179055565b6060600480546109b490612a33565b6005546001600160a01b03163314610ed85760405162461bcd60e51b8152600401610a7890612a6d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610f7f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a78565b610f898282611ef5565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561100f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a78565b61101c33858584036115db565b5060019392505050565b6005546001600160a01b031633146110505760405162461bcd60e51b8152600401610a7890612a6d565b600a546301000000900460ff161580156110675750825b801561107b5750600a5462010000900460ff165b156110f95760405162461bcd60e51b815260206004820152604260248201527f4e554b453a3a746f67676c6550726f74656374696f6e203a2043616e6e6f742060448201527f656e61626c6520626f742070726f74656374696f6e206166746572206c61756e6064820152610c6d60f31b608482015260a401610a78565b600a805463ff00000019166301000000941515949094029390931790925561ffff16600c55600e80546001600160a01b0319166001600160a01b03909216919091179055565b6000610a443384846116ff565b6005546001600160a01b031633146111765760405162461bcd60e51b8152600401610a7890612a6d565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546000906001600160a01b031633146112035760405162461bcd60e51b8152600401610a7890612a6d565b620186a061121060025490565b61121b906001612b01565b6112259190612b20565b8210156112925760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a78565b6103e861129e60025490565b6112a9906005612b01565b6112b39190612b20565b82111561131f5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a78565b50600855600190565b6005546001600160a01b031633146113525760405162461bcd60e51b8152600401610a7890612a6d565b6001600160a01b0381166113b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a78565b6113c081611ea3565b50565b6005546001600160a01b031633146113ed5760405162461bcd60e51b8152600401610a7890612a6d565b6001600160a01b0382166114695760405162461bcd60e51b815260206004820152603b60248201527f4e554b453a3a746f67676c65426c61636b6c6973743a20626c61636b6c69737460448201527f2063616e6e6f7420626520746865207a65726f206164647265737300000000006064820152608401610a78565b61deac196001600160a01b038316016114ea5760405162461bcd60e51b815260206004820152603b60248201527f4e554b453a3a746f67676c65426c61636b6c6973743a20626c61636b6c69737460448201527f2063616e6e6f7420626520746865206275726e206164647265737300000000006064820152608401610a78565b6001600160a01b03821660009081526019602052604090205460ff16151581151461157d5760405162461bcd60e51b815260206004820152603b60248201527f4e554b453a3a746f67676c65426c61636b6c6973743a206163636f756e74206160448201527f6c726561647920696e2074686520676976696e672073746174757300000000006064820152608401610a78565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915582519384529083015233917f38e65f555ad1f6e67e93be25227818a992a5877ed536f89e1da698227aab803b91016111ca565b6001600160a01b03831661163d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a78565b6001600160a01b03821661169e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a78565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117255760405162461bcd60e51b8152600401610a7890612b42565b6001600160a01b03821661174b5760405162461bcd60e51b8152600401610a7890612b87565b6001600160a01b03831660009081526019602052604090205460ff1615801561178d57506001600160a01b03821660009081526019602052604090205460ff16155b6117f65760405162461bcd60e51b815260206004820152603460248201527f4e554b453a3a5f7472616e73666572203a205472616e73666572207573696e6760448201527320626c61636b6c6973746564206164647265737360601b6064820152608401610a78565b8060000361180f5761180a83836000611f49565b505050565b600a5460ff1615611b85576005546001600160a01b0384811691161480159061184657506005546001600160a01b03838116911614155b801561185a57506001600160a01b03821615155b801561187157506001600160a01b03821661dead14155b80156118875750600554600160a01b900460ff16155b15611b8557600a54610100900460ff1661191f576001600160a01b03831660009081526017602052604090205460ff16806118da57506001600160a01b03821660009081526017602052604090205460ff165b61191f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a78565b6001600160a01b0383166000908152601b602052604090205460ff16801561196057506001600160a01b03821660009081526018602052604090205460ff16155b15611a44576007548111156119d55760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a78565b6009546001600160a01b0383166000908152602081905260409020546119fb9083612ab8565b1115611a3f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a78565b611b85565b6001600160a01b0382166000908152601b602052604090205460ff168015611a8557506001600160a01b03831660009081526018602052604090205460ff16155b15611afb57600754811115611a3f5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a78565b6001600160a01b03821660009081526018602052604090205460ff16611b85576009546001600160a01b038316600090815260208190526040902054611b419083612ab8565b1115611b855760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a78565b3060009081526020819052604090205460085481108015908190611bb35750600a54640100000000900460ff165b8015611bc95750600554600160a01b900460ff16155b8015611bee57506001600160a01b0385166000908152601b602052604090205460ff16155b8015611c1357506001600160a01b03851660009081526017602052604090205460ff16155b8015611c3857506001600160a01b03841660009081526017602052604090205460ff16155b15611c66576005805460ff60a01b1916600160a01b179055611c5861209e565b6005805460ff60a01b191690555b600554600a5460ff600160a01b909204821615916000916301000000900416611c90576000611c9a565b611c9a8787612247565b90508015611cb957600e546001600160a01b0316955060009150611e8f565b6001600160a01b03871660009081526017602052604090205460ff1680611cf857506001600160a01b03861660009081526017602052604090205460ff165b15611d0257600091505b60008215611e8d576001600160a01b0387166000908152601b602052604090205460ff168015611d3457506000601254115b15611dc257611d596064611d536012548961249090919063ffffffff16565b906124a3565b905060125460135482611d6c9190612b01565b611d769190612b20565b60156000828254611d879190612ab8565b9091555050601254601454611d9c9083612b01565b611da69190612b20565b60166000828254611db79190612ab8565b90915550611e6f9050565b6001600160a01b0388166000908152601b602052604090205460ff168015611dec57506000600f54115b15611e6f57611e0b6064611d53600f548961249090919063ffffffff16565b9050600f5460105482611e1e9190612b01565b611e289190612b20565b60156000828254611e399190612ab8565b9091555050600f54601154611e4e9083612b01565b611e589190612b20565b60166000828254611e699190612ab8565b90915550505b8015611e8057611e80883083611f49565b611e8a8187612bca565b95505b505b611e9a878787611f49565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f6f5760405162461bcd60e51b8152600401610a7890612b42565b6001600160a01b038216611f955760405162461bcd60e51b8152600401610a7890612b87565b6001600160a01b0383166000908152602081905260409020548181101561200d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a78565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612044908490612ab8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161209091815260200190565b60405180910390a350505050565b30600090815260208190526040812054905060006016546015546120c29190612ab8565b905060008215806120d1575081155b156120db57505050565b6008546120e9906014612b01565b831115612101576008546120fe906014612b01565b92505b6000600283601554866121149190612b01565b61211e9190612b20565b6121289190612b20565b9050600061213685836124af565b905047612142826124bb565b600061214e47836124af565b9050600061216b87611d536016548561249090919063ffffffff16565b905060006121798284612bca565b60006015819055601655905085158015906121945750600081115b156121e7576121a3868261267b565b601554604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612234576040519150601f19603f3d011682016040523d82523d6000602084013e612239565b606091505b505050505050505050505050565b6000806122548484612761565b905080801561226b5750600a54610100900460ff16155b156122d55760405162461bcd60e51b815260206004820152603460248201527f4e554b453a3a5f70726f6365737350726f74656374696f6e203a2054726164696044820152731b99c81b9bdd081e595d081858dd1a5d985d195960621b6064820152608401610a78565b600a5462010000900460ff166123f457801561236a5760405162461bcd60e51b815260206004820152604860248201527f4e554b453a3a5f70726f6365737350726f74656374696f6e203a204f6e6c792060448201527f61646d696e2063616e207472616e7366657220746f6b656e7320666f7220746860648201526719481b5bdb595b9d60c21b608482015260a401610a78565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316036123ef5743600b556001600160a01b0384166000908152601a60205260409020805460ff19166001179055600a805462ff0000191662010000179055600e805460ff60a01b1916600160a01b1790555b612486565b6000600b541180156124035750805b801561242757506001600160a01b0384166000908152601b602052604090205460ff165b80156124415750600c54600b5461243f9043906124af565b105b15612486576001600160a01b0383166000908152601960205260408120805460ff19166001179055600d80549161247783612bdd565b91905055506001915050610a48565b5060009392505050565b600061249c8284612b01565b9392505050565b600061249c8284612b20565b600061249c8284612bca565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124f0576124f0612bf6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561256e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125929190612c0c565b816001815181106125a5576125a5612bf6565b60200260200101906001600160a01b031690816001600160a01b0316815250506125f0307f0000000000000000000000000000000000000000000000000000000000000000846115db565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612645908590600090869030904290600401612c29565b600060405180830381600087803b15801561265f57600080fd5b505af1158015612673573d6000803e3d6000fd5b505050505050565b6126a6307f0000000000000000000000000000000000000000000000000000000000000000846115db565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612735573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061275a9190612c9a565b5050505050565b60006127756005546001600160a01b031690565b6001600160a01b0316836001600160a01b0316141580156127a457506005546001600160a01b03838116911614155b80156127bb57506005546001600160a01b03163214155b80156127e057506001600160a01b0382166000908152601a602052604090205460ff16155b801561280557506001600160a01b0383166000908152601a602052604090205460ff16155b801561281a57506001600160a01b0383163014155b801561283157506001600160a01b03821661dead14155b801561249c5750506001600160a01b03161515919050565b600060208083528351808285015260005b818110156128765785810183015185820160400152820161285a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113c057600080fd5b600080604083850312156128bf57600080fd5b82356128ca81612897565b946020939093013593505050565b6000602082840312156128ea57600080fd5b813561249c81612897565b60008060006060848603121561290a57600080fd5b833561291581612897565b9250602084013561292581612897565b929592945050506040919091013590565b80151581146113c057600080fd5b6000806040838503121561295757600080fd5b823561296281612897565b9150602083013561297281612936565b809150509250929050565b6000806040838503121561299057600080fd5b823561299b81612897565b9150602083013561297281612897565b6000602082840312156129bd57600080fd5b813561249c81612936565b6000806000606084860312156129dd57600080fd5b83356129e881612936565b9250602084013561ffff811681146129ff57600080fd5b91506040840135612a0f81612897565b809150509250925092565b600060208284031215612a2c57600080fd5b5035919050565b600181811c90821680612a4757607f821691505b602082108103612a6757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a4857610a48612aa2565b600060208284031215612add57600080fd5b5051919050565b600060208284031215612af657600080fd5b815161249c81612936565b6000816000190483118215151615612b1b57612b1b612aa2565b500290565b600082612b3d57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a4857610a48612aa2565b600060018201612bef57612bef612aa2565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612c1e57600080fd5b815161249c81612897565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c795784516001600160a01b031683529383019391830191600101612c54565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612caf57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212200a710b8f73738b7a721ac4970c2e1e36be74637f32434b1780fc6ee27fa508aa64736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000a07d967898e5ac9991f8fbe27a6e70a786262c4a

Deployed Bytecode

0x6080604052600436106103035760003560e01c80638366e79a11610190578063bb58a973116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610939578063f637434214610959578063f8b45b051461096f578063fc03b68a1461098557600080fd5b8063dd62ed3e146108c7578063e2f456051461090d578063f11a24d31461092357600080fd5b8063bb58a9731461081b578063bbc0c7421461083c578063c02466681461085b578063c8c8ebe41461087b578063d257b34f14610891578063d85ba063146108b157600080fd5b80639c3b4fdc11610149578063a457c2d711610123578063a457c2d71461078b578063a4aba653146107ab578063a9059cbb146107cb578063b62496f5146107eb57600080fd5b80639c3b4fdc146107495780639fccce321461075f578063a0d82dc51461077557600080fd5b80638366e79a146106965780638da5cb5b146106b65780638ea5220f146106d4578063924de9b7146106f457806395d89b41146107145780639a7a23d61461072957600080fd5b806349bd5a5e1161024f5780636a486a8e1161020857806370a08231116101e257806370a0823114610616578063715018a61461064c578063751039fc146106615780637571336a1461067657600080fd5b80636a486a8e146105c85780636b0a894c146105de5780636ddd1713146105f457600080fd5b806349bd5a5e146104f45780634a62bb65146105285780634a74bb02146105425780634fbee1931461056357806351e3960b1461059c5780635e029e29146105b257600080fd5b80631a8145bb116102bc57806327c8f8351161029657806327c8f83514610482578063313ce56714610498578063384eddac146104b457806339509351146104d457600080fd5b80631a8145bb1461041c5780631d231b2c1461043257806323b872dd1461046257600080fd5b806306fdde031461030f578063095ea7b31461033a5780630bd05b691461036a57806310d5de53146103815780631694505e146103b157806318160ddd146103fd57600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b506103246109a5565b6040516103319190612849565b60405180910390f35b34801561034657600080fd5b5061035a6103553660046128ac565b610a37565b6040519015158152602001610331565b34801561037657600080fd5b5061037f610a4e565b005b34801561038d57600080fd5b5061035a61039c3660046128d8565b60186020526000908152604090205460ff1681565b3480156103bd57600080fd5b506103e57f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610331565b34801561040957600080fd5b506002545b604051908152602001610331565b34801561042857600080fd5b5061040e60155481565b34801561043e57600080fd5b5061035a61044d3660046128d8565b60196020526000908152604090205460ff1681565b34801561046e57600080fd5b5061035a61047d3660046128f5565b610b90565b34801561048e57600080fd5b506103e561dead81565b3480156104a457600080fd5b5060405160128152602001610331565b3480156104c057600080fd5b50600a5461035a9062010000900460ff1681565b3480156104e057600080fd5b5061035a6104ef3660046128ac565b610c3a565b34801561050057600080fd5b506103e57f00000000000000000000000053855cf79f141c216b1c5b362ec101f21cf3c39381565b34801561053457600080fd5b50600a5461035a9060ff1681565b34801561054e57600080fd5b50600e5461035a90600160a01b900460ff1681565b34801561056f57600080fd5b5061035a61057e3660046128d8565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156105a857600080fd5b5061040e600b5481565b3480156105be57600080fd5b5061040e600c5481565b3480156105d457600080fd5b5061040e60125481565b3480156105ea57600080fd5b5061040e600d5481565b34801561060057600080fd5b50600a5461035a90640100000000900460ff1681565b34801561062257600080fd5b5061040e6106313660046128d8565b6001600160a01b031660009081526020819052604090205490565b34801561065857600080fd5b5061037f610c76565b34801561066d57600080fd5b5061035a610cac565b34801561068257600080fd5b5061037f610691366004612944565b610ce9565b3480156106a257600080fd5b5061035a6106b136600461297d565b610d3e565b3480156106c257600080fd5b506005546001600160a01b03166103e5565b3480156106e057600080fd5b506006546103e5906001600160a01b031681565b34801561070057600080fd5b5061037f61070f3660046129ab565b610e55565b34801561072057600080fd5b50610324610e9f565b34801561073557600080fd5b5061037f610744366004612944565b610eae565b34801561075557600080fd5b5061040e60115481565b34801561076b57600080fd5b5061040e60165481565b34801561078157600080fd5b5061040e60145481565b34801561079757600080fd5b5061035a6107a63660046128ac565b610f8d565b3480156107b757600080fd5b5061037f6107c63660046129c8565b611026565b3480156107d757600080fd5b5061035a6107e63660046128ac565b61113f565b3480156107f757600080fd5b5061035a6108063660046128d8565b601b6020526000908152604090205460ff1681565b34801561082757600080fd5b50600a5461035a906301000000900460ff1681565b34801561084857600080fd5b50600a5461035a90610100900460ff1681565b34801561086757600080fd5b5061037f610876366004612944565b61114c565b34801561088757600080fd5b5061040e60075481565b34801561089d57600080fd5b5061035a6108ac366004612a1a565b6111d6565b3480156108bd57600080fd5b5061040e600f5481565b3480156108d357600080fd5b5061040e6108e236600461297d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561091957600080fd5b5061040e60085481565b34801561092f57600080fd5b5061040e60105481565b34801561094557600080fd5b5061037f6109543660046128d8565b611328565b34801561096557600080fd5b5061040e60135481565b34801561097b57600080fd5b5061040e60095481565b34801561099157600080fd5b5061037f6109a0366004612944565b6113c3565b6060600380546109b490612a33565b80601f01602080910402602001604051908101604052809291908181526020018280546109e090612a33565b8015610a2d5780601f10610a0257610100808354040283529160200191610a2d565b820191906000526020600020905b815481529060010190602001808311610a1057829003601f168201915b5050505050905090565b6000610a443384846115db565b5060015b92915050565b6005546001600160a01b03163314610a815760405162461bcd60e51b8152600401610a7890612a6d565b60405180910390fd5b600a54610100900460ff1615610aff5760405162461bcd60e51b815260206004820152603a60248201527f4e554b453a3a616374697661746554726164696e67203a2054726164696e672060448201527f68617320616c7265616479206265656e206163746976617465640000000000006064820152608401610a78565b600a5462010000900460ff16610b755760405162461bcd60e51b815260206004820152603560248201527f4e554b453a3a616374697661746554726164696e67203a204c697175696469746044820152741e481b5d5cdd08189948185919195908199a5c9cdd605a1b6064820152608401610a78565b43600b55600a805464ff0000ff001916640100000100179055565b6000610b9d8484846116ff565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c225760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a78565b610c2f85338584036115db565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a44918590610c71908690612ab8565b6115db565b6005546001600160a01b03163314610ca05760405162461bcd60e51b8152600401610a7890612a6d565b610caa6000611ea3565b565b6005546000906001600160a01b03163314610cd95760405162461bcd60e51b8152600401610a7890612a6d565b50600a805460ff19169055600190565b6005546001600160a01b03163314610d135760405162461bcd60e51b8152600401610a7890612a6d565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610d6b5760405162461bcd60e51b8152600401610a7890612a6d565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015610db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd69190612acb565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af1158015610e29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4d9190612ae4565b949350505050565b6005546001600160a01b03163314610e7f5760405162461bcd60e51b8152600401610a7890612a6d565b600a80549115156401000000000264ff0000000019909216919091179055565b6060600480546109b490612a33565b6005546001600160a01b03163314610ed85760405162461bcd60e51b8152600401610a7890612a6d565b7f00000000000000000000000053855cf79f141c216b1c5b362ec101f21cf3c3936001600160a01b0316826001600160a01b031603610f7f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a78565b610f898282611ef5565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561100f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a78565b61101c33858584036115db565b5060019392505050565b6005546001600160a01b031633146110505760405162461bcd60e51b8152600401610a7890612a6d565b600a546301000000900460ff161580156110675750825b801561107b5750600a5462010000900460ff165b156110f95760405162461bcd60e51b815260206004820152604260248201527f4e554b453a3a746f67676c6550726f74656374696f6e203a2043616e6e6f742060448201527f656e61626c6520626f742070726f74656374696f6e206166746572206c61756e6064820152610c6d60f31b608482015260a401610a78565b600a805463ff00000019166301000000941515949094029390931790925561ffff16600c55600e80546001600160a01b0319166001600160a01b03909216919091179055565b6000610a443384846116ff565b6005546001600160a01b031633146111765760405162461bcd60e51b8152600401610a7890612a6d565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546000906001600160a01b031633146112035760405162461bcd60e51b8152600401610a7890612a6d565b620186a061121060025490565b61121b906001612b01565b6112259190612b20565b8210156112925760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a78565b6103e861129e60025490565b6112a9906005612b01565b6112b39190612b20565b82111561131f5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a78565b50600855600190565b6005546001600160a01b031633146113525760405162461bcd60e51b8152600401610a7890612a6d565b6001600160a01b0381166113b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a78565b6113c081611ea3565b50565b6005546001600160a01b031633146113ed5760405162461bcd60e51b8152600401610a7890612a6d565b6001600160a01b0382166114695760405162461bcd60e51b815260206004820152603b60248201527f4e554b453a3a746f67676c65426c61636b6c6973743a20626c61636b6c69737460448201527f2063616e6e6f7420626520746865207a65726f206164647265737300000000006064820152608401610a78565b61deac196001600160a01b038316016114ea5760405162461bcd60e51b815260206004820152603b60248201527f4e554b453a3a746f67676c65426c61636b6c6973743a20626c61636b6c69737460448201527f2063616e6e6f7420626520746865206275726e206164647265737300000000006064820152608401610a78565b6001600160a01b03821660009081526019602052604090205460ff16151581151461157d5760405162461bcd60e51b815260206004820152603b60248201527f4e554b453a3a746f67676c65426c61636b6c6973743a206163636f756e74206160448201527f6c726561647920696e2074686520676976696e672073746174757300000000006064820152608401610a78565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915582519384529083015233917f38e65f555ad1f6e67e93be25227818a992a5877ed536f89e1da698227aab803b91016111ca565b6001600160a01b03831661163d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a78565b6001600160a01b03821661169e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a78565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117255760405162461bcd60e51b8152600401610a7890612b42565b6001600160a01b03821661174b5760405162461bcd60e51b8152600401610a7890612b87565b6001600160a01b03831660009081526019602052604090205460ff1615801561178d57506001600160a01b03821660009081526019602052604090205460ff16155b6117f65760405162461bcd60e51b815260206004820152603460248201527f4e554b453a3a5f7472616e73666572203a205472616e73666572207573696e6760448201527320626c61636b6c6973746564206164647265737360601b6064820152608401610a78565b8060000361180f5761180a83836000611f49565b505050565b600a5460ff1615611b85576005546001600160a01b0384811691161480159061184657506005546001600160a01b03838116911614155b801561185a57506001600160a01b03821615155b801561187157506001600160a01b03821661dead14155b80156118875750600554600160a01b900460ff16155b15611b8557600a54610100900460ff1661191f576001600160a01b03831660009081526017602052604090205460ff16806118da57506001600160a01b03821660009081526017602052604090205460ff165b61191f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a78565b6001600160a01b0383166000908152601b602052604090205460ff16801561196057506001600160a01b03821660009081526018602052604090205460ff16155b15611a44576007548111156119d55760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a78565b6009546001600160a01b0383166000908152602081905260409020546119fb9083612ab8565b1115611a3f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a78565b611b85565b6001600160a01b0382166000908152601b602052604090205460ff168015611a8557506001600160a01b03831660009081526018602052604090205460ff16155b15611afb57600754811115611a3f5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a78565b6001600160a01b03821660009081526018602052604090205460ff16611b85576009546001600160a01b038316600090815260208190526040902054611b419083612ab8565b1115611b855760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a78565b3060009081526020819052604090205460085481108015908190611bb35750600a54640100000000900460ff165b8015611bc95750600554600160a01b900460ff16155b8015611bee57506001600160a01b0385166000908152601b602052604090205460ff16155b8015611c1357506001600160a01b03851660009081526017602052604090205460ff16155b8015611c3857506001600160a01b03841660009081526017602052604090205460ff16155b15611c66576005805460ff60a01b1916600160a01b179055611c5861209e565b6005805460ff60a01b191690555b600554600a5460ff600160a01b909204821615916000916301000000900416611c90576000611c9a565b611c9a8787612247565b90508015611cb957600e546001600160a01b0316955060009150611e8f565b6001600160a01b03871660009081526017602052604090205460ff1680611cf857506001600160a01b03861660009081526017602052604090205460ff165b15611d0257600091505b60008215611e8d576001600160a01b0387166000908152601b602052604090205460ff168015611d3457506000601254115b15611dc257611d596064611d536012548961249090919063ffffffff16565b906124a3565b905060125460135482611d6c9190612b01565b611d769190612b20565b60156000828254611d879190612ab8565b9091555050601254601454611d9c9083612b01565b611da69190612b20565b60166000828254611db79190612ab8565b90915550611e6f9050565b6001600160a01b0388166000908152601b602052604090205460ff168015611dec57506000600f54115b15611e6f57611e0b6064611d53600f548961249090919063ffffffff16565b9050600f5460105482611e1e9190612b01565b611e289190612b20565b60156000828254611e399190612ab8565b9091555050600f54601154611e4e9083612b01565b611e589190612b20565b60166000828254611e699190612ab8565b90915550505b8015611e8057611e80883083611f49565b611e8a8187612bca565b95505b505b611e9a878787611f49565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f6f5760405162461bcd60e51b8152600401610a7890612b42565b6001600160a01b038216611f955760405162461bcd60e51b8152600401610a7890612b87565b6001600160a01b0383166000908152602081905260409020548181101561200d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a78565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612044908490612ab8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161209091815260200190565b60405180910390a350505050565b30600090815260208190526040812054905060006016546015546120c29190612ab8565b905060008215806120d1575081155b156120db57505050565b6008546120e9906014612b01565b831115612101576008546120fe906014612b01565b92505b6000600283601554866121149190612b01565b61211e9190612b20565b6121289190612b20565b9050600061213685836124af565b905047612142826124bb565b600061214e47836124af565b9050600061216b87611d536016548561249090919063ffffffff16565b905060006121798284612bca565b60006015819055601655905085158015906121945750600081115b156121e7576121a3868261267b565b601554604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612234576040519150601f19603f3d011682016040523d82523d6000602084013e612239565b606091505b505050505050505050505050565b6000806122548484612761565b905080801561226b5750600a54610100900460ff16155b156122d55760405162461bcd60e51b815260206004820152603460248201527f4e554b453a3a5f70726f6365737350726f74656374696f6e203a2054726164696044820152731b99c81b9bdd081e595d081858dd1a5d985d195960621b6064820152608401610a78565b600a5462010000900460ff166123f457801561236a5760405162461bcd60e51b815260206004820152604860248201527f4e554b453a3a5f70726f6365737350726f74656374696f6e203a204f6e6c792060448201527f61646d696e2063616e207472616e7366657220746f6b656e7320666f7220746860648201526719481b5bdb595b9d60c21b608482015260a401610a78565b7f00000000000000000000000053855cf79f141c216b1c5b362ec101f21cf3c3936001600160a01b0316836001600160a01b0316036123ef5743600b556001600160a01b0384166000908152601a60205260409020805460ff19166001179055600a805462ff0000191662010000179055600e805460ff60a01b1916600160a01b1790555b612486565b6000600b541180156124035750805b801561242757506001600160a01b0384166000908152601b602052604090205460ff165b80156124415750600c54600b5461243f9043906124af565b105b15612486576001600160a01b0383166000908152601960205260408120805460ff19166001179055600d80549161247783612bdd565b91905055506001915050610a48565b5060009392505050565b600061249c8284612b01565b9392505050565b600061249c8284612b20565b600061249c8284612bca565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124f0576124f0612bf6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561256e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125929190612c0c565b816001815181106125a5576125a5612bf6565b60200260200101906001600160a01b031690816001600160a01b0316815250506125f0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115db565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612645908590600090869030904290600401612c29565b600060405180830381600087803b15801561265f57600080fd5b505af1158015612673573d6000803e3d6000fd5b505050505050565b6126a6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115db565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612735573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061275a9190612c9a565b5050505050565b60006127756005546001600160a01b031690565b6001600160a01b0316836001600160a01b0316141580156127a457506005546001600160a01b03838116911614155b80156127bb57506005546001600160a01b03163214155b80156127e057506001600160a01b0382166000908152601a602052604090205460ff16155b801561280557506001600160a01b0383166000908152601a602052604090205460ff16155b801561281a57506001600160a01b0383163014155b801561283157506001600160a01b03821661dead14155b801561249c5750506001600160a01b03161515919050565b600060208083528351808285015260005b818110156128765785810183015185820160400152820161285a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113c057600080fd5b600080604083850312156128bf57600080fd5b82356128ca81612897565b946020939093013593505050565b6000602082840312156128ea57600080fd5b813561249c81612897565b60008060006060848603121561290a57600080fd5b833561291581612897565b9250602084013561292581612897565b929592945050506040919091013590565b80151581146113c057600080fd5b6000806040838503121561295757600080fd5b823561296281612897565b9150602083013561297281612936565b809150509250929050565b6000806040838503121561299057600080fd5b823561299b81612897565b9150602083013561297281612897565b6000602082840312156129bd57600080fd5b813561249c81612936565b6000806000606084860312156129dd57600080fd5b83356129e881612936565b9250602084013561ffff811681146129ff57600080fd5b91506040840135612a0f81612897565b809150509250925092565b600060208284031215612a2c57600080fd5b5035919050565b600181811c90821680612a4757607f821691505b602082108103612a6757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a4857610a48612aa2565b600060208284031215612add57600080fd5b5051919050565b600060208284031215612af657600080fd5b815161249c81612936565b6000816000190483118215151615612b1b57612b1b612aa2565b500290565b600082612b3d57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a4857610a48612aa2565b600060018201612bef57612bef612aa2565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612c1e57600080fd5b815161249c81612897565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c795784516001600160a01b031683529383019391830191600101612c54565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612caf57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212200a710b8f73738b7a721ac4970c2e1e36be74637f32434b1780fc6ee27fa508aa64736f6c63430008100033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000a07d967898e5ac9991f8fbe27a6e70a786262c4a

-----Decoded View---------------
Arg [0] : _routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _botTrapAddress (address): 0xa07d967898E5Ac9991F8Fbe27a6E70a786262C4A

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000a07d967898e5ac9991f8fbe27a6e70a786262c4a


Deployed Bytecode Sourcemap

32812:15994:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9740:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11907:169;;;;;;;;;;-1:-1:-1;11907:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11907:169:0;1023:187:1;38027:346:0;;;;;;;;;;;;;:::i;:::-;;34075:63;;;;;;;;;;-1:-1:-1;34075:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32886:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;32886:51:0;1467:230:1;10860:108:0;;;;;;;;;;-1:-1:-1;10948:12:0;;10860:108;;;1848:25:1;;;1836:2;1821:18;10860:108:0;1702:177:1;33859:33:0;;;;;;;;;;;;;;;;34145:44;;;;;;;;;;-1:-1:-1;34145:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;12558:492;;;;;;;;;;-1:-1:-1;12558:492:0;;;;;:::i;:::-;;:::i;32989:53::-;;;;;;;;;;;;33035:6;32989:53;;10702:93;;;;;;;;;;-1:-1:-1;10702:93:0;;10785:2;2695:36:1;;2683:2;2668:18;10702:93:0;2553:184:1;33309:37:0;;;;;;;;;;-1:-1:-1;33309:37:0;;;;;;;;;;;13459:215;;;;;;;;;;-1:-1:-1;13459:215:0;;;;;:::i;:::-;;:::i;32944:38::-;;;;;;;;;;;;;;;33229:33;;;;;;;;;;-1:-1:-1;33229:33:0;;;;;;;;33600:40;;;;;;;;;;-1:-1:-1;33600:40:0;;;;-1:-1:-1;;;33600:40:0;;;;;;41710:126;;;;;;;;;;-1:-1:-1;41710:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41800:28:0;41776:4;41800:28;;;:19;:28;;;;;;;;;41710:126;33431:35;;;;;;;;;;;;;;;;33473:36;;;;;;;;;;;;;;;;33755:28;;;;;;;;;;;;;;;;33516:35;;;;;;;;;;;;;;;;33393:31;;;;;;;;;;-1:-1:-1;33393:31:0;;;;;;;;;;;11031:127;;;;;;;;;;-1:-1:-1;11031:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11132:18:0;11105:7;11132:18;;;;;;;;;;;;11031:127;2975:103;;;;;;;;;;;;;:::i;39944:121::-;;;;;;;;;;;;;:::i;40641:167::-;;;;;;;;;;-1:-1:-1;40641:167:0;;;;;:::i;:::-;;:::i;48520:281::-;;;;;;;;;;-1:-1:-1;48520:281:0;;;;;:::i;:::-;;:::i;2324:87::-;;;;;;;;;;-1:-1:-1;2397:6:0;;-1:-1:-1;;;;;2397:6:0;2324:87;;33081:24;;;;;;;;;;-1:-1:-1;33081:24:0;;;;-1:-1:-1;;;;;33081:24:0;;;40904:100;;;;;;;;;;-1:-1:-1;40904:100:0;;;;;:::i;:::-;;:::i;9959:104::-;;;;;;;;;;;;;:::i;41202:304::-;;;;;;;;;;-1:-1:-1;41202:304:0;;;;;:::i;:::-;;:::i;33722:24::-;;;;;;;;;;;;;;;;33899:27;;;;;;;;;;;;;;;;33828:25;;;;;;;;;;;;;;;;14177:413;;;;;;;;;;-1:-1:-1;14177:413:0;;;;;:::i;:::-;;:::i;37591:428::-;;;;;;;;;;-1:-1:-1;37591:428:0;;;;;:::i;:::-;;:::i;11371:175::-;;;;;;;;;;-1:-1:-1;11371:175:0;;;;;:::i;:::-;;:::i;34402:57::-;;;;;;;;;;-1:-1:-1;34402:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33353:33;;;;;;;;;;-1:-1:-1;33353:33:0;;;;;;;;;;;33269;;;;;;;;;;-1:-1:-1;33269:33:0;;;;;;;;;;;41012:182;;;;;;;;;;-1:-1:-1;41012:182:0;;;;;:::i;:::-;;:::i;33114:35::-;;;;;;;;;;;;;;;;40135:497;;;;;;;;;;-1:-1:-1;40135:497:0;;;;;:::i;:::-;;:::i;33651:27::-;;;;;;;;;;;;;;;;11609:151;;;;;;;;;;-1:-1:-1;11609:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11725:18:0;;;11698:7;11725:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11609:151;33156:33;;;;;;;;;;;;;;;;33685:30;;;;;;;;;;;;;;;;3233:201;;;;;;;;;;-1:-1:-1;3233:201:0;;;;;:::i;:::-;;:::i;33790:31::-;;;;;;;;;;;;;;;;33196:24;;;;;;;;;;;;;;;;37061:522;;;;;;;;;;-1:-1:-1;37061:522:0;;;;;:::i;:::-;;:::i;9740:100::-;9794:13;9827:5;9820:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9740:100;:::o;11907:169::-;11990:4;12007:39;1077:10;12030:7;12039:6;12007:8;:39::i;:::-;-1:-1:-1;12064:4:0;11907:169;;;;;:::o;38027:346::-;2397:6;;-1:-1:-1;;;;;2397:6:0;1077:10;2544:23;2536:68;;;;-1:-1:-1;;;2536:68:0;;;;;;;:::i;:::-;;;;;;;;;38091:13:::1;::::0;::::1;::::0;::::1;;;38090:14;38082:85;;;::::0;-1:-1:-1;;;38082:85:0;;5579:2:1;38082:85:0::1;::::0;::::1;5561:21:1::0;5618:2;5598:18;;;5591:30;5657:34;5637:18;;;5630:62;5728:28;5708:18;;;5701:56;5774:19;;38082:85:0::1;5377:422:1::0;38082:85:0::1;38186:16;::::0;;;::::1;;;38178:82;;;::::0;-1:-1:-1;;;38178:82:0;;6006:2:1;38178:82:0::1;::::0;::::1;5988:21:1::0;6045:2;6025:18;;;6018:30;6084:34;6064:18;;;6057:62;-1:-1:-1;;;6135:18:1;;;6128:51;6196:19;;38178:82:0::1;5804:417:1::0;38178:82:0::1;38291:12;38273:14;:30:::0;38314:13:::1;:22:::0;;-1:-1:-1;;38347:18:0;;;;;38027:346::o;12558:492::-;12698:4;12715:36;12725:6;12733:9;12744:6;12715:9;:36::i;:::-;-1:-1:-1;;;;;12791:19:0;;12764:24;12791:19;;;:11;:19;;;;;;;;1077:10;12791:33;;;;;;;;12843:26;;;;12835:79;;;;-1:-1:-1;;;12835:79:0;;6428:2:1;12835:79:0;;;6410:21:1;6467:2;6447:18;;;6440:30;6506:34;6486:18;;;6479:62;-1:-1:-1;;;6557:18:1;;;6550:38;6605:19;;12835:79:0;6226:404:1;12835:79:0;12950:57;12959:6;1077:10;13000:6;12981:16;:25;12950:8;:57::i;:::-;-1:-1:-1;13038:4:0;;12558:492;-1:-1:-1;;;;12558:492:0:o;13459:215::-;1077:10;13547:4;13596:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13596:34:0;;;;;;;;;;13547:4;;13564:80;;13587:7;;13596:47;;13633:10;;13596:47;:::i;:::-;13564:8;:80::i;2975:103::-;2397:6;;-1:-1:-1;;;;;2397:6:0;1077:10;2544:23;2536:68;;;;-1:-1:-1;;;2536:68:0;;;;;;;:::i;:::-;3040:30:::1;3067:1;3040:18;:30::i;:::-;2975:103::o:0;39944:121::-;2397:6;;39996:4;;-1:-1:-1;;;;;2397:6:0;1077:10;2544:23;2536:68;;;;-1:-1:-1;;;2536:68:0;;;;;;;:::i;:::-;-1:-1:-1;40013:14:0::1;:22:::0;;-1:-1:-1;;40013:22:0::1;::::0;;;39944:121;:::o;40641:167::-;2397:6;;-1:-1:-1;;;;;2397:6:0;1077:10;2544:23;2536:68;;;;-1:-1:-1;;;2536:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40754:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;40754:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40641:167::o;48520:281::-;2397:6;;48634:10;;-1:-1:-1;;;;;2397:6:0;1077:10;2544:23;2536:68;;;;-1:-1:-1;;;2536:68:0;;;;;;;:::i;:::-;48689:39:::1;::::0;-1:-1:-1;;;48689:39:0;;48722:4:::1;48689:39;::::0;::::1;1640:51:1::0;48662:24:0::1;::::0;-1:-1:-1;;;;;48689:24:0;::::1;::::0;::::1;::::0;1613:18:1;;48689:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48747:46;::::0;-1:-1:-1;;;48747:46:0;;-1:-1:-1;;;;;7278:32:1;;;48747:46:0::1;::::0;::::1;7260:51:1::0;7327:18;;;7320:34;;;48662:66:0;;-1:-1:-1;48747:23:0;;::::1;::::0;::::1;::::0;7233:18:1;;48747:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48739:54:::0;48520:281;-1:-1:-1;;;;48520:281:0:o;40904:100::-;2397:6;;-1:-1:-1;;;;;2397:6:0;1077:10;2544:23;2536:68;;;;-1:-1:-1;;;2536:68:0;;;;;;;:::i;:::-;40975:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;40975:21:0;;::::1;::::0;;;::::1;::::0;;40904:100::o;9959:104::-;10015:13;10048:7;10041:14;;;;;:::i;41202:304::-;2397:6;;-1:-1:-1;;;;;2397:6:0;1077:10;2544:23;2536:68;;;;-1:-1:-1;;;2536:68:0;;;;;;;:::i;:::-;41346:13:::1;-1:-1:-1::0;;;;;41338:21:0::1;:4;-1:-1:-1::0;;;;;41338:21:0::1;::::0;41316:128:::1;;;::::0;-1:-1:-1;;;41316:128:0;;7817:2:1;41316:128:0::1;::::0;::::1;7799:21:1::0;7856:2;7836:18;;;7829:30;7895:34;7875:18;;;7868:62;7966:27;7946:18;;;7939:55;8011:19;;41316:128:0::1;7615:421:1::0;41316:128:0::1;41457:41;41486:4;41492:5;41457:28;:41::i;:::-;41202:304:::0;;:::o;14177:413::-;1077:10;14270:4;14314:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14314:34:0;;;;;;;;;;14367:35;;;;14359:85;;;;-1:-1:-1;;;14359:85:0;;8243:2:1;14359:85:0;;;8225:21:1;8282:2;8262:18;;;8255:30;8321:34;8301:18;;;8294:62;-1:-1:-1;;;8372:18:1;;;8365:35;8417:19;;14359:85:0;8041:401:1;14359:85:0;14480:67;1077:10;14503:7;14531:15;14512:16;:34;14480:8;:67::i;:::-;-1:-1:-1;14578:4:0;;14177:413;-1:-1:-1;;;14177:413:0:o;37591:428::-;2397:6;;-1:-1:-1;;;;;2397:6:0;1077:10;2544:23;2536:68;;;;-1:-1:-1;;;2536:68:0;;;;;;;:::i;:::-;37724:13:::1;::::0;;;::::1;;;37723:14;:25:::0;::::1;;;;37741:7;37723:25;:45;;;;-1:-1:-1::0;37752:16:0::1;::::0;;;::::1;;;37723:45;37719:154;;;37785:76;::::0;-1:-1:-1;;;37785:76:0;;8649:2:1;37785:76:0::1;::::0;::::1;8631:21:1::0;8688:2;8668:18;;;8661:30;8727:34;8707:18;;;8700:62;8798:34;8778:18;;;8771:62;-1:-1:-1;;;8849:19:1;;;8842:33;8892:19;;37785:76:0::1;8447:470:1::0;37719:154:0::1;37885:13;:25:::0;;-1:-1:-1;;37885:25:0::1;::::0;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;37921:34:::1;;:15;:34:::0;37966:19:::1;:43:::0;;-1:-1:-1;;;;;;37966:43:0::1;-1:-1:-1::0;;;;;37966:43:0;;::::1;::::0;;;::::1;::::0;;37591:428::o;11371:175::-;11457:4;11474:42;1077:10;11498:9;11509:6;11474:9;:42::i;41012:182::-;2397:6;;-1:-1:-1;;;;;2397:6:0;1077:10;2544:23;2536:68;;;;-1:-1:-1;;;2536:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41097:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;41097:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41152:34;;1163:41:1;;;41152:34:0::1;::::0;1136:18:1;41152:34:0::1;;;;;;;;41012:182:::0;;:::o;40135:497::-;2397:6;;40243:4;;-1:-1:-1;;;;;2397:6:0;1077:10;2544:23;2536:68;;;;-1:-1:-1;;;2536:68:0;;;;;;;:::i;:::-;40322:6:::1;40301:13;10948:12:::0;;;10860:108;40301:13:::1;:17;::::0;40317:1:::1;40301:17;:::i;:::-;40300:28;;;;:::i;:::-;40287:9;:41;;40265:144;;;::::0;-1:-1:-1;;;40265:144:0;;9519:2:1;40265:144:0::1;::::0;::::1;9501:21:1::0;9558:2;9538:18;;;9531:30;9597:34;9577:18;;;9570:62;-1:-1:-1;;;9648:18:1;;;9641:51;9709:19;;40265:144:0::1;9317:417:1::0;40265:144:0::1;40477:4;40456:13;10948:12:::0;;;10860:108;40456:13:::1;:17;::::0;40472:1:::1;40456:17;:::i;:::-;40455:26;;;;:::i;:::-;40442:9;:39;;40420:141;;;::::0;-1:-1:-1;;;40420:141:0;;9941:2:1;40420:141:0::1;::::0;::::1;9923:21:1::0;9980:2;9960:18;;;9953:30;10019:34;9999:18;;;9992:62;-1:-1:-1;;;10070:18:1;;;10063:50;10130:19;;40420:141:0::1;9739:416:1::0;40420:141:0::1;-1:-1:-1::0;40572:18:0::1;:30:::0;40620:4:::1;::::0;40135:497::o;3233:201::-;2397:6;;-1:-1:-1;;;;;2397:6:0;1077:10;2544:23;2536:68;;;;-1:-1:-1;;;2536:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3322:22:0;::::1;3314:73;;;::::0;-1:-1:-1;;;3314:73:0;;10362:2:1;3314:73:0::1;::::0;::::1;10344:21:1::0;10401:2;10381:18;;;10374:30;10440:34;10420:18;;;10413:62;-1:-1:-1;;;10491:18:1;;;10484:36;10537:19;;3314:73:0::1;10160:402:1::0;3314:73:0::1;3398:28;3417:8;3398:18;:28::i;:::-;3233:201:::0;:::o;37061:522::-;2397:6;;-1:-1:-1;;;;;2397:6:0;1077:10;2544:23;2536:68;;;;-1:-1:-1;;;2536:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37156:22:0;::::1;37148:94;;;::::0;-1:-1:-1;;;37148:94:0;;10769:2:1;37148:94:0::1;::::0;::::1;10751:21:1::0;10808:2;10788:18;;;10781:30;10847:34;10827:18;;;10820:62;10918:29;10898:18;;;10891:57;10965:19;;37148:94:0::1;10567:423:1::0;37148:94:0::1;-1:-1:-1::0;;;;;;;37261:23:0;::::1;::::0;37253:95:::1;;;::::0;-1:-1:-1;;;37253:95:0;;11197:2:1;37253:95:0::1;::::0;::::1;11179:21:1::0;11236:2;11216:18;;;11209:30;11275:34;11255:18;;;11248:62;11346:29;11326:18;;;11319:57;11393:19;;37253:95:0::1;10995:423:1::0;37253:95:0::1;-1:-1:-1::0;;;;;37367:22:0;::::1;;::::0;;;:12:::1;:22;::::0;;;;;::::1;;:34;;37393:8:::0;::::1;37367:34;37359:106;;;::::0;-1:-1:-1;;;37359:106:0;;11625:2:1;37359:106:0::1;::::0;::::1;11607:21:1::0;11664:2;11644:18;;;11637:30;11703:34;11683:18;;;11676:62;11774:29;11754:18;;;11747:57;11821:19;;37359:106:0::1;11423:423:1::0;37359:106:0::1;-1:-1:-1::0;;;;;37478:22:0;::::1;;::::0;;;:12:::1;:22;::::0;;;;;;;;:32;;-1:-1:-1;;37478:32:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37528:47;;12019:51:1;;;12086:18;;;12079:50;37545:10:0::1;::::0;37528:47:::1;::::0;11992:18:1;37528:47:0::1;11851:284:1::0;17861:380:0;-1:-1:-1;;;;;17997:19:0;;17989:68;;;;-1:-1:-1;;;17989:68:0;;12342:2:1;17989:68:0;;;12324:21:1;12381:2;12361:18;;;12354:30;12420:34;12400:18;;;12393:62;-1:-1:-1;;;12471:18:1;;;12464:34;12515:19;;17989:68:0;12140:400:1;17989:68:0;-1:-1:-1;;;;;18076:21:0;;18068:68;;;;-1:-1:-1;;;18068:68:0;;12747:2:1;18068:68:0;;;12729:21:1;12786:2;12766:18;;;12759:30;12825:34;12805:18;;;12798:62;-1:-1:-1;;;12876:18:1;;;12869:32;12918:19;;18068:68:0;12545:398:1;18068:68:0;-1:-1:-1;;;;;18149:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18201:32;;1848:25:1;;;18201:32:0;;1821:18:1;18201:32:0;;;;;;;17861:380;;;:::o;41844:4113::-;-1:-1:-1;;;;;41976:18:0;;41968:68;;;;-1:-1:-1;;;41968:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42055:16:0;;42047:64;;;;-1:-1:-1;;;42047:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42131:18:0;;;;;;:12;:18;;;;;;;;42130:19;:40;;;;-1:-1:-1;;;;;;42154:16:0;;;;;;:12;:16;;;;;;;;42153:17;42130:40;42122:105;;;;-1:-1:-1;;;42122:105:0;;13960:2:1;42122:105:0;;;13942:21:1;13999:2;13979:18;;;13972:30;14038:34;14018:18;;;14011:62;-1:-1:-1;;;14089:18:1;;;14082:50;14149:19;;42122:105:0;13758:416:1;42122:105:0;42252:6;42262:1;42252:11;42248:93;;42280:28;42296:4;42302:2;42306:1;42280:15;:28::i;:::-;41844:4113;;;:::o;42248:93::-;42357:14;;;;42353:1694;;;2397:6;;-1:-1:-1;;;;;42410:15:0;;;2397:6;;42410:15;;;;:49;;-1:-1:-1;2397:6:0;;-1:-1:-1;;;;;42446:13:0;;;2397:6;;42446:13;;42410:49;:86;;;;-1:-1:-1;;;;;;42480:16:0;;;;42410:86;:128;;;;-1:-1:-1;;;;;;42517:21:0;;42531:6;42517:21;;42410:128;:158;;;;-1:-1:-1;42560:8:0;;-1:-1:-1;;;42560:8:0;;;;42559:9;42410:158;42388:1648;;;42608:13;;;;;;;42603:223;;-1:-1:-1;;;;;42680:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42709:23:0;;;;;;:19;:23;;;;;;;;42680:52;42646:160;;;;-1:-1:-1;;;42646:160:0;;14381:2:1;42646:160:0;;;14363:21:1;14420:2;14400:18;;;14393:30;-1:-1:-1;;;14439:18:1;;;14432:52;14501:18;;42646:160:0;14179:346:1;42646:160:0;-1:-1:-1;;;;;42900:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42957:35:0;;;;;;:31;:35;;;;;;;;42956:36;42900:92;42874:1147;;;43079:20;;43069:6;:30;;43035:169;;;;-1:-1:-1;;;43035:169:0;;14732:2:1;43035:169:0;;;14714:21:1;14771:2;14751:18;;;14744:30;14810:34;14790:18;;;14783:62;-1:-1:-1;;;14861:18:1;;;14854:51;14922:19;;43035:169:0;14530:417:1;43035:169:0;43287:9;;-1:-1:-1;;;;;11132:18:0;;11105:7;11132:18;;;;;;;;;;;43261:22;;:6;:22;:::i;:::-;:35;;43227:140;;;;-1:-1:-1;;;43227:140:0;;15154:2:1;43227:140:0;;;15136:21:1;15193:2;15173:18;;;15166:30;-1:-1:-1;;;15212:18:1;;;15205:49;15271:18;;43227:140:0;14952:343:1;43227:140:0;42874:1147;;;-1:-1:-1;;;;;43465:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43520:37:0;;;;;;:31;:37;;;;;;;;43519:38;43465:92;43439:582;;;43644:20;;43634:6;:30;;43600:170;;;;-1:-1:-1;;;43600:170:0;;15502:2:1;43600:170:0;;;15484:21:1;15541:2;15521:18;;;15514:30;15580:34;15560:18;;;15553:62;-1:-1:-1;;;15631:18:1;;;15624:52;15693:19;;43600:170:0;15300:418:1;43439:582:0;-1:-1:-1;;;;;43801:35:0;;;;;;:31;:35;;;;;;;;43796:225;;43921:9;;-1:-1:-1;;;;;11132:18:0;;11105:7;11132:18;;;;;;;;;;;43895:22;;:6;:22;:::i;:::-;:35;;43861:140;;;;-1:-1:-1;;;43861:140:0;;15154:2:1;43861:140:0;;;15136:21:1;15193:2;15173:18;;;15166:30;-1:-1:-1;;;15212:18:1;;;15205:49;15271:18;;43861:140:0;14952:343:1;43861:140:0;44108:4;44059:28;11132:18;;;;;;;;;;;44166;;44142:42;;;;;;;44215:35;;-1:-1:-1;44239:11:0;;;;;;;44215:35;:61;;;;-1:-1:-1;44268:8:0;;-1:-1:-1;;;44268:8:0;;;;44267:9;44215:61;:110;;;;-1:-1:-1;;;;;;44294:31:0;;;;;;:25;:31;;;;;;;;44293:32;44215:110;:153;;;;-1:-1:-1;;;;;;44343:25:0;;;;;;:19;:25;;;;;;;;44342:26;44215:153;:194;;;;-1:-1:-1;;;;;;44386:23:0;;;;;;:19;:23;;;;;;;;44385:24;44215:194;44197:326;;;44436:8;:15;;-1:-1:-1;;;;44436:15:0;-1:-1:-1;;;44436:15:0;;;44468:10;:8;:10::i;:::-;44495:8;:16;;-1:-1:-1;;;;44495:16:0;;;44197:326;44551:8;;44585:13;;44551:8;-1:-1:-1;;;44551:8:0;;;;;44550:9;;44535:12;;44585:13;;;;:52;;44632:5;44585:52;;;44601:28;44620:4;44626:2;44601:18;:28::i;:::-;44572:65;;44652:5;44648:1248;;;44714:19;;-1:-1:-1;;;;;44714:19:0;;-1:-1:-1;44684:5:0;;-1:-1:-1;44648:1248:0;;;-1:-1:-1;;;;;44851:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;44880:23:0;;;;;;:19;:23;;;;;;;;44851:52;44847:100;;;44930:5;44920:15;;44847:100;44959:12;45064:7;45060:823;;;-1:-1:-1;;;;;45116:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45165:1;45149:13;;:17;45116:50;45112:622;;;45194:34;45224:3;45194:25;45205:13;;45194:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;45187:41;;45297:13;;45277:16;;45270:4;:23;;;;:::i;:::-;45269:41;;;;:::i;:::-;45247:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45367:13:0;;45353:10;;45346:17;;:4;:17;:::i;:::-;45345:35;;;;:::i;:::-;45329:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;45112:622:0;;-1:-1:-1;45112:622:0;;-1:-1:-1;;;;;45458:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45508:1;45493:12;;:16;45458:51;45454:280;;;45537:33;45566:3;45537:24;45548:12;;45537:6;:10;;:24;;;;:::i;:33::-;45530:40;;45638:12;;45619:15;;45612:4;:22;;;;:::i;:::-;45611:39;;;;:::i;:::-;45589:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45706:12:0;;45693:9;;45686:16;;:4;:16;:::i;:::-;45685:33;;;;:::i;:::-;45669:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;45454:280:0;45754:8;;45750:91;;45783:42;45799:4;45813;45820;45783:15;:42::i;:::-;45857:14;45867:4;45857:14;;:::i;:::-;;;45060:823;44751:1145;44648:1248;45916:33;45932:4;45938:2;45942:6;45916:15;:33::i;:::-;41957:4000;;;;41844:4113;;;:::o;3594:191::-;3687:6;;;-1:-1:-1;;;;;3704:17:0;;;-1:-1:-1;;;;;;3704:17:0;;;;;;;3737:40;;3687:6;;;3704:17;3687:6;;3737:40;;3668:16;;3737:40;3657:128;3594:191;:::o;41514:188::-;-1:-1:-1;;;;;41597:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41597:39:0;;;;;;;;;;41654:40;;41597:39;;:31;41654:40;;;41514:188;;:::o;15080:733::-;-1:-1:-1;;;;;15220:20:0;;15212:70;;;;-1:-1:-1;;;15212:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15301:23:0;;15293:71;;;;-1:-1:-1;;;15293:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15461:17:0;;15437:21;15461:17;;;;;;;;;;;15497:23;;;;15489:74;;;;-1:-1:-1;;;15489:74:0;;16058:2:1;15489:74:0;;;16040:21:1;16097:2;16077:18;;;16070:30;16136:34;16116:18;;;16109:62;-1:-1:-1;;;16187:18:1;;;16180:36;16233:19;;15489:74:0;15856:402:1;15489:74:0;-1:-1:-1;;;;;15599:17:0;;;:9;:17;;;;;;;;;;;15619:22;;;15599:42;;15663:20;;;;;;;;:30;;15635:6;;15599:9;15663:30;;15635:6;;15663:30;:::i;:::-;;;;;;;;15728:9;-1:-1:-1;;;;;15711:35:0;15720:6;-1:-1:-1;;;;;15711:35:0;;15739:6;15711:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;15711:35:0;;;;;;;;15201:612;15080:733;;;:::o;47095:1413::-;47178:4;47134:23;11132:18;;;;;;;;;;;47134:50;;47195:25;47244:12;;47223:18;;:33;;;;:::i;:::-;47195:61;-1:-1:-1;47267:12:0;47296:20;;;:46;;-1:-1:-1;47320:22:0;;47296:46;47292:85;;;47359:7;;;47095:1413::o;47292:85::-;47411:18;;:23;;47432:2;47411:23;:::i;:::-;47393:15;:41;47389:115;;;47469:18;;:23;;47490:2;47469:23;:::i;:::-;47451:41;;47389:115;47565:23;47652:1;47632:17;47610:18;;47592:15;:36;;;;:::i;:::-;47591:58;;;;:::i;:::-;:62;;;;:::i;:::-;47565:88;-1:-1:-1;47664:26:0;47693:36;:15;47565:88;47693:19;:36::i;:::-;47664:65;-1:-1:-1;47770:21:0;47804:36;47664:65;47804:16;:36::i;:::-;47853:18;47874:44;:21;47900:17;47874:25;:44::i;:::-;47853:65;;47932:17;47952:51;47985:17;47952:28;47967:12;;47952:10;:14;;:28;;;;:::i;:51::-;47932:71;-1:-1:-1;48016:23:0;48042:22;47932:71;48042:10;:22;:::i;:::-;48098:1;48077:18;:22;;;48110:12;:16;48016:48;-1:-1:-1;48143:19:0;;;;;:42;;;48184:1;48166:15;:19;48143:42;48139:278;;;48202:46;48215:15;48232;48202:12;:46::i;:::-;48372:18;;48268:137;;;16465:25:1;;;16521:2;16506:18;;16499:34;;;16549:18;;;16542:34;;;;48268:137:0;;;;;;16453:2:1;48268:137:0;;;48139:278;48451:9;;48443:57;;-1:-1:-1;;;;;48451:9:0;;;;48474:21;;48443:57;;;;48474:21;48451:9;48443:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;47095:1413:0:o;38791:1101::-;38862:4;38879:18;38900:32;38923:4;38929:2;38900:22;:32::i;:::-;38879:53;;38949:13;:31;;;;-1:-1:-1;38967:13:0;;;;;;;38966:14;38949:31;38945:126;;;38997:62;;-1:-1:-1;;;38997:62:0;;16999:2:1;38997:62:0;;;16981:21:1;17038:2;17018:18;;;17011:30;17077:34;17057:18;;;17050:62;-1:-1:-1;;;17128:18:1;;;17121:50;17188:19;;38997:62:0;16797:416:1;38945:126:0;39088:16;;;;;;;39083:777;;39130:13;39129:14;39121:99;;;;-1:-1:-1;;;39121:99:0;;17420:2:1;39121:99:0;;;17402:21:1;17459:2;17439:18;;;17432:30;17498:34;17478:18;;;17471:62;17569:34;17549:18;;;17542:62;-1:-1:-1;;;17620:19:1;;;17613:39;17669:19;;39121:99:0;17218:476:1;39121:99:0;39245:13;-1:-1:-1;;;;;39239:19:0;:2;-1:-1:-1;;;;;39239:19:0;;39235:282;;39342:12;39316:14;:38;-1:-1:-1;;;;;39373:22:0;;;;;;:16;:22;;;;;:30;;-1:-1:-1;;39373:30:0;39399:4;39373:30;;;39422:16;:30;;-1:-1:-1;;39422:30:0;;;;;39471:21;:30;;-1:-1:-1;;;;39471:30:0;-1:-1:-1;;;39471:30:0;;;39235:282;39083:777;;;39570:1;39553:14;;:18;:35;;;;;39575:13;39553:35;:87;;;;-1:-1:-1;;;;;;39609:31:0;;;;;;:25;:31;;;;;;;;39553:87;:160;;;;-1:-1:-1;39697:15:0;;39679:14;;39662:32;;:12;;:16;:32::i;:::-;:50;39553:160;39549:300;;;-1:-1:-1;;;;;39748:16:0;;;;;;:12;:16;;;;;:23;;-1:-1:-1;;39748:23:0;39767:4;39748:23;;;39790:10;:13;;;;;;:::i;:::-;;;;;;39829:4;39822:11;;;;;39549:300;-1:-1:-1;39879:5:0;;38791:1101;-1:-1:-1;;;38791:1101:0:o;23314:98::-;23372:7;23399:5;23403:1;23399;:5;:::i;:::-;23392:12;23314:98;-1:-1:-1;;;23314:98:0:o;23713:::-;23771:7;23798:5;23802:1;23798;:5;:::i;22957:98::-;23015:7;23042:5;23046:1;23042;:5;:::i;45965:589::-;46115:16;;;46129:1;46115:16;;;;;;;;46091:21;;46115:16;;;;;;;;;;-1:-1:-1;46115:16:0;46091:40;;46160:4;46142;46147:1;46142:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46142:23:0;;;-1:-1:-1;;;;;46142:23:0;;;;;46186:15;-1:-1:-1;;;;;46186:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46176:4;46181:1;46176:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46176:32:0;;;-1:-1:-1;;;;;46176:32:0;;;;;46221:62;46238:4;46253:15;46271:11;46221:8;:62::i;:::-;46322:224;;-1:-1:-1;;;46322:224:0;;-1:-1:-1;;;;;46322:15:0;:66;;;;:224;;46403:11;;46429:1;;46473:4;;46500;;46520:15;;46322:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46020:534;45965:589;:::o;46562:525::-;46710:62;46727:4;46742:15;46760:11;46710:8;:62::i;:::-;47019:9;;46815:254;;-1:-1:-1;;;46815:254:0;;46887:4;46815:254;;;19685:34:1;19735:18;;;19728:34;;;46933:1:0;19778:18:1;;;19771:34;;;19821:18;;;19814:34;-1:-1:-1;;;;;47019:9:0;;;19864:19:1;;;19857:44;47043:15:0;19917:19:1;;;19910:35;46815:15:0;:31;;;;;;46854:9;;19619:19:1;;46815:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46562:525;;:::o;38382:401::-;38462:4;38495:7;2397:6;;-1:-1:-1;;;;;2397:6:0;;2324:87;38495:7;-1:-1:-1;;;;;38487:15:0;:4;-1:-1:-1;;;;;38487:15:0;;;:32;;;;-1:-1:-1;2397:6:0;;-1:-1:-1;;;;;38506:13:0;;;2397:6;;38506:13;;38487:32;:56;;;;-1:-1:-1;2397:6:0;;-1:-1:-1;;;;;2397:6:0;38523:9;:20;;38487:56;:107;;;;-1:-1:-1;;;;;;38574:20:0;;;;;;:16;:20;;;;;;;;38573:21;38487:107;:134;;;;-1:-1:-1;;;;;;38599:22:0;;;;;;:16;:22;;;;;;;;38598:23;38487:134;:200;;;;-1:-1:-1;;;;;;38666:21:0;;38682:4;38666:21;;38487:200;:256;;;;-1:-1:-1;;;;;;38726:17:0;;33035:6;38726:17;;38487:256;:276;;;;-1:-1:-1;;;;;;;38747:16:0;;;;38382:401;-1:-1:-1;38382:401:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:118::-;2828:5;2821:13;2814:21;2807:5;2804:32;2794:60;;2850:1;2847;2840:12;2865:382;2930:6;2938;2991:2;2979:9;2970:7;2966:23;2962:32;2959:52;;;3007:1;3004;2997:12;2959:52;3046:9;3033:23;3065:31;3090:5;3065:31;:::i;:::-;3115:5;-1:-1:-1;3172:2:1;3157:18;;3144:32;3185:30;3144:32;3185:30;:::i;:::-;3234:7;3224:17;;;2865:382;;;;;:::o;3252:388::-;3320:6;3328;3381:2;3369:9;3360:7;3356:23;3352:32;3349:52;;;3397:1;3394;3387:12;3349:52;3436:9;3423:23;3455:31;3480:5;3455:31;:::i;:::-;3505:5;-1:-1:-1;3562:2:1;3547:18;;3534:32;3575:33;3534:32;3575:33;:::i;3645:241::-;3701:6;3754:2;3742:9;3733:7;3729:23;3725:32;3722:52;;;3770:1;3767;3760:12;3722:52;3809:9;3796:23;3828:28;3850:5;3828:28;:::i;3891:550::-;3964:6;3972;3980;4033:2;4021:9;4012:7;4008:23;4004:32;4001:52;;;4049:1;4046;4039:12;4001:52;4088:9;4075:23;4107:28;4129:5;4107:28;:::i;:::-;4154:5;-1:-1:-1;4211:2:1;4196:18;;4183:32;4259:6;4246:20;;4234:33;;4224:61;;4281:1;4278;4271:12;4224:61;4304:7;-1:-1:-1;4363:2:1;4348:18;;4335:32;4376:33;4335:32;4376:33;:::i;:::-;4428:7;4418:17;;;3891:550;;;;;:::o;4446:180::-;4505:6;4558:2;4546:9;4537:7;4533:23;4529:32;4526:52;;;4574:1;4571;4564:12;4526:52;-1:-1:-1;4597:23:1;;4446:180;-1:-1:-1;4446:180:1:o;4631:380::-;4710:1;4706:12;;;;4753;;;4774:61;;4828:4;4820:6;4816:17;4806:27;;4774:61;4881:2;4873:6;4870:14;4850:18;4847:38;4844:161;;4927:10;4922:3;4918:20;4915:1;4908:31;4962:4;4959:1;4952:15;4990:4;4987:1;4980:15;4844:161;;4631:380;;;:::o;5016:356::-;5218:2;5200:21;;;5237:18;;;5230:30;5296:34;5291:2;5276:18;;5269:62;5363:2;5348:18;;5016:356::o;6635:127::-;6696:10;6691:3;6687:20;6684:1;6677:31;6727:4;6724:1;6717:15;6751:4;6748:1;6741:15;6767:125;6832:9;;;6853:10;;;6850:36;;;6866:18;;:::i;6897:184::-;6967:6;7020:2;7008:9;6999:7;6995:23;6991:32;6988:52;;;7036:1;7033;7026:12;6988:52;-1:-1:-1;7059:16:1;;6897:184;-1:-1:-1;6897:184:1:o;7365:245::-;7432:6;7485:2;7473:9;7464:7;7460:23;7456:32;7453:52;;;7501:1;7498;7491:12;7453:52;7533:9;7527:16;7552:28;7574:5;7552:28;:::i;8922:168::-;8962:7;9028:1;9024;9020:6;9016:14;9013:1;9010:21;9005:1;8998:9;8991:17;8987:45;8984:71;;;9035:18;;:::i;:::-;-1:-1:-1;9075:9:1;;8922:168::o;9095:217::-;9135:1;9161;9151:132;;9205:10;9200:3;9196:20;9193:1;9186:31;9240:4;9237:1;9230:15;9268:4;9265:1;9258:15;9151:132;-1:-1:-1;9297:9:1;;9095:217::o;12948:401::-;13150:2;13132:21;;;13189:2;13169:18;;;13162:30;13228:34;13223:2;13208:18;;13201:62;-1:-1:-1;;;13294:2:1;13279:18;;13272:35;13339:3;13324:19;;12948:401::o;13354:399::-;13556:2;13538:21;;;13595:2;13575:18;;;13568:30;13634:34;13629:2;13614:18;;13607:62;-1:-1:-1;;;13700:2:1;13685:18;;13678:33;13743:3;13728:19;;13354:399::o;15723:128::-;15790:9;;;15811:11;;;15808:37;;;15825:18;;:::i;17699:135::-;17738:3;17759:17;;;17756:43;;17779:18;;:::i;:::-;-1:-1:-1;17826:1:1;17815:13;;17699:135::o;17971:127::-;18032:10;18027:3;18023:20;18020:1;18013:31;18063:4;18060:1;18053:15;18087:4;18084:1;18077:15;18103:251;18173:6;18226:2;18214:9;18205:7;18201:23;18197:32;18194:52;;;18242:1;18239;18232:12;18194:52;18274:9;18268:16;18293:31;18318:5;18293:31;:::i;18359:980::-;18621:4;18669:3;18658:9;18654:19;18700:6;18689:9;18682:25;18726:2;18764:6;18759:2;18748:9;18744:18;18737:34;18807:3;18802:2;18791:9;18787:18;18780:31;18831:6;18866;18860:13;18897:6;18889;18882:22;18935:3;18924:9;18920:19;18913:26;;18974:2;18966:6;18962:15;18948:29;;18995:1;19005:195;19019:6;19016:1;19013:13;19005:195;;;19084:13;;-1:-1:-1;;;;;19080:39:1;19068:52;;19175:15;;;;19140:12;;;;19116:1;19034:9;19005:195;;;-1:-1:-1;;;;;;;19256:32:1;;;;19251:2;19236:18;;19229:60;-1:-1:-1;;;19320:3:1;19305:19;19298:35;19217:3;18359:980;-1:-1:-1;;;18359:980:1:o;19956:306::-;20044:6;20052;20060;20113:2;20101:9;20092:7;20088:23;20084:32;20081:52;;;20129:1;20126;20119:12;20081:52;20158:9;20152:16;20142:26;;20208:2;20197:9;20193:18;20187:25;20177:35;;20252:2;20241:9;20237:18;20231:25;20221:35;;19956:306;;;;;:::o

Swarm Source

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