ETH Price: $2,110.95 (+3.07%)

Contract

0xbCEe578E9B5a0f4d19e8d35E628fAAE293BbcE80
 

Overview

ETH Balance

0.012 ETH

Eth Value

$25.33 (@ $2,110.95/ETH)

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve182303272023-09-27 23:19:11897 days ago1695856751IN
0xbCEe578E...293BbcE80
0 ETH0.000315666.78080552
Approve182225072023-09-26 21:04:11898 days ago1695762251IN
0xbCEe578E...293BbcE80
0 ETH0.000835517.94772056
Transfer182224542023-09-26 20:53:23898 days ago1695761603IN
0xbCEe578E...293BbcE80
0 ETH0.0008246713.32353179
Approve181761872023-09-20 9:24:11904 days ago1695201851IN
0xbCEe578E...293BbcE80
0 ETH0.000369037.92726521
Transfer181663442023-09-19 0:18:23906 days ago1695082703IN
0xbCEe578E...293BbcE80
0 ETH0.0004883110.16187427
Approve181487772023-09-16 12:43:23908 days ago1694868203IN
0xbCEe578E...293BbcE80
0 ETH0.0005103510.94904573
Approve181487212023-09-16 12:31:59908 days ago1694867519IN
0xbCEe578E...293BbcE80
0 ETH0.000429389.21192898
Transfer181302122023-09-13 21:59:23911 days ago1694642363IN
0xbCEe578E...293BbcE80
0 ETH0.0008269812.69740554
Transfer181233452023-09-12 22:52:59912 days ago1694559179IN
0xbCEe578E...293BbcE80
0.012 ETH0.000180128.55478421
Transfer181159972023-09-11 22:09:23913 days ago1694470163IN
0xbCEe578E...293BbcE80
0 ETH0.0006717715.52225768
Approve181140292023-09-11 15:33:47913 days ago1694446427IN
0xbCEe578E...293BbcE80
0 ETH0.0015896334.10347343
Transfer181094022023-09-11 0:00:23914 days ago1694390423IN
0xbCEe578E...293BbcE80
0 ETH0.000619399.50659471
Approve181039572023-09-10 5:41:59915 days ago1694324519IN
0xbCEe578E...293BbcE80
0 ETH0.000436869.38454289
Approve181002122023-09-09 17:06:35915 days ago1694279195IN
0xbCEe578E...293BbcE80
0 ETH0.0006426813.80578015
Approve181000842023-09-09 16:40:35915 days ago1694277635IN
0xbCEe578E...293BbcE80
0 ETH0.0005024610.79367338
Approve181000382023-09-09 16:31:23915 days ago1694277083IN
0xbCEe578E...293BbcE80
0 ETH0.0005554511.91660733
Approve180983102023-09-09 10:42:35915 days ago1694256155IN
0xbCEe578E...293BbcE80
0 ETH0.000261189.79970881
Approve180983092023-09-09 10:42:23915 days ago1694256143IN
0xbCEe578E...293BbcE80
0 ETH0.000443769.53257155
Transfer Ownersh...180939832023-09-08 20:09:23916 days ago1694203763IN
0xbCEe578E...293BbcE80
0 ETH0.0005421318.87903587
Approve180896732023-09-08 5:39:35917 days ago1694151575IN
0xbCEe578E...293BbcE80
0 ETH0.0006316613.55156046
Approve180889712023-09-08 3:18:23917 days ago1694143103IN
0xbCEe578E...293BbcE80
0 ETH0.0008342618
Approve180885582023-09-08 1:55:11917 days ago1694138111IN
0xbCEe578E...293BbcE80
0 ETH0.0004890410.4917772
Transfer180884352023-09-08 1:30:23917 days ago1694136623IN
0xbCEe578E...293BbcE80
0 ETH0.0007352311.28873237
Approve180884002023-09-08 1:23:23917 days ago1694136203IN
0xbCEe578E...293BbcE80
0 ETH0.0006115513.12340023
Transfer180882362023-09-08 0:50:35917 days ago1694134235IN
0xbCEe578E...293BbcE80
0 ETH0.0010518313.31704132
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TokenEth

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-09-07
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol

// OpenZeppelin Contracts (last updated v4.9.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 subtraction 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;
        }
    }
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

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

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

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

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

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2ERC20.sol

pragma solidity >=0.5.0;

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

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

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;

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

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

// File: contracts/tokens/EthTreatToken.sol


pragma solidity ^0.8.0;






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

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    uint8 public feeDecimals;
    uint32 public feePercentage;
    uint128 private minTokensBeforeSwap;

    address public treatBridge;
    address payable public treatTreasuryAddress;

    bool inSwapAndLiquify;
    bool swapAndLiquifyEnabled;

    address[] public nontaxedFromContracts;
    mapping(address => bool) public isAddressNotTaxedFrom;
    address[] public nontaxedToContracts;
    mapping(address => bool) public isAddressNotTaxedTo;

    event FeeUpdated(uint8 feeDecimals, uint32 feePercentage);
    event MinTokensBeforeSwapUpdated(uint128 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    event RouterChanged(address newRouter);
    event Taxing(address from, address to, uint256 amount);

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

    modifier onlyBridge() {
        require(msg.sender == treatBridge, "Caller is not the bridge");
        _;
    }

    constructor(
        uint8 _feeDecimals,
        uint32 _feePercentage,
        uint128 _minTokensBeforeSwap,
        bool _swapAndLiquifyEnabled,
        address payable _treasuryAddress
    ) ERC20("Treat", "Treat") {        
        // Create a uniswap pair for this new token
        treatTreasuryAddress = _treasuryAddress;

        updateFee(_feeDecimals, _feePercentage);
        updateMinTokensBeforeSwap(_minTokensBeforeSwap);
        updateSwapAndLiquifyEnabled(_swapAndLiquifyEnabled);
    }

    function initializeUniswapFactory(IUniswapV2Router02 _uniswapV2Router) public onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

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

    }

    /*
        override the internal _transfer function so that we can
        take the fee, and conditionally do the swap + liquditiy
    */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            msg.sender != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            swapAndLiquify(contractTokenBalance);
        }

        // calculate the number of tokens to take as a fee
        uint256 tokensToLock = calculateTokenFee(
            amount,
            feeDecimals,
            feePercentage,
            from,
            to
        );

        // take the fee and send those tokens to this contract address
        // and then send the remainder of tokens to original recipient
        uint256 tokensToTransfer = amount.sub(tokensToLock);

        if(tokensToLock > 0) {
            super._transfer(from, address(this), tokensToLock.div(2));
            super._transfer(from, treatTreasuryAddress, tokensToLock.div(2));
        }
        super._transfer(from, to, tokensToTransfer);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

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

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

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

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

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the pancakeswap 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
            address(this),
            block.timestamp
        );
    }

    function calculateTokenFee(
        uint256 _amount,
        uint8 _feeDecimals,
        uint32 _feePercentage,
        address _from,
        address _to
    ) public view returns (uint256 locked) {
        bool isTaxed = true;
        if(isAddressNotTaxedFrom[_from]) {
            isTaxed = false;
        }
        if(isAddressNotTaxedTo[_to]) {
            isTaxed = false;
        }
        if(!isTaxed) {
            return 0;
        }
        locked = _amount.mul(_feePercentage).div(
            10**(uint256(_feeDecimals) + 2)
        );
    }

    function addNonTaxedToContract(address nontaxed) public onlyOwner {
        bool isAddedAlready = false;
        for(uint i=0; i< nontaxedToContracts.length; i++) {
            if(nontaxedToContracts[i] == nontaxed) {
                isAddedAlready = true;
            }
        }
        require(!isAddedAlready, "Address is already not taxed when sending to");
        nontaxedToContracts.push(nontaxed);
        isAddressNotTaxedTo[nontaxed] = true;
    }

    function addNonTaxedFromContract(address nontaxed) public onlyOwner {
        bool isAddedAlready = false;
        for(uint i=0; i< nontaxedFromContracts.length; i++) {
            if(nontaxedFromContracts[i] == nontaxed) {
                isAddedAlready = true;
            }
        }
        require(!isAddedAlready, "Address is already not taxed when sending from");
        nontaxedFromContracts.push(nontaxed);
        isAddressNotTaxedFrom[nontaxed] = true;
    }

    function removeNonTaxedToContract(address taxed) public onlyOwner {
        for (uint256 i=0; i < nontaxedToContracts.length; i++) {
            if(nontaxedToContracts[i] == taxed) {
                nontaxedToContracts[i] = nontaxedToContracts[nontaxedToContracts.length - 1];
                nontaxedToContracts.pop();
                isAddressNotTaxedTo[taxed] = false;
            }
        }
    }

    function removeNonTaxedFromContract(address taxed) public onlyOwner {
        for (uint256 i=0; i < nontaxedFromContracts.length; i++) {
            if(nontaxedFromContracts[i] == taxed) {
                nontaxedFromContracts[i] = nontaxedFromContracts[nontaxedFromContracts.length - 1];
                nontaxedFromContracts.pop();
                isAddressNotTaxedFrom[taxed] = false;
            }
        }
    }

    receive() external payable {}

    /**
     *
     * @dev burn and mint functions
     */
    function mint(address account, uint256 amount) public onlyBridge {
        _mint(account, amount);
    }

    function burn(address account, uint256 amount) public onlyBridge {
        _burn(account, amount);
    }

    ///
    /// Ownership adjustments
    ///
    function setRouter(address _uniswapRouter) public onlyOwner {
        uniswapV2Router = IUniswapV2Router02(_uniswapRouter);
        emit RouterChanged(_uniswapRouter);
    }

    function setBridge(address _treatBridge) public onlyOwner {
        treatBridge = _treatBridge;
    }

    function updateFee(uint8 _feeDecimals, uint32 _feePercentage) public onlyOwner {
        feeDecimals = _feeDecimals;
        feePercentage = _feePercentage;
        emit FeeUpdated(_feeDecimals, _feePercentage);
    }

    function updateMinTokensBeforeSwap(uint128 _minTokensBeforeSwap) public onlyOwner {
        minTokensBeforeSwap = _minTokensBeforeSwap;
        emit MinTokensBeforeSwapUpdated(_minTokensBeforeSwap);
    }

    function updateSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
    function withdrawAll(address _tokenAddress, address payable _to) public onlyOwner {
        uint balance = IERC20(_tokenAddress).balanceOf(address(this));
        IERC20(_tokenAddress).transfer(_to, balance);
    }

    function withdrawTokens(address _token,address _to,uint256 _amount) public onlyOwner {
        IUniswapV2ERC20 token = IUniswapV2ERC20(_token);
        token.transfer(_to, _amount);
    }

    function withdrawEther(address payable _to, uint256 _amount) public onlyOwner {
        _to.transfer(_amount);
    }
    
    function harvestTreats(address payable _to) public onlyOwner {
        _to.transfer(address(this).balance);
    }

    function treasury(address payable _treatTreasuryAddress) public onlyOwner {
        require(_treatTreasuryAddress != address(0), "cannot switch treasury to the zero address");
        treatTreasuryAddress = _treatTreasuryAddress;
    }

    function setPair(address _pairAddress) public onlyOwner {
        uniswapV2Pair = _pairAddress;
    }


}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"},{"internalType":"uint128","name":"_minTokensBeforeSwap","type":"uint128"},{"internalType":"bool","name":"_swapAndLiquifyEnabled","type":"bool"},{"internalType":"address payable","name":"_treasuryAddress","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":false,"internalType":"uint8","name":"feeDecimals","type":"uint8"},{"indexed":false,"internalType":"uint32","name":"feePercentage","type":"uint32"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint128","name":"minTokensBeforeSwap","type":"uint128"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRouter","type":"address"}],"name":"RouterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Taxing","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"nontaxed","type":"address"}],"name":"addNonTaxedFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nontaxed","type":"address"}],"name":"addNonTaxedToContract","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"calculateTokenFee","outputs":[{"internalType":"uint256","name":"locked","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"harvestTreats","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":"contract IUniswapV2Router02","name":"_uniswapV2Router","type":"address"}],"name":"initializeUniswapFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAddressNotTaxedFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAddressNotTaxedTo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nontaxedFromContracts","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nontaxedToContracts","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"taxed","type":"address"}],"name":"removeNonTaxedFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"taxed","type":"address"}],"name":"removeNonTaxedToContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treatBridge","type":"address"}],"name":"setBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pairAddress","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapRouter","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_treatTreasuryAddress","type":"address"}],"name":"treasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treatBridge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treatTreasuryAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","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":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_minTokensBeforeSwap","type":"uint128"}],"name":"updateMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162002ada38038062002ada8339810160408190526200003491620002f7565b604080518082018252600580825264151c99585d60da1b602080840182905284518086019095529184529083015290600362000071838262000433565b50600462000080828262000433565b5050506200009d62000097620000e560201b60201c565b620000e9565b600a80546001600160a01b0319166001600160a01b038316179055620000c485856200013b565b620000cf83620001c2565b620000da8262000221565b5050505050620004ff565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200014562000279565b6007805464ffffffffff60a01b1916600160a01b60ff851690810263ffffffff60a81b191691909117600160a81b63ffffffff8516908102919091179092556040805191825260208201929092527f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0910160405180910390a15050565b620001cc62000279565b600880546001600160801b0319166001600160801b0383169081179091556040519081527fb20e0f86438dbd4812cee7b24a6696d4dbaa9d3db89c677e731ab7dd738c8bbe906020015b60405180910390a150565b6200022b62000279565b600a8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906200021690831515815260200190565b6005546001600160a01b03163314620002d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b80516001600160a01b0381168114620002f257600080fd5b919050565b600080600080600060a086880312156200031057600080fd5b855160ff811681146200032257600080fd5b602087015190955063ffffffff811681146200033d57600080fd5b60408701519094506001600160801b03811681146200035b57600080fd5b606087015190935080151581146200037257600080fd5b91506200038260808701620002da565b90509295509295909350565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003b957607f821691505b602082108103620003da57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200042e57600081815260208120601f850160051c81016020861015620004095750805b601f850160051c820191505b818110156200042a5782815560010162000415565b5050505b505050565b81516001600160401b038111156200044f576200044f6200038e565b6200046781620004608454620003a4565b84620003e0565b602080601f8311600181146200049f5760008415620004865750858301515b600019600386901b1c1916600185901b1785556200042a565b600085815260208120601f198616915b82811015620004d057888601518255948401946001909101908401620004af565b5085821015620004ef5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6125cb806200050f6000396000f3fe6080604052600436106102605760003560e01c80636061cd0911610144578063a41270f0116100b6578063c47ad8911161007a578063c47ad89114610779578063cc0f178614610799578063dd62ed3e146107ba578063eaa93e78146107da578063f0d4c056146107fa578063f2fde38b1461081a57600080fd5b8063a41270f0146106d9578063a457c2d7146106f9578063a9059cbb14610719578063b6a3ed3114610739578063c0d786551461075957600080fd5b80638da5cb5b116101085780638da5cb5b1461060d5780638dd148021461062b57806395d89b411461064b5780639dc29fac146106605780639f9a4e7f14610680578063a001ecdd146106a057600080fd5b80636061cd09146105625780636b99f4b21461058257806370a08231146105a2578063715018a6146105d85780638187f516146105ed57600080fd5b80632d809cb6116101dd57806340db75d6116101a157806340db75d614610492578063468b5a9a146104b257806349bd5a5e146104e2578063522f6815146105025780635a11ee02146105225780635e35359e1461054257600080fd5b80632d809cb6146103f0578063313ce5671461041057806339509351146104325780633a27b7641461045257806340c10f191461047257600080fd5b80631694505e116102245780631694505e1461035157806318160ddd146103715780631a5ea48c146103905780631ad82d16146103b057806323b872dd146103d057600080fd5b806306fdde031461026c578063095ea7b31461029757806309cae2c8146102c75780630f81f9f7146102e9578063129a81cf1461032157600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028161083a565b60405161028e919061206b565b60405180910390f35b3480156102a357600080fd5b506102b76102b23660046120ce565b6108cc565b604051901515815260200161028e565b3480156102d357600080fd5b506102e76102e23660046120fa565b6108e6565b005b3480156102f557600080fd5b50600954610309906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b34801561032d57600080fd5b506102b761033c366004612133565b600e6020526000908152604090205460ff1681565b34801561035d57600080fd5b50600654610309906001600160a01b031681565b34801561037d57600080fd5b506002545b60405190815260200161028e565b34801561039c57600080fd5b506103096103ab366004612150565b6109d6565b3480156103bc57600080fd5b50600a54610309906001600160a01b031681565b3480156103dc57600080fd5b506102b76103eb366004612169565b610a00565b3480156103fc57600080fd5b506102e761040b366004612133565b610a24565b34801561041c57600080fd5b5060125b60405160ff909116815260200161028e565b34801561043e57600080fd5b506102b761044d3660046120ce565b610abc565b34801561045e57600080fd5b506102e761046d3660046121aa565b610ade565b34801561047e57600080fd5b506102e761048d3660046120ce565b610b44565b34801561049e57600080fd5b506102e76104ad366004612133565b610ba7565b3480156104be57600080fd5b506102b76104cd366004612133565b600c6020526000908152604090205460ff1681565b3480156104ee57600080fd5b50600754610309906001600160a01b031681565b34801561050e57600080fd5b506102e761051d3660046120ce565b610cd3565b34801561052e57600080fd5b506102e761053d366004612133565b610d16565b34801561054e57600080fd5b506102e761055d366004612169565b610e48565b34801561056e57600080fd5b5061038261057d3660046121fd565b610ecd565b34801561058e57600080fd5b5061030961059d366004612150565b610f6b565b3480156105ae57600080fd5b506103826105bd366004612133565b6001600160a01b031660009081526020819052604090205490565b3480156105e457600080fd5b506102e7610f7b565b3480156105f957600080fd5b506102e7610608366004612133565b610f8f565b34801561061957600080fd5b506005546001600160a01b0316610309565b34801561063757600080fd5b506102e7610646366004612133565b610fb9565b34801561065757600080fd5b50610281610fe3565b34801561066c57600080fd5b506102e761067b3660046120ce565b610ff2565b34801561068c57600080fd5b506102e761069b36600461226f565b611051565b3480156106ac57600080fd5b506007546106c490600160a81b900463ffffffff1681565b60405163ffffffff909116815260200161028e565b3480156106e557600080fd5b506102e76106f4366004612133565b6110a6565b34801561070557600080fd5b506102b76107143660046120ce565b6110e3565b34801561072557600080fd5b506102b76107343660046120ce565b61115e565b34801561074557600080fd5b506102e7610754366004612133565b61116c565b34801561076557600080fd5b506102e7610774366004612133565b611298565b34801561078557600080fd5b506102e7610794366004612133565b6112ee565b3480156107a557600080fd5b5060075461042090600160a01b900460ff1681565b3480156107c657600080fd5b506103826107d53660046120fa565b61141e565b3480156107e657600080fd5b506102e76107f536600461228c565b611449565b34801561080657600080fd5b506102e7610815366004612133565b6114ce565b34801561082657600080fd5b506102e7610835366004612133565b61164b565b606060038054610849906122bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610875906122bf565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b6000336108da8185856116c4565b60019150505b92915050565b6108ee6117e8565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610935573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095991906122f9565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af11580156109ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d09190612312565b50505050565b600b81815481106109e657600080fd5b6000918252602090912001546001600160a01b0316905081565b600033610a0e858285611842565b610a198585856118b6565b506001949350505050565b610a2c6117e8565b6001600160a01b038116610a9a5760405162461bcd60e51b815260206004820152602a60248201527f63616e6e6f742073776974636820747265617375727920746f20746865207a65604482015269726f206164647265737360b01b60648201526084015b60405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000336108da818585610acf838361141e565b610ad99190612345565b6116c4565b610ae66117e8565b600880546fffffffffffffffffffffffffffffffff19166001600160801b0383169081179091556040519081527fb20e0f86438dbd4812cee7b24a6696d4dbaa9d3db89c677e731ab7dd738c8bbe906020015b60405180910390a150565b6009546001600160a01b03163314610b995760405162461bcd60e51b815260206004820152601860248201527743616c6c6572206973206e6f74207468652062726964676560401b6044820152606401610a91565b610ba382826119ae565b5050565b610baf6117e8565b60005b600d54811015610ba357816001600160a01b0316600d8281548110610bd957610bd9612358565b6000918252602090912001546001600160a01b031603610cc157600d8054610c039060019061236e565b81548110610c1357610c13612358565b600091825260209091200154600d80546001600160a01b039092169183908110610c3f57610c3f612358565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600d805480610c7e57610c7e612381565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b0384168252600e905260409020805460ff191690555b80610ccb81612397565b915050610bb2565b610cdb6117e8565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610d11573d6000803e3d6000fd5b505050565b610d1e6117e8565b6000805b600b54811015610d7a57826001600160a01b0316600b8281548110610d4957610d49612358565b6000918252602090912001546001600160a01b031603610d6857600191505b80610d7281612397565b915050610d22565b508015610de05760405162461bcd60e51b815260206004820152602e60248201527f4164647265737320697320616c7265616479206e6f742074617865642077686560448201526d6e2073656e64696e672066726f6d60901b6064820152608401610a91565b50600b805460018181019092557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b039093166001600160a01b0319909316831790556000918252600c6020526040909120805460ff19169091179055565b610e506117e8565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284919082169063a9059cbb906044016020604051808303816000875af1158015610ea2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec69190612312565b5050505050565b6001600160a01b0382166000908152600c602052604081205460019060ff1615610ef5575060005b6001600160a01b0383166000908152600e602052604090205460ff1615610f1a575060005b80610f29576000915050610f62565b610f5e610f3a60ff88166002612345565b610f4590600a612494565b610f588963ffffffff808a1690611a6d16565b90611a80565b9150505b95945050505050565b600d81815481106109e657600080fd5b610f836117e8565b610f8d6000611a8c565b565b610f976117e8565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610fc16117e8565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610849906122bf565b6009546001600160a01b031633146110475760405162461bcd60e51b815260206004820152601860248201527743616c6c6572206973206e6f74207468652062726964676560401b6044820152606401610a91565b610ba38282611ade565b6110596117e8565b600a8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610b3990831515815260200190565b6110ae6117e8565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610ba3573d6000803e3d6000fd5b600033816110f1828661141e565b9050838110156111515760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a91565b610a1982868684036116c4565b6000336108da8185856118b6565b6111746117e8565b60005b600b54811015610ba357816001600160a01b0316600b828154811061119e5761119e612358565b6000918252602090912001546001600160a01b03160361128657600b80546111c89060019061236e565b815481106111d8576111d8612358565b600091825260209091200154600b80546001600160a01b03909216918390811061120457611204612358565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600b80548061124357611243612381565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b0384168252600c905260409020805460ff191690555b8061129081612397565b915050611177565b6112a06117e8565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527f1085cec9a5108943412475d298086ae4d0abf09cfad47b05436b89fe887a820c90602001610b39565b6112f66117e8565b6000805b600d5481101561135257826001600160a01b0316600d828154811061132157611321612358565b6000918252602090912001546001600160a01b03160361134057600191505b8061134a81612397565b9150506112fa565b5080156113b65760405162461bcd60e51b815260206004820152602c60248201527f4164647265737320697320616c7265616479206e6f742074617865642077686560448201526b6e2073656e64696e6720746f60a01b6064820152608401610a91565b50600d805460018181019092557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b039093166001600160a01b0319909316831790556000918252600e6020526040909120805460ff19169091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114516117e8565b6007805464ffffffffff60a01b1916600160a01b60ff851690810263ffffffff60a81b191691909117600160a81b63ffffffff8516908102919091179092556040805191825260208201929092527f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0910160405180910390a15050565b6114d66117e8565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611514573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153891906124a0565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611585573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a991906124a0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156115f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161a91906124a0565b600780546001600160a01b039283166001600160a01b03199182161790915560068054939092169216919091179055565b6116536117e8565b6001600160a01b0381166116b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a91565b6116c181611a8c565b50565b6001600160a01b0383166117265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a91565b6001600160a01b0382166117875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a91565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610f8d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b600061184e848461141e565b905060001981146109d057818110156118a95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a91565b6109d084848484036116c4565b306000908152602081905260409020546008546001600160801b0316811080159081906118ed5750600a54600160a01b900460ff16155b801561190457506007546001600160a01b03163314155b80156119195750600a54600160a81b900460ff165b156119275761192782611c10565b600754600090611952908590600160a01b810460ff1690600160a81b900463ffffffff168989610ecd565b905060006119608583611cb7565b9050811561199a5761197d8730611978856002611a80565b611cc3565b600a5461199a9088906001600160a01b0316611978856002611a80565b6119a5878783611cc3565b50505050505050565b6001600160a01b038216611a045760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a91565b8060026000828254611a169190612345565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000611a7982846124bd565b9392505050565b6000611a7982846124d4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216611b3e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a91565b6001600160a01b03821660009081526020819052604090205481811015611bb25760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a91565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600a805460ff60a01b1916600160a01b1790556000611c30826002611a80565b90506000611c3e8383611cb7565b905047611c4a83611e67565b6000611c564783611cb7565b9050611c628382611fc1565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050600a805460ff60a01b19169055505050565b6000611a79828461236e565b6001600160a01b038316611d275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a91565b6001600160a01b038216611d895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a91565b6001600160a01b03831660009081526020819052604090205481811015611e015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a91565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109d0565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e9c57611e9c612358565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1991906124a0565b81600181518110611f2c57611f2c612358565b6001600160a01b039283166020918202929092010152600654611f5291309116846116c4565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611f8b9085906000908690309042906004016124f6565b600060405180830381600087803b158015611fa557600080fd5b505af1158015611fb9573d6000803e3d6000fd5b505050505050565b600654611fd99030906001600160a01b0316846116c4565b60065460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015612046573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ec69190612567565b600060208083528351808285015260005b818110156120985785810183015185820160400152820161207c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116c157600080fd5b600080604083850312156120e157600080fd5b82356120ec816120b9565b946020939093013593505050565b6000806040838503121561210d57600080fd5b8235612118816120b9565b91506020830135612128816120b9565b809150509250929050565b60006020828403121561214557600080fd5b8135611a79816120b9565b60006020828403121561216257600080fd5b5035919050565b60008060006060848603121561217e57600080fd5b8335612189816120b9565b92506020840135612199816120b9565b929592945050506040919091013590565b6000602082840312156121bc57600080fd5b81356001600160801b0381168114611a7957600080fd5b803560ff811681146121e457600080fd5b919050565b803563ffffffff811681146121e457600080fd5b600080600080600060a0868803121561221557600080fd5b85359450612225602087016121d3565b9350612233604087016121e9565b92506060860135612243816120b9565b91506080860135612253816120b9565b809150509295509295909350565b80151581146116c157600080fd5b60006020828403121561228157600080fd5b8135611a7981612261565b6000806040838503121561229f57600080fd5b6122a8836121d3565b91506122b6602084016121e9565b90509250929050565b600181811c908216806122d357607f821691505b6020821081036122f357634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561230b57600080fd5b5051919050565b60006020828403121561232457600080fd5b8151611a7981612261565b634e487b7160e01b600052601160045260246000fd5b808201808211156108e0576108e061232f565b634e487b7160e01b600052603260045260246000fd5b818103818111156108e0576108e061232f565b634e487b7160e01b600052603160045260246000fd5b6000600182016123a9576123a961232f565b5060010190565b600181815b808511156123eb5781600019048211156123d1576123d161232f565b808516156123de57918102915b93841c93908002906123b5565b509250929050565b600082612402575060016108e0565b8161240f575060006108e0565b8160018114612425576002811461242f5761244b565b60019150506108e0565b60ff8411156124405761244061232f565b50506001821b6108e0565b5060208310610133831016604e8410600b841016171561246e575081810a6108e0565b61247883836123b0565b806000190482111561248c5761248c61232f565b029392505050565b6000611a7983836123f3565b6000602082840312156124b257600080fd5b8151611a79816120b9565b80820281158282048414176108e0576108e061232f565b6000826124f157634e487b7160e01b600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125465784516001600160a01b031683529383019391830191600101612521565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561257c57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212205c869d2436e23a24749c29e31e216ec65f5db11c28da5e8ba3988b2f910e287464736f6c634300081100330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c6863e579710a16e916591aaa9b85487625885f4

Deployed Bytecode

0x6080604052600436106102605760003560e01c80636061cd0911610144578063a41270f0116100b6578063c47ad8911161007a578063c47ad89114610779578063cc0f178614610799578063dd62ed3e146107ba578063eaa93e78146107da578063f0d4c056146107fa578063f2fde38b1461081a57600080fd5b8063a41270f0146106d9578063a457c2d7146106f9578063a9059cbb14610719578063b6a3ed3114610739578063c0d786551461075957600080fd5b80638da5cb5b116101085780638da5cb5b1461060d5780638dd148021461062b57806395d89b411461064b5780639dc29fac146106605780639f9a4e7f14610680578063a001ecdd146106a057600080fd5b80636061cd09146105625780636b99f4b21461058257806370a08231146105a2578063715018a6146105d85780638187f516146105ed57600080fd5b80632d809cb6116101dd57806340db75d6116101a157806340db75d614610492578063468b5a9a146104b257806349bd5a5e146104e2578063522f6815146105025780635a11ee02146105225780635e35359e1461054257600080fd5b80632d809cb6146103f0578063313ce5671461041057806339509351146104325780633a27b7641461045257806340c10f191461047257600080fd5b80631694505e116102245780631694505e1461035157806318160ddd146103715780631a5ea48c146103905780631ad82d16146103b057806323b872dd146103d057600080fd5b806306fdde031461026c578063095ea7b31461029757806309cae2c8146102c75780630f81f9f7146102e9578063129a81cf1461032157600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028161083a565b60405161028e919061206b565b60405180910390f35b3480156102a357600080fd5b506102b76102b23660046120ce565b6108cc565b604051901515815260200161028e565b3480156102d357600080fd5b506102e76102e23660046120fa565b6108e6565b005b3480156102f557600080fd5b50600954610309906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b34801561032d57600080fd5b506102b761033c366004612133565b600e6020526000908152604090205460ff1681565b34801561035d57600080fd5b50600654610309906001600160a01b031681565b34801561037d57600080fd5b506002545b60405190815260200161028e565b34801561039c57600080fd5b506103096103ab366004612150565b6109d6565b3480156103bc57600080fd5b50600a54610309906001600160a01b031681565b3480156103dc57600080fd5b506102b76103eb366004612169565b610a00565b3480156103fc57600080fd5b506102e761040b366004612133565b610a24565b34801561041c57600080fd5b5060125b60405160ff909116815260200161028e565b34801561043e57600080fd5b506102b761044d3660046120ce565b610abc565b34801561045e57600080fd5b506102e761046d3660046121aa565b610ade565b34801561047e57600080fd5b506102e761048d3660046120ce565b610b44565b34801561049e57600080fd5b506102e76104ad366004612133565b610ba7565b3480156104be57600080fd5b506102b76104cd366004612133565b600c6020526000908152604090205460ff1681565b3480156104ee57600080fd5b50600754610309906001600160a01b031681565b34801561050e57600080fd5b506102e761051d3660046120ce565b610cd3565b34801561052e57600080fd5b506102e761053d366004612133565b610d16565b34801561054e57600080fd5b506102e761055d366004612169565b610e48565b34801561056e57600080fd5b5061038261057d3660046121fd565b610ecd565b34801561058e57600080fd5b5061030961059d366004612150565b610f6b565b3480156105ae57600080fd5b506103826105bd366004612133565b6001600160a01b031660009081526020819052604090205490565b3480156105e457600080fd5b506102e7610f7b565b3480156105f957600080fd5b506102e7610608366004612133565b610f8f565b34801561061957600080fd5b506005546001600160a01b0316610309565b34801561063757600080fd5b506102e7610646366004612133565b610fb9565b34801561065757600080fd5b50610281610fe3565b34801561066c57600080fd5b506102e761067b3660046120ce565b610ff2565b34801561068c57600080fd5b506102e761069b36600461226f565b611051565b3480156106ac57600080fd5b506007546106c490600160a81b900463ffffffff1681565b60405163ffffffff909116815260200161028e565b3480156106e557600080fd5b506102e76106f4366004612133565b6110a6565b34801561070557600080fd5b506102b76107143660046120ce565b6110e3565b34801561072557600080fd5b506102b76107343660046120ce565b61115e565b34801561074557600080fd5b506102e7610754366004612133565b61116c565b34801561076557600080fd5b506102e7610774366004612133565b611298565b34801561078557600080fd5b506102e7610794366004612133565b6112ee565b3480156107a557600080fd5b5060075461042090600160a01b900460ff1681565b3480156107c657600080fd5b506103826107d53660046120fa565b61141e565b3480156107e657600080fd5b506102e76107f536600461228c565b611449565b34801561080657600080fd5b506102e7610815366004612133565b6114ce565b34801561082657600080fd5b506102e7610835366004612133565b61164b565b606060038054610849906122bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610875906122bf565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b6000336108da8185856116c4565b60019150505b92915050565b6108ee6117e8565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610935573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095991906122f9565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af11580156109ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d09190612312565b50505050565b600b81815481106109e657600080fd5b6000918252602090912001546001600160a01b0316905081565b600033610a0e858285611842565b610a198585856118b6565b506001949350505050565b610a2c6117e8565b6001600160a01b038116610a9a5760405162461bcd60e51b815260206004820152602a60248201527f63616e6e6f742073776974636820747265617375727920746f20746865207a65604482015269726f206164647265737360b01b60648201526084015b60405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000336108da818585610acf838361141e565b610ad99190612345565b6116c4565b610ae66117e8565b600880546fffffffffffffffffffffffffffffffff19166001600160801b0383169081179091556040519081527fb20e0f86438dbd4812cee7b24a6696d4dbaa9d3db89c677e731ab7dd738c8bbe906020015b60405180910390a150565b6009546001600160a01b03163314610b995760405162461bcd60e51b815260206004820152601860248201527743616c6c6572206973206e6f74207468652062726964676560401b6044820152606401610a91565b610ba382826119ae565b5050565b610baf6117e8565b60005b600d54811015610ba357816001600160a01b0316600d8281548110610bd957610bd9612358565b6000918252602090912001546001600160a01b031603610cc157600d8054610c039060019061236e565b81548110610c1357610c13612358565b600091825260209091200154600d80546001600160a01b039092169183908110610c3f57610c3f612358565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600d805480610c7e57610c7e612381565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b0384168252600e905260409020805460ff191690555b80610ccb81612397565b915050610bb2565b610cdb6117e8565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610d11573d6000803e3d6000fd5b505050565b610d1e6117e8565b6000805b600b54811015610d7a57826001600160a01b0316600b8281548110610d4957610d49612358565b6000918252602090912001546001600160a01b031603610d6857600191505b80610d7281612397565b915050610d22565b508015610de05760405162461bcd60e51b815260206004820152602e60248201527f4164647265737320697320616c7265616479206e6f742074617865642077686560448201526d6e2073656e64696e672066726f6d60901b6064820152608401610a91565b50600b805460018181019092557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b039093166001600160a01b0319909316831790556000918252600c6020526040909120805460ff19169091179055565b610e506117e8565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284919082169063a9059cbb906044016020604051808303816000875af1158015610ea2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec69190612312565b5050505050565b6001600160a01b0382166000908152600c602052604081205460019060ff1615610ef5575060005b6001600160a01b0383166000908152600e602052604090205460ff1615610f1a575060005b80610f29576000915050610f62565b610f5e610f3a60ff88166002612345565b610f4590600a612494565b610f588963ffffffff808a1690611a6d16565b90611a80565b9150505b95945050505050565b600d81815481106109e657600080fd5b610f836117e8565b610f8d6000611a8c565b565b610f976117e8565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610fc16117e8565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610849906122bf565b6009546001600160a01b031633146110475760405162461bcd60e51b815260206004820152601860248201527743616c6c6572206973206e6f74207468652062726964676560401b6044820152606401610a91565b610ba38282611ade565b6110596117e8565b600a8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610b3990831515815260200190565b6110ae6117e8565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610ba3573d6000803e3d6000fd5b600033816110f1828661141e565b9050838110156111515760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a91565b610a1982868684036116c4565b6000336108da8185856118b6565b6111746117e8565b60005b600b54811015610ba357816001600160a01b0316600b828154811061119e5761119e612358565b6000918252602090912001546001600160a01b03160361128657600b80546111c89060019061236e565b815481106111d8576111d8612358565b600091825260209091200154600b80546001600160a01b03909216918390811061120457611204612358565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600b80548061124357611243612381565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b0384168252600c905260409020805460ff191690555b8061129081612397565b915050611177565b6112a06117e8565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527f1085cec9a5108943412475d298086ae4d0abf09cfad47b05436b89fe887a820c90602001610b39565b6112f66117e8565b6000805b600d5481101561135257826001600160a01b0316600d828154811061132157611321612358565b6000918252602090912001546001600160a01b03160361134057600191505b8061134a81612397565b9150506112fa565b5080156113b65760405162461bcd60e51b815260206004820152602c60248201527f4164647265737320697320616c7265616479206e6f742074617865642077686560448201526b6e2073656e64696e6720746f60a01b6064820152608401610a91565b50600d805460018181019092557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b039093166001600160a01b0319909316831790556000918252600e6020526040909120805460ff19169091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114516117e8565b6007805464ffffffffff60a01b1916600160a01b60ff851690810263ffffffff60a81b191691909117600160a81b63ffffffff8516908102919091179092556040805191825260208201929092527f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a0910160405180910390a15050565b6114d66117e8565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611514573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153891906124a0565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611585573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a991906124a0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156115f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161a91906124a0565b600780546001600160a01b039283166001600160a01b03199182161790915560068054939092169216919091179055565b6116536117e8565b6001600160a01b0381166116b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a91565b6116c181611a8c565b50565b6001600160a01b0383166117265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a91565b6001600160a01b0382166117875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a91565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610f8d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a91565b600061184e848461141e565b905060001981146109d057818110156118a95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a91565b6109d084848484036116c4565b306000908152602081905260409020546008546001600160801b0316811080159081906118ed5750600a54600160a01b900460ff16155b801561190457506007546001600160a01b03163314155b80156119195750600a54600160a81b900460ff165b156119275761192782611c10565b600754600090611952908590600160a01b810460ff1690600160a81b900463ffffffff168989610ecd565b905060006119608583611cb7565b9050811561199a5761197d8730611978856002611a80565b611cc3565b600a5461199a9088906001600160a01b0316611978856002611a80565b6119a5878783611cc3565b50505050505050565b6001600160a01b038216611a045760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a91565b8060026000828254611a169190612345565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000611a7982846124bd565b9392505050565b6000611a7982846124d4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216611b3e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a91565b6001600160a01b03821660009081526020819052604090205481811015611bb25760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a91565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600a805460ff60a01b1916600160a01b1790556000611c30826002611a80565b90506000611c3e8383611cb7565b905047611c4a83611e67565b6000611c564783611cb7565b9050611c628382611fc1565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050600a805460ff60a01b19169055505050565b6000611a79828461236e565b6001600160a01b038316611d275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a91565b6001600160a01b038216611d895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a91565b6001600160a01b03831660009081526020819052604090205481811015611e015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a91565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109d0565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e9c57611e9c612358565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1991906124a0565b81600181518110611f2c57611f2c612358565b6001600160a01b039283166020918202929092010152600654611f5291309116846116c4565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611f8b9085906000908690309042906004016124f6565b600060405180830381600087803b158015611fa557600080fd5b505af1158015611fb9573d6000803e3d6000fd5b505050505050565b600654611fd99030906001600160a01b0316846116c4565b60065460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015612046573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ec69190612567565b600060208083528351808285015260005b818110156120985785810183015185820160400152820161207c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116c157600080fd5b600080604083850312156120e157600080fd5b82356120ec816120b9565b946020939093013593505050565b6000806040838503121561210d57600080fd5b8235612118816120b9565b91506020830135612128816120b9565b809150509250929050565b60006020828403121561214557600080fd5b8135611a79816120b9565b60006020828403121561216257600080fd5b5035919050565b60008060006060848603121561217e57600080fd5b8335612189816120b9565b92506020840135612199816120b9565b929592945050506040919091013590565b6000602082840312156121bc57600080fd5b81356001600160801b0381168114611a7957600080fd5b803560ff811681146121e457600080fd5b919050565b803563ffffffff811681146121e457600080fd5b600080600080600060a0868803121561221557600080fd5b85359450612225602087016121d3565b9350612233604087016121e9565b92506060860135612243816120b9565b91506080860135612253816120b9565b809150509295509295909350565b80151581146116c157600080fd5b60006020828403121561228157600080fd5b8135611a7981612261565b6000806040838503121561229f57600080fd5b6122a8836121d3565b91506122b6602084016121e9565b90509250929050565b600181811c908216806122d357607f821691505b6020821081036122f357634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561230b57600080fd5b5051919050565b60006020828403121561232457600080fd5b8151611a7981612261565b634e487b7160e01b600052601160045260246000fd5b808201808211156108e0576108e061232f565b634e487b7160e01b600052603260045260246000fd5b818103818111156108e0576108e061232f565b634e487b7160e01b600052603160045260246000fd5b6000600182016123a9576123a961232f565b5060010190565b600181815b808511156123eb5781600019048211156123d1576123d161232f565b808516156123de57918102915b93841c93908002906123b5565b509250929050565b600082612402575060016108e0565b8161240f575060006108e0565b8160018114612425576002811461242f5761244b565b60019150506108e0565b60ff8411156124405761244061232f565b50506001821b6108e0565b5060208310610133831016604e8410600b841016171561246e575081810a6108e0565b61247883836123b0565b806000190482111561248c5761248c61232f565b029392505050565b6000611a7983836123f3565b6000602082840312156124b257600080fd5b8151611a79816120b9565b80820281158282048414176108e0576108e061232f565b6000826124f157634e487b7160e01b600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125465784516001600160a01b031683529383019391830191600101612521565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561257c57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212205c869d2436e23a24749c29e31e216ec65f5db11c28da5e8ba3988b2f910e287464736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c6863e579710a16e916591aaa9b85487625885f4

-----Decoded View---------------
Arg [0] : _feeDecimals (uint8): 0
Arg [1] : _feePercentage (uint32): 2
Arg [2] : _minTokensBeforeSwap (uint128): 100
Arg [3] : _swapAndLiquifyEnabled (bool): False
Arg [4] : _treasuryAddress (address): 0xC6863E579710A16e916591AAA9B85487625885F4

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000c6863e579710a16e916591aaa9b85487625885f4


Deployed Bytecode Sourcemap

34415:10647:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6642:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9002:201;;;;;;;;;;-1:-1:-1;9002:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;9002:201:0;1023:187:1;44030:217:0;;;;;;;;;;-1:-1:-1;44030:217:0;;;;;:::i;:::-;;:::i;:::-;;34687:26;;;;;;;;;;-1:-1:-1;34687:26:0;;;;-1:-1:-1;;;;;34687:26:0;;;;;;-1:-1:-1;;;;;1780:32:1;;;1762:51;;1750:2;1735:18;34687:26:0;1616:203:1;34983:51:0;;;;;;;;;;-1:-1:-1;34983:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34493:41;;;;;;;;;;-1:-1:-1;34493:41:0;;;;-1:-1:-1;;;;;34493:41:0;;;7771:108;;;;;;;;;;-1:-1:-1;7859:12:0;;7771:108;;;2457:25:1;;;2445:2;2430:18;7771:108:0;2311:177:1;34835:38:0;;;;;;;;;;-1:-1:-1;34835:38:0;;;;;:::i;:::-;;:::i;34720:43::-;;;;;;;;;;-1:-1:-1;34720:43:0;;;;-1:-1:-1;;;;;34720:43:0;;;9783:261;;;;;;;;;;-1:-1:-1;9783:261:0;;;;;:::i;:::-;;:::i;44706:238::-;;;;;;;;;;-1:-1:-1;44706:238:0;;;;;:::i;:::-;;:::i;7613:93::-;;;;;;;;;;-1:-1:-1;7696:2:0;7613:93;;;3795:4:1;3783:17;;;3765:36;;3753:2;3738:18;7613:93:0;3623:184:1;10453:238:0;;;;;;;;;;-1:-1:-1;10453:238:0;;;;;:::i;:::-;;:::i;43629:207::-;;;;;;;;;;-1:-1:-1;43629:207:0;;;;;:::i;:::-;;:::i;42828:106::-;;;;;;;;;;-1:-1:-1;42828:106:0;;;;;:::i;:::-;;:::i;41878:409::-;;;;;;;;;;-1:-1:-1;41878:409:0;;;;;:::i;:::-;;:::i;34880:53::-;;;;;;;;;;-1:-1:-1;34880:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34541:28;;;;;;;;;;-1:-1:-1;34541:28:0;;;;-1:-1:-1;;;;;34541:28:0;;;44453:118;;;;;;;;;;-1:-1:-1;44453:118:0;;;;;:::i;:::-;;:::i;41390:480::-;;;;;;;;;;-1:-1:-1;41390:480:0;;;;;:::i;:::-;;:::i;44255:190::-;;;;;;;;;;-1:-1:-1;44255:190:0;;;;;:::i;:::-;;:::i;40332:574::-;;;;;;;;;;-1:-1:-1;40332:574:0;;;;;:::i;:::-;;:::i;34940:36::-;;;;;;;;;;-1:-1:-1;34940:36:0;;;;;:::i;:::-;;:::i;7942:127::-;;;;;;;;;;-1:-1:-1;7942:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8043:18:0;8016:7;8043:18;;;;;;;;;;;;7942:127;19507:103;;;;;;;;;;;;;:::i;44952:::-;;;;;;;;;;-1:-1:-1;44952:103:0;;;;;:::i;:::-;;:::i;18866:87::-;;;;;;;;;;-1:-1:-1;18939:6:0;;-1:-1:-1;;;;;18939:6:0;18866:87;;43289:103;;;;;;;;;;-1:-1:-1;43289:103:0;;;;;:::i;:::-;;:::i;6861:104::-;;;;;;;;;;;;;:::i;42942:106::-;;;;;;;;;;-1:-1:-1;42942:106:0;;;;;:::i;:::-;;:::i;43844:174::-;;;;;;;;;;-1:-1:-1;43844:174:0;;;;;:::i;:::-;;:::i;34609:27::-;;;;;;;;;;-1:-1:-1;34609:27:0;;;;-1:-1:-1;;;34609:27:0;;;;;;;;;5923:10:1;5911:23;;;5893:42;;5881:2;5866:18;34609:27:0;5749:192:1;44583:115:0;;;;;;;;;;-1:-1:-1;44583:115:0;;;;;:::i;:::-;;:::i;11194:436::-;;;;;;;;;;-1:-1:-1;11194:436:0;;;;;:::i;:::-;;:::i;8275:193::-;;;;;;;;;;-1:-1:-1;8275:193:0;;;;;:::i;:::-;;:::i;42295:425::-;;;;;;;;;;-1:-1:-1;42295:425:0;;;;;:::i;:::-;;:::i;43105:176::-;;;;;;;;;;-1:-1:-1;43105:176:0;;;;;:::i;:::-;;:::i;40914:468::-;;;;;;;;;;-1:-1:-1;40914:468:0;;;;;:::i;:::-;;:::i;34578:24::-;;;;;;;;;;-1:-1:-1;34578:24:0;;;;-1:-1:-1;;;34578:24:0;;;;;;8531:151;;;;;;;;;;-1:-1:-1;8531:151:0;;;;;:::i;:::-;;:::i;43400:221::-;;;;;;;;;;-1:-1:-1;43400:221:0;;;;;:::i;:::-;;:::i;36235:333::-;;;;;;;;;;-1:-1:-1;36235:333:0;;;;;:::i;:::-;;:::i;19765:201::-;;;;;;;;;;-1:-1:-1;19765:201:0;;;;;:::i;:::-;;:::i;6642:100::-;6696:13;6729:5;6722:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6642:100;:::o;9002:201::-;9085:4;4364:10;9141:32;4364:10;9157:7;9166:6;9141:8;:32::i;:::-;9191:4;9184:11;;;9002:201;;;;;:::o;44030:217::-;18752:13;:11;:13::i;:::-;44138:46:::1;::::0;-1:-1:-1;;;44138:46:0;;44178:4:::1;44138:46;::::0;::::1;1762:51:1::0;44123:12:0::1;::::0;-1:-1:-1;;;;;44138:31:0;::::1;::::0;::::1;::::0;1735:18:1;;44138:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44195:44;::::0;-1:-1:-1;;;44195:44:0;;-1:-1:-1;;;;;7651:32:1;;;44195:44:0::1;::::0;::::1;7633:51:1::0;7700:18;;;7693:34;;;44123:61:0;;-1:-1:-1;44195:30:0;;::::1;::::0;::::1;::::0;7606:18:1;;44195:44:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44112:135;44030:217:::0;;:::o;34835:38::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34835:38:0;;-1:-1:-1;34835:38:0;:::o;9783:261::-;9880:4;4364:10;9938:38;9954:4;4364:10;9969:6;9938:15;:38::i;:::-;9987:27;9997:4;10003:2;10007:6;9987:9;:27::i;:::-;-1:-1:-1;10032:4:0;;9783:261;-1:-1:-1;;;;9783:261:0:o;44706:238::-;18752:13;:11;:13::i;:::-;-1:-1:-1;;;;;44799:35:0;::::1;44791:90;;;::::0;-1:-1:-1;;;44791:90:0;;8190:2:1;44791:90:0::1;::::0;::::1;8172:21:1::0;8229:2;8209:18;;;8202:30;8268:34;8248:18;;;8241:62;-1:-1:-1;;;8319:18:1;;;8312:40;8369:19;;44791:90:0::1;;;;;;;;;44892:20;:44:::0;;-1:-1:-1;;;;;;44892:44:0::1;-1:-1:-1::0;;;;;44892:44:0;;;::::1;::::0;;;::::1;::::0;;44706:238::o;10453:::-;10541:4;4364:10;10597:64;4364:10;10613:7;10650:10;10622:25;4364:10;10613:7;10622:9;:25::i;:::-;:38;;;;:::i;:::-;10597:8;:64::i;43629:207::-;18752:13;:11;:13::i;:::-;43722:19:::1;:42:::0;;-1:-1:-1;;43722:42:0::1;-1:-1:-1::0;;;;;43722:42:0;::::1;::::0;;::::1;::::0;;;43780:48:::1;::::0;8807:66:1;;;43780:48:0::1;::::0;8795:2:1;8780:18;43780:48:0::1;;;;;;;;43629:207:::0;:::o;42828:106::-;35644:11;;-1:-1:-1;;;;;35644:11:0;35630:10;:25;35622:62;;;;-1:-1:-1;;;35622:62:0;;9086:2:1;35622:62:0;;;9068:21:1;9125:2;9105:18;;;9098:30;-1:-1:-1;;;9144:18:1;;;9137:54;9208:18;;35622:62:0;8884:348:1;35622:62:0;42904:22:::1;42910:7;42919:6;42904:5;:22::i;:::-;42828:106:::0;;:::o;41878:409::-;18752:13;:11;:13::i;:::-;41960:9:::1;41955:325;41977:19;:26:::0;41973:30;::::1;41955:325;;;42054:5;-1:-1:-1::0;;;;;42028:31:0::1;:19;42048:1;42028:22;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;42028:22:0::1;:31:::0;42025:244:::1;;42105:19;42125:26:::0;;:30:::1;::::0;42154:1:::1;::::0;42125:30:::1;:::i;:::-;42105:51;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;42080:19:::1;:22:::0;;-1:-1:-1;;;;;42105:51:0;;::::1;::::0;42100:1;;42080:22;::::1;;;;;:::i;:::-;;;;;;;;;:76;;;;;-1:-1:-1::0;;;;;42080:76:0::1;;;;;-1:-1:-1::0;;;;;42080:76:0::1;;;;;;42175:19;:25;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;42175:25:0;;;;;-1:-1:-1;;;;;;42175:25:0::1;::::0;;;;;;;;-1:-1:-1;;;;;42219:26:0;::::1;::::0;;:19:::1;:26:::0;;;;;:34;;-1:-1:-1;;42219:34:0::1;::::0;;42025:244:::1;42005:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41955:325;;44453:118:::0;18752:13;:11;:13::i;:::-;44542:21:::1;::::0;-1:-1:-1;;;;;44542:12:0;::::1;::::0;:21;::::1;;;::::0;44555:7;;44542:21:::1;::::0;;;44555:7;44542:12;:21;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44453:118:::0;;:::o;41390:480::-;18752:13;:11;:13::i;:::-;41469:19:::1;41511:6:::0;41507:175:::1;41524:21;:28:::0;41521:31;::::1;41507:175;;;41605:8;-1:-1:-1::0;;;;;41577:36:0::1;:21;41599:1;41577:24;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;41577:24:0::1;:36:::0;41574:97:::1;;41651:4;41634:21;;41574:97;41554:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41507:175;;;;41701:14;41700:15;41692:74;;;::::0;-1:-1:-1;;;41692:74:0;;9976:2:1;41692:74:0::1;::::0;::::1;9958:21:1::0;10015:2;9995:18;;;9988:30;10054:34;10034:18;;;10027:62;-1:-1:-1;;;10105:18:1;;;10098:44;10159:19;;41692:74:0::1;9774:410:1::0;41692:74:0::1;-1:-1:-1::0;41777:21:0::1;:36:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;41777:36:0;;::::1;-1:-1:-1::0;;;;;;41777:36:0;;::::1;::::0;::::1;::::0;;-1:-1:-1;41824:31:0;;;:21:::1;41777:36;41824:31:::0;;;;;:38;;-1:-1:-1;;41824:38:0::1;::::0;;::::1;::::0;;41390:480::o;44255:190::-;18752:13;:11;:13::i;:::-;44409:28:::1;::::0;-1:-1:-1;;;44409:28:0;;-1:-1:-1;;;;;7651:32:1;;;44409:28:0::1;::::0;::::1;7633:51:1::0;7700:18;;;7693:34;;;44391:6:0;;44409:14;;::::1;::::0;::::1;::::0;7606:18:1;;44409:28:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44340:105;44255:190:::0;;;:::o;40332:574::-;-1:-1:-1;;;;;40580:28:0;;40520:14;40580:28;;;:21;:28;;;;;;40562:4;;40580:28;;40577:75;;;-1:-1:-1;40635:5:0;40577:75;-1:-1:-1;;;;;40665:24:0;;;;;;:19;:24;;;;;;;;40662:71;;;-1:-1:-1;40716:5:0;40662:71;40747:7;40743:48;;40778:1;40771:8;;;;;40743:48;40810:88;40861:25;:21;;;40885:1;40861:25;:::i;:::-;40856:31;;:2;:31;:::i;:::-;40810:27;:7;:27;;;;;:11;:27;:::i;:::-;:31;;:88::i;:::-;40801:97;;40536:370;40332:574;;;;;;;;:::o;34940:36::-;;;;;;;;;;;;19507:103;18752:13;:11;:13::i;:::-;19572:30:::1;19599:1;19572:18;:30::i;:::-;19507:103::o:0;44952:::-;18752:13;:11;:13::i;:::-;45019::::1;:28:::0;;-1:-1:-1;;;;;;45019:28:0::1;-1:-1:-1::0;;;;;45019:28:0;;;::::1;::::0;;;::::1;::::0;;44952:103::o;43289:::-;18752:13;:11;:13::i;:::-;43358:11:::1;:26:::0;;-1:-1:-1;;;;;;43358:26:0::1;-1:-1:-1::0;;;;;43358:26:0;;;::::1;::::0;;;::::1;::::0;;43289:103::o;6861:104::-;6917:13;6950:7;6943:14;;;;;:::i;42942:106::-;35644:11;;-1:-1:-1;;;;;35644:11:0;35630:10;:25;35622:62;;;;-1:-1:-1;;;35622:62:0;;9086:2:1;35622:62:0;;;9068:21:1;9125:2;9105:18;;;9098:30;-1:-1:-1;;;9144:18:1;;;9137:54;9208:18;;35622:62:0;8884:348:1;35622:62:0;43018:22:::1;43024:7;43033:6;43018:5;:22::i;43844:174::-:0;18752:13;:11;:13::i;:::-;43924:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;43924:32:0::1;-1:-1:-1::0;;;;43924:32:0;;::::1;;::::0;;43972:38:::1;::::0;::::1;::::0;::::1;::::0;43948:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;44583:115:0;18752:13;:11;:13::i;:::-;44655:35:::1;::::0;-1:-1:-1;;;;;44655:12:0;::::1;::::0;44668:21:::1;44655:35:::0;::::1;;;::::0;::::1;::::0;;;44668:21;44655:12;:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;11194:436:::0;11287:4;4364:10;11287:4;11370:25;4364:10;11387:7;11370:9;:25::i;:::-;11343:52;;11434:15;11414:16;:35;;11406:85;;;;-1:-1:-1;;;11406:85:0;;12044:2:1;11406:85:0;;;12026:21:1;12083:2;12063:18;;;12056:30;12122:34;12102:18;;;12095:62;-1:-1:-1;;;12173:18:1;;;12166:35;12218:19;;11406:85:0;11842:401:1;11406:85:0;11527:60;11536:5;11543:7;11571:15;11552:16;:34;11527:8;:60::i;8275:193::-;8354:4;4364:10;8410:28;4364:10;8427:2;8431:6;8410:9;:28::i;42295:425::-;18752:13;:11;:13::i;:::-;42379:9:::1;42374:339;42396:21;:28:::0;42392:32;::::1;42374:339;;;42477:5;-1:-1:-1::0;;;;;42449:33:0::1;:21;42471:1;42449:24;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;42449:24:0::1;:33:::0;42446:256:::1;;42530:21;42552:28:::0;;:32:::1;::::0;42583:1:::1;::::0;42552:32:::1;:::i;:::-;42530:55;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;42503:21:::1;:24:::0;;-1:-1:-1;;;;;42530:55:0;;::::1;::::0;42525:1;;42503:24;::::1;;;;;:::i;:::-;;;;;;;;;:82;;;;;-1:-1:-1::0;;;;;42503:82:0::1;;;;;-1:-1:-1::0;;;;;42503:82:0::1;;;;;;42604:21;:27;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;-1:-1:-1;;42604:27:0;;;;;-1:-1:-1;;;;;;42604:27:0::1;::::0;;;;;;;;-1:-1:-1;;;;;42650:28:0;::::1;::::0;;:21:::1;:28:::0;;;;;:36;;-1:-1:-1;;42650:36:0::1;::::0;;42446:256:::1;42426:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42374:339;;43105:176:::0;18752:13;:11;:13::i;:::-;43176:15:::1;:52:::0;;-1:-1:-1;;;;;;43176:52:0::1;-1:-1:-1::0;;;;;43176:52:0;::::1;::::0;;::::1;::::0;;;43244:29:::1;::::0;1762:51:1;;;43244:29:0::1;::::0;1750:2:1;1735:18;43244:29:0::1;1616:203:1::0;40914:468:0;18752:13;:11;:13::i;:::-;40991:19:::1;41033:6:::0;41029:171:::1;41046:19;:26:::0;41043:29;::::1;41029:171;;;41123:8;-1:-1:-1::0;;;;;41097:34:0::1;:19;41117:1;41097:22;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;41097:22:0::1;:34:::0;41094:95:::1;;41169:4;41152:21;;41094:95;41074:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41029:171;;;;41219:14;41218:15;41210:72;;;::::0;-1:-1:-1;;;41210:72:0;;12450:2:1;41210:72:0::1;::::0;::::1;12432:21:1::0;12489:2;12469:18;;;12462:30;12528:34;12508:18;;;12501:62;-1:-1:-1;;;12579:18:1;;;12572:42;12631:19;;41210:72:0::1;12248:408:1::0;41210:72:0::1;-1:-1:-1::0;41293:19:0::1;:34:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;41293:34:0;;::::1;-1:-1:-1::0;;;;;;41293:34:0;;::::1;::::0;::::1;::::0;;-1:-1:-1;41338:29:0;;;:19:::1;41293:34;41338:29:::0;;;;;:36;;-1:-1:-1;;41338:36:0::1;::::0;;::::1;::::0;;40914:468::o;8531:151::-;-1:-1:-1;;;;;8647:18:0;;;8620:7;8647:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8531:151::o;43400:221::-;18752:13;:11;:13::i;:::-;43490:11:::1;:26:::0;;-1:-1:-1;;;;43527:30:0;-1:-1:-1;;;43490:26:0::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;;;43527:30:0;;;;;-1:-1:-1;;;43527:30:0::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;43573:40:::1;::::0;;12829:36:1;;;12896:2;12881:18;;12874:51;;;;43573:40:0::1;::::0;12802:18:1;43573:40:0::1;;;;;;;43400:221:::0;;:::o;36235:333::-;18752:13;:11;:13::i;:::-;36368:16:::1;-1:-1:-1::0;;;;;36368:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36350:70:0::1;;36429:4;36436:16;-1:-1:-1::0;;;;;36436:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36350:110;::::0;-1:-1:-1;;;;;;36350:110:0::1;::::0;;;;;;-1:-1:-1;;;;;13422:15:1;;;36350:110:0::1;::::0;::::1;13404:34:1::0;13474:15;;13454:18;;;13447:43;13339:18;;36350:110:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36334:13;:126:::0;;-1:-1:-1;;;;;36334:126:0;;::::1;-1:-1:-1::0;;;;;;36334:126:0;;::::1;;::::0;;;36524:15:::1;:34:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;36235:333::o;19765:201::-;18752:13;:11;:13::i;:::-;-1:-1:-1;;;;;19854:22:0;::::1;19846:73;;;::::0;-1:-1:-1;;;19846:73:0;;13703:2:1;19846:73:0::1;::::0;::::1;13685:21:1::0;13742:2;13722:18;;;13715:30;13781:34;13761:18;;;13754:62;-1:-1:-1;;;13832:18:1;;;13825:36;13878:19;;19846:73:0::1;13501:402:1::0;19846:73:0::1;19930:28;19949:8;19930:18;:28::i;:::-;19765:201:::0;:::o;15187:346::-;-1:-1:-1;;;;;15289:19:0;;15281:68;;;;-1:-1:-1;;;15281:68:0;;14110:2:1;15281:68:0;;;14092:21:1;14149:2;14129:18;;;14122:30;14188:34;14168:18;;;14161:62;-1:-1:-1;;;14239:18:1;;;14232:34;14283:19;;15281:68:0;13908:400:1;15281:68:0;-1:-1:-1;;;;;15368:21:0;;15360:68;;;;-1:-1:-1;;;15360:68:0;;14515:2:1;15360:68:0;;;14497:21:1;14554:2;14534:18;;;14527:30;14593:34;14573:18;;;14566:62;-1:-1:-1;;;14644:18:1;;;14637:32;14686:19;;15360:68:0;14313:398:1;15360:68:0;-1:-1:-1;;;;;15441:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15493:32;;2457:25:1;;;15493:32:0;;2430:18:1;15493:32:0;;;;;;;15187:346;;;:::o;19031:132::-;18939:6;;-1:-1:-1;;;;;18939:6:0;4364:10;19095:23;19087:68;;;;-1:-1:-1;;;19087:68:0;;14918:2:1;19087:68:0;;;14900:21:1;;;14937:18;;;14930:30;14996:34;14976:18;;;14969:62;15048:18;;19087:68:0;14716:356:1;15824:419:0;15925:24;15952:25;15962:5;15969:7;15952:9;:25::i;:::-;15925:52;;-1:-1:-1;;15992:16:0;:37;15988:248;;16074:6;16054:16;:26;;16046:68;;;;-1:-1:-1;;;16046:68:0;;15279:2:1;16046:68:0;;;15261:21:1;15318:2;15298:18;;;15291:30;15357:31;15337:18;;;15330:59;15406:18;;16046:68:0;15077:353:1;16046:68:0;16158:51;16167:5;16174:7;16202:6;16183:16;:25;16158:8;:51::i;36722:1481::-;37177:4;37128:28;8043:18;;;;;;;;;;;37245:19;;-1:-1:-1;;;;;37245:19:0;37221:43;;;;;;;37293:53;;-1:-1:-1;37330:16:0;;-1:-1:-1;;;37330:16:0;;;;37329:17;37293:53;:97;;;;-1:-1:-1;37377:13:0;;-1:-1:-1;;;;;37377:13:0;37363:10;:27;;37293:97;:135;;;;-1:-1:-1;37407:21:0;;-1:-1:-1;;;37407:21:0;;;;37293:135;37275:228;;;37455:36;37470:20;37455:14;:36::i;:::-;37651:11;;37575:20;;37598:139;;37630:6;;-1:-1:-1;;;37651:11:0;;;;;-1:-1:-1;;;37677:13:0;;;;37705:4;37724:2;37598:17;:139::i;:::-;37575:162;-1:-1:-1;37894:24:0;37921;:6;37575:162;37921:10;:24::i;:::-;37894:51;-1:-1:-1;37961:16:0;;37958:184;;37994:57;38010:4;38024;38031:19;:12;38048:1;38031:16;:19::i;:::-;37994:15;:57::i;:::-;38088:20;;38066:64;;38082:4;;-1:-1:-1;;;;;38088:20:0;38110:19;:12;38127:1;38110:16;:19::i;38066:64::-;38152:43;38168:4;38174:2;38178:16;38152:15;:43::i;:::-;36835:1368;;;;36722:1481;;;:::o;13193:548::-;-1:-1:-1;;;;;13277:21:0;;13269:65;;;;-1:-1:-1;;;13269:65:0;;15637:2:1;13269:65:0;;;15619:21:1;15676:2;15656:18;;;15649:30;15715:33;15695:18;;;15688:61;15766:18;;13269:65:0;15435:355:1;13269:65:0;13425:6;13409:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13580:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;13635:37;2457:25:1;;;13635:37:0;;2430:18:1;13635:37:0;;;;;;;42828:106;;:::o;23936:98::-;23994:7;24021:5;24025:1;24021;:5;:::i;:::-;24014:12;23936:98;-1:-1:-1;;;23936:98:0:o;24335:::-;24393:7;24420:5;24424:1;24420;:5;:::i;20126:191::-;20219:6;;;-1:-1:-1;;;;;20236:17:0;;;-1:-1:-1;;;;;;20236:17:0;;;;;;;20269:40;;20219:6;;;20236:17;20219:6;;20269:40;;20200:16;;20269:40;20189:128;20126:191;:::o;14074:675::-;-1:-1:-1;;;;;14158:21:0;;14150:67;;;;-1:-1:-1;;;14150:67:0;;16392:2:1;14150:67:0;;;16374:21:1;16431:2;16411:18;;;16404:30;16470:34;16450:18;;;16443:62;-1:-1:-1;;;16521:18:1;;;16514:31;16562:19;;14150:67:0;16190:397:1;14150:67:0;-1:-1:-1;;;;;14317:18:0;;14292:22;14317:18;;;;;;;;;;;14354:24;;;;14346:71;;;;-1:-1:-1;;;14346:71:0;;16794:2:1;14346:71:0;;;16776:21:1;16833:2;16813:18;;;16806:30;16872:34;16852:18;;;16845:62;-1:-1:-1;;;16923:18:1;;;16916:32;16965:19;;14346:71:0;16592:398:1;14346:71:0;-1:-1:-1;;;;;14453:18:0;;:9;:18;;;;;;;;;;;14474:23;;;14453:44;;14592:12;:22;;;;;;;14643:37;2457:25:1;;;14453:9:0;;:18;14643:37;;2430:18:1;14643:37:0;;;;;;;44542:21:::1;44453:118:::0;;:::o;38211:985::-;35503:16;:23;;-1:-1:-1;;;;35503:23:0;-1:-1:-1;;;35503:23:0;;;;38362:27:::1;:20:::0;38387:1:::1;38362:24;:27::i;:::-;38347:42:::0;-1:-1:-1;38400:17:0::1;38420:30;:20:::0;38347:42;38420:24:::1;:30::i;:::-;38400:50:::0;-1:-1:-1;38753:21:0::1;38819:22;38836:4:::0;38819:16:::1;:22::i;:::-;38976:18;38997:41;:21;39023:14:::0;38997:25:::1;:41::i;:::-;38976:62;;39092:35;39105:9;39116:10;39092:12;:35::i;:::-;39145:43;::::0;;17197:25:1;;;17253:2;17238:18;;17231:34;;;17281:18;;;17274:34;;;39145:43:0::1;::::0;17185:2:1;17170:18;39145:43:0::1;;;;;;;-1:-1:-1::0;;35549:16:0;:24;;-1:-1:-1;;;;35549:24:0;;;-1:-1:-1;;;38211:985:0:o;23579:98::-;23637:7;23664:5;23668:1;23664;:5;:::i;12100:806::-;-1:-1:-1;;;;;12197:18:0;;12189:68;;;;-1:-1:-1;;;12189:68:0;;17521:2:1;12189:68:0;;;17503:21:1;17560:2;17540:18;;;17533:30;17599:34;17579:18;;;17572:62;-1:-1:-1;;;17650:18:1;;;17643:35;17695:19;;12189:68:0;17319:401:1;12189:68:0;-1:-1:-1;;;;;12276:16:0;;12268:64;;;;-1:-1:-1;;;12268:64:0;;17927:2:1;12268:64:0;;;17909:21:1;17966:2;17946:18;;;17939:30;18005:34;17985:18;;;17978:62;-1:-1:-1;;;18056:18:1;;;18049:33;18099:19;;12268:64:0;17725:399:1;12268:64:0;-1:-1:-1;;;;;12418:15:0;;12396:19;12418:15;;;;;;;;;;;12452:21;;;;12444:72;;;;-1:-1:-1;;;12444:72:0;;18331:2:1;12444:72:0;;;18313:21:1;18370:2;18350:18;;;18343:30;18409:34;18389:18;;;18382:62;-1:-1:-1;;;18460:18:1;;;18453:36;18506:19;;12444:72:0;18129:402:1;12444:72:0;-1:-1:-1;;;;;12552:15:0;;;:9;:15;;;;;;;;;;;12570:20;;;12552:38;;12770:13;;;;;;;;;;:23;;;;;;12822:26;;2457:25:1;;;12770:13:0;;12822:26;;2430:18:1;12822:26:0;;;;;;;12861:37;44453:118;39204:593;39358:16;;;39372:1;39358:16;;;;;;;;39334:21;;39358:16;;;;;;;;;;-1:-1:-1;39358:16:0;39334:40;;39403:4;39385;39390:1;39385:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39385:23:0;;;:7;;;;;;;;;;:23;;;;39429:15;;:22;;;-1:-1:-1;;;39429:22:0;;;;:15;;;;;:20;;:22;;;;;39385:7;;39429:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39419:4;39424:1;39419:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39419:32:0;;;:7;;;;;;;;;:32;39496:15;;39464:62;;39481:4;;39496:15;39514:11;39464:8;:62::i;:::-;39565:15;;:224;;-1:-1:-1;;;39565:224:0;;-1:-1:-1;;;;;39565:15:0;;;;:66;;:224;;39646:11;;39565:15;;39716:4;;39743;;39763:15;;39565:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39259:538;39204:593;:::o;39805:519::-;39985:15;;39953:62;;39970:4;;-1:-1:-1;;;;;39985:15:0;40003:11;39953:8;:62::i;:::-;40058:15;;:258;;-1:-1:-1;;;40058:258:0;;40130:4;40058:258;;;19994:34:1;;;20044:18;;;20037:34;;;40058:15:0;20087:18:1;;;20080:34;;;20130:18;;;20123:34;20173:19;;;20166:44;40290:15:0;20226:19:1;;;20219:35;-1:-1:-1;;;;;40058:15:0;;;;:31;;40097:9;;19928:19:1;;40058:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;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:396::-;1291:6;1299;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;1407:9;1394:23;1426:31;1451:5;1426:31;:::i;:::-;1476:5;-1:-1:-1;1533:2:1;1518:18;;1505:32;1546:33;1505:32;1546:33;:::i;:::-;1598:7;1588:17;;;1215:396;;;;;:::o;1824:247::-;1883:6;1936:2;1924:9;1915:7;1911:23;1907:32;1904:52;;;1952:1;1949;1942:12;1904:52;1991:9;1978:23;2010:31;2035:5;2010:31;:::i;2493:180::-;2552:6;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;-1:-1:-1;2644:23:1;;2493:180;-1:-1:-1;2493:180:1:o;2902:456::-;2979:6;2987;2995;3048:2;3036:9;3027:7;3023:23;3019:32;3016:52;;;3064:1;3061;3054:12;3016:52;3103:9;3090:23;3122:31;3147:5;3122:31;:::i;:::-;3172:5;-1:-1:-1;3229:2:1;3214:18;;3201:32;3242:33;3201:32;3242:33;:::i;:::-;2902:456;;3294:7;;-1:-1:-1;;;3348:2:1;3333:18;;;;3320:32;;2902:456::o;3812:301::-;3871:6;3924:2;3912:9;3903:7;3899:23;3895:32;3892:52;;;3940:1;3937;3930:12;3892:52;3979:9;3966:23;-1:-1:-1;;;;;4022:5:1;4018:46;4011:5;4008:57;3998:85;;4079:1;4076;4069:12;4446:156;4512:20;;4572:4;4561:16;;4551:27;;4541:55;;4592:1;4589;4582:12;4541:55;4446:156;;;:::o;4607:163::-;4674:20;;4734:10;4723:22;;4713:33;;4703:61;;4760:1;4757;4750:12;4775:600;4867:6;4875;4883;4891;4899;4952:3;4940:9;4931:7;4927:23;4923:33;4920:53;;;4969:1;4966;4959:12;4920:53;5005:9;4992:23;4982:33;;5034:36;5066:2;5055:9;5051:18;5034:36;:::i;:::-;5024:46;;5089:37;5122:2;5111:9;5107:18;5089:37;:::i;:::-;5079:47;;5176:2;5165:9;5161:18;5148:32;5189:31;5214:5;5189:31;:::i;:::-;5239:5;-1:-1:-1;5296:3:1;5281:19;;5268:33;5310;5268;5310;:::i;:::-;5362:7;5352:17;;;4775:600;;;;;;;;:::o;5380:118::-;5466:5;5459:13;5452:21;5445:5;5442:32;5432:60;;5488:1;5485;5478:12;5503:241;5559:6;5612:2;5600:9;5591:7;5587:23;5583:32;5580:52;;;5628:1;5625;5618:12;5580:52;5667:9;5654:23;5686:28;5708:5;5686:28;:::i;6339:254::-;6404:6;6412;6465:2;6453:9;6444:7;6440:23;6436:32;6433:52;;;6481:1;6478;6471:12;6433:52;6504:27;6521:9;6504:27;:::i;:::-;6494:37;;6550;6583:2;6572:9;6568:18;6550:37;:::i;:::-;6540:47;;6339:254;;;;;:::o;6877:380::-;6956:1;6952:12;;;;6999;;;7020:61;;7074:4;7066:6;7062:17;7052:27;;7020:61;7127:2;7119:6;7116:14;7096:18;7093:38;7090:161;;7173:10;7168:3;7164:20;7161:1;7154:31;7208:4;7205:1;7198:15;7236:4;7233:1;7226:15;7090:161;;6877:380;;;:::o;7262:184::-;7332:6;7385:2;7373:9;7364:7;7360:23;7356:32;7353:52;;;7401:1;7398;7391:12;7353:52;-1:-1:-1;7424:16:1;;7262:184;-1:-1:-1;7262:184:1:o;7738:245::-;7805:6;7858:2;7846:9;7837:7;7833:23;7829:32;7826:52;;;7874:1;7871;7864:12;7826:52;7906:9;7900:16;7925:28;7947:5;7925:28;:::i;8399:127::-;8460:10;8455:3;8451:20;8448:1;8441:31;8491:4;8488:1;8481:15;8515:4;8512:1;8505:15;8531:125;8596:9;;;8617:10;;;8614:36;;;8630:18;;:::i;9237:127::-;9298:10;9293:3;9289:20;9286:1;9279:31;9329:4;9326:1;9319:15;9353:4;9350:1;9343:15;9369:128;9436:9;;;9457:11;;;9454:37;;;9471:18;;:::i;9502:127::-;9563:10;9558:3;9554:20;9551:1;9544:31;9594:4;9591:1;9584:15;9618:4;9615:1;9608:15;9634:135;9673:3;9694:17;;;9691:43;;9714:18;;:::i;:::-;-1:-1:-1;9761:1:1;9750:13;;9634:135::o;10468:422::-;10557:1;10600:5;10557:1;10614:270;10635:7;10625:8;10622:21;10614:270;;;10694:4;10690:1;10686:6;10682:17;10676:4;10673:27;10670:53;;;10703:18;;:::i;:::-;10753:7;10743:8;10739:22;10736:55;;;10773:16;;;;10736:55;10852:22;;;;10812:15;;;;10614:270;;;10618:3;10468:422;;;;;:::o;10895:806::-;10944:5;10974:8;10964:80;;-1:-1:-1;11015:1:1;11029:5;;10964:80;11063:4;11053:76;;-1:-1:-1;11100:1:1;11114:5;;11053:76;11145:4;11163:1;11158:59;;;;11231:1;11226:130;;;;11138:218;;11158:59;11188:1;11179:10;;11202:5;;;11226:130;11263:3;11253:8;11250:17;11247:43;;;11270:18;;:::i;:::-;-1:-1:-1;;11326:1:1;11312:16;;11341:5;;11138:218;;11440:2;11430:8;11427:16;11421:3;11415:4;11412:13;11408:36;11402:2;11392:8;11389:16;11384:2;11378:4;11375:12;11371:35;11368:77;11365:159;;;-1:-1:-1;11477:19:1;;;11509:5;;11365:159;11556:34;11581:8;11575:4;11556:34;:::i;:::-;11626:6;11622:1;11618:6;11614:19;11605:7;11602:32;11599:58;;;11637:18;;:::i;:::-;11675:20;;10895:806;-1:-1:-1;;;10895:806:1:o;11706:131::-;11766:5;11795:36;11822:8;11816:4;11795:36;:::i;12936:251::-;13006:6;13059:2;13047:9;13038:7;13034:23;13030:32;13027:52;;;13075:1;13072;13065:12;13027:52;13107:9;13101:16;13126:31;13151:5;13126:31;:::i;15795:168::-;15868:9;;;15899;;15916:15;;;15910:22;;15896:37;15886:71;;15937:18;;:::i;15968:217::-;16008:1;16034;16024:132;;16078:10;16073:3;16069:20;16066:1;16059:31;16113:4;16110:1;16103:15;16141:4;16138:1;16131:15;16024:132;-1:-1:-1;16170:9:1;;15968:217::o;18668:980::-;18930:4;18978:3;18967:9;18963:19;19009:6;18998:9;18991:25;19035:2;19073:6;19068:2;19057:9;19053:18;19046:34;19116:3;19111:2;19100:9;19096:18;19089:31;19140:6;19175;19169:13;19206:6;19198;19191:22;19244:3;19233:9;19229:19;19222:26;;19283:2;19275:6;19271:15;19257:29;;19304:1;19314:195;19328:6;19325:1;19322:13;19314:195;;;19393:13;;-1:-1:-1;;;;;19389:39:1;19377:52;;19484:15;;;;19449:12;;;;19425:1;19343:9;19314:195;;;-1:-1:-1;;;;;;;19565:32:1;;;;19560:2;19545:18;;19538:60;-1:-1:-1;;;19629:3:1;19614:19;19607:35;19526:3;18668:980;-1:-1:-1;;;18668:980:1:o;20265:306::-;20353:6;20361;20369;20422:2;20410:9;20401:7;20397:23;20393:32;20390:52;;;20438:1;20435;20428:12;20390:52;20467:9;20461:16;20451:26;;20517:2;20506:9;20502:18;20496:25;20486:35;;20561:2;20550:9;20546:18;20540:25;20530:35;;20265:306;;;;;:::o

Swarm Source

ipfs://5c869d2436e23a24749c29e31e216ec65f5db11c28da5e8ba3988b2f910e2874

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.