ETH Price: $3,341.08 (-3.58%)
Gas: 2 Gwei

Token

NBA Inu (NBI)
 

Overview

Max Total Supply

1,000,000,000 NBI

Holders

67

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,544,766.008435259181960066 NBI

Value
$0.00
0x5e239c45fa3d81e3753bc5cc07a3a20ac8329428
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
NbaInu

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// linktree: https://linktr.ee/nbainu


// hevm: flattened sources of src/NbaInu.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

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

/* pragma solidity ^0.8.0; */

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

////// src/NbaInu.sol
/* pragma solidity >=0.8.10; */

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("NBA Inu", "NBI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 5;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 9;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 10_000_000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

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

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

        marketingWallet = address(0xe4B8ebED3e3bCdB52F72E00C2F7FDEDa63fab135); // set as marketing wallet
        devWallet = address(0x0f1C86BE16Cb652C43198cc94Db258c79a546080); // set as dev wallet

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

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

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

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526019600d55600e8054600160ff199182168117909255610e10600f556107086011556013805462ffffff1916831790556015805490911690911790553480156200004d57600080fd5b50604051806040016040528060078152602001664e424120496e7560c81b815250604051806040016040528060038152602001624e424960e81b8152508160039080519060200190620000a292919062000708565b508051620000b890600490602084019062000708565b505050620000d5620000cf6200045560201b60201c565b62000459565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f7816001620004ab565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200014c57600080fd5b505afa15801562000161573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001879190620007ae565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001d057600080fd5b505afa158015620001e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020b9190620007ae565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200025457600080fd5b505af115801562000269573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028f9190620007ae565b600780546001600160a01b0319166001600160a01b03929092169182179055620002bb906001620004ab565b600754620002d4906001600160a01b0316600162000525565b6a084595161401484a000000600a556a108b2a2c28029094000000600c55600560016002600982826b033b2e3c9fd0803ce80000006127106200031882896200081e565b620003249190620007fb565b600b5560178790556018869055601985905584620003438789620007e0565b6200034f9190620007e0565b601655601b849055601c839055601d829055816200036e8486620007e0565b6200037a9190620007e0565b601a55600880546001600160a01b031990811673e4b8ebed3e3bcdb52f72e00c2f7fdeda63fab1351790915560098054909116730f1c86be16cb652c43198cc94db258c79a546080179055620003e4620003dc6005546001600160a01b031690565b600162000579565b620003f130600162000579565b6200040061dead600162000579565b6200041f620004176005546001600160a01b031690565b6001620004ab565b6200042c306001620004ab565b6200043b61dead6001620004ab565b62000447338262000623565b505050505050505062000893565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004fa5760405162461bcd60e51b815260206004820181905260248201526000805160206200387083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005c45760405162461bcd60e51b81526020600482018190526024820152600080516020620038708339815191526044820152606401620004f1565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200067b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004f1565b80600260008282546200068f9190620007e0565b90915550506001600160a01b03821660009081526020819052604081208054839290620006be908490620007e0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620007169062000840565b90600052602060002090601f0160209004810192826200073a576000855562000785565b82601f106200075557805160ff191683800117855562000785565b8280016001018555821562000785579182015b828111156200078557825182559160200191906001019062000768565b506200079392915062000797565b5090565b5b8082111562000793576000815560010162000798565b600060208284031215620007c157600080fd5b81516001600160a01b0381168114620007d957600080fd5b9392505050565b60008219821115620007f657620007f66200087d565b500190565b6000826200081957634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156200083b576200083b6200087d565b500290565b600181811c908216806200085557607f821691505b602082108114156200087757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b612fcd80620008a36000396000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610aa2578063f637434214610ac2578063f8b45b0514610ad8578063fe72b27a14610aee57600080fd5b8063dd62ed3e14610a1b578063e2f4560514610a61578063e884f26014610a77578063f11a24d314610a8c57600080fd5b8063c876d0b9116100dc578063c876d0b9146109b5578063c8c8ebe4146109cf578063d257b34f146109e5578063d85ba06314610a0557600080fd5b8063bbc0c74214610936578063c024666814610955578063c17b5b8c14610975578063c18bc1951461099557600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108b0578063a9059cbb146108c6578063aacebbe3146108e6578063b62496f51461090657600080fd5b80639ec22c0e1461084e5780639fccce3214610864578063a0d82dc51461087a578063a457c2d71461089057600080fd5b8063924de9b7116101c1578063924de9b7146107e357806395d89b41146108035780639a7a23d6146108185780639c3b4fdc1461083857600080fd5b80638da5cb5b1461078f5780638ea5220f146107ad57806392136913146107cd57600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146107245780637bce5a04146107445780638095d5641461075a5780638a8c523c1461077a57600080fd5b8063715018a6146106ba578063730c1888146106cf578063751039fc146106ef5780637571336a1461070457600080fd5b80634fbee193116102a65780634fbee193146106155780636a486a8e1461064e5780636ddd17131461066457806370a082311461068457600080fd5b8063313ce5671461059f57806339509351146105bb57806349bd5a5e146105db5780634a62bb65146105fb57600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461053957806327c8f835146105595780632c3e486c1461056f5780632e82f1a01461058557600080fd5b8063199ffc72146104d75780631a8145bb146104ed5780631f3fed8f14610503578063203e727e1461051957600080fd5b80631694505e1161038b5780631694505e1461044857806318160ddd146104805780631816467f1461049f578063184c16c5146104c157600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b0e565b6040516103df9190612d28565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612c20565b610ba0565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004612b37565b60226020526000908152604090205460ff1681565b34801561045457600080fd5b50600654610468906001600160a01b031681565b6040516001600160a01b0390911681526020016103df565b34801561048c57600080fd5b506002545b6040519081526020016103df565b3480156104ab57600080fd5b506104bf6104ba366004612b37565b610bb6565b005b3480156104cd57600080fd5b5061049160115481565b3480156104e357600080fd5b50610491600d5481565b3480156104f957600080fd5b50610491601f5481565b34801561050f57600080fd5b50610491601e5481565b34801561052557600080fd5b506104bf610534366004612c67565b610c46565b34801561054557600080fd5b50610408610554366004612baa565b610d23565b34801561056557600080fd5b5061046861dead81565b34801561057b57600080fd5b50610491600f5481565b34801561059157600080fd5b50600e546104089060ff1681565b3480156105ab57600080fd5b50604051601281526020016103df565b3480156105c757600080fd5b506104086105d6366004612c20565b610dcd565b3480156105e757600080fd5b50600754610468906001600160a01b031681565b34801561060757600080fd5b506013546104089060ff1681565b34801561062157600080fd5b50610408610630366004612b37565b6001600160a01b031660009081526021602052604090205460ff1690565b34801561065a57600080fd5b50610491601a5481565b34801561067057600080fd5b506013546104089062010000900460ff1681565b34801561069057600080fd5b5061049161069f366004612b37565b6001600160a01b031660009081526020819052604090205490565b3480156106c657600080fd5b506104bf610e09565b3480156106db57600080fd5b506104bf6106ea366004612c99565b610e3f565b3480156106fb57600080fd5b50610408610f68565b34801561071057600080fd5b506104bf61071f366004612beb565b610fa5565b34801561073057600080fd5b50600854610468906001600160a01b031681565b34801561075057600080fd5b5061049160175481565b34801561076657600080fd5b506104bf610775366004612cce565b610ffa565b34801561078657600080fd5b506104bf6110a2565b34801561079b57600080fd5b506005546001600160a01b0316610468565b3480156107b957600080fd5b50600954610468906001600160a01b031681565b3480156107d957600080fd5b50610491601b5481565b3480156107ef57600080fd5b506104bf6107fe366004612c4c565b6110e3565b34801561080f57600080fd5b506103d2611129565b34801561082457600080fd5b506104bf610833366004612beb565b611138565b34801561084457600080fd5b5061049160195481565b34801561085a57600080fd5b5061049160125481565b34801561087057600080fd5b5061049160205481565b34801561088657600080fd5b50610491601d5481565b34801561089c57600080fd5b506104086108ab366004612c20565b6111f4565b3480156108bc57600080fd5b5061049160105481565b3480156108d257600080fd5b506104086108e1366004612c20565b61128d565b3480156108f257600080fd5b506104bf610901366004612b37565b61129a565b34801561091257600080fd5b50610408610921366004612b37565b60236020526000908152604090205460ff1681565b34801561094257600080fd5b5060135461040890610100900460ff1681565b34801561096157600080fd5b506104bf610970366004612beb565b611321565b34801561098157600080fd5b506104bf610990366004612cce565b6113aa565b3480156109a157600080fd5b506104bf6109b0366004612c67565b61144d565b3480156109c157600080fd5b506015546104089060ff1681565b3480156109db57600080fd5b50610491600a5481565b3480156109f157600080fd5b50610408610a00366004612c67565b61151e565b348015610a1157600080fd5b5061049160165481565b348015610a2757600080fd5b50610491610a36366004612b71565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a6d57600080fd5b50610491600b5481565b348015610a8357600080fd5b50610408611675565b348015610a9857600080fd5b5061049160185481565b348015610aae57600080fd5b506104bf610abd366004612b37565b6116b2565b348015610ace57600080fd5b50610491601c5481565b348015610ae457600080fd5b50610491600c5481565b348015610afa57600080fd5b50610408610b09366004612c67565b61174d565b606060038054610b1d90612f1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4990612f1b565b8015610b965780601f10610b6b57610100808354040283529160200191610b96565b820191906000526020600020905b815481529060010190602001808311610b7957829003601f168201915b5050505050905090565b6000610bad338484611990565b50600192915050565b6005546001600160a01b03163314610be95760405162461bcd60e51b8152600401610be090612dc0565b60405180910390fd5b6009546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c705760405162461bcd60e51b8152600401610be090612dc0565b670de0b6b3a76400006103e8610c8560025490565b610c90906001612ee5565b610c9a9190612ec3565b610ca49190612ec3565b811015610d0b5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610be0565b610d1d81670de0b6b3a7640000612ee5565b600a5550565b6000610d30848484611ab4565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610db55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610be0565b610dc28533858403611990565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bad918590610e04908690612eab565b611990565b6005546001600160a01b03163314610e335760405162461bcd60e51b8152600401610be090612dc0565b610e3d6000612344565b565b6005546001600160a01b03163314610e695760405162461bcd60e51b8152600401610be090612dc0565b610258831015610ed75760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610be0565b6103e88211158015610ee7575060015b610f4c5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610be0565b600f92909255600d55600e805460ff1916911515919091179055565b6005546000906001600160a01b03163314610f955760405162461bcd60e51b8152600401610be090612dc0565b506013805460ff19169055600190565b6005546001600160a01b03163314610fcf5760405162461bcd60e51b8152600401610be090612dc0565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110245760405162461bcd60e51b8152600401610be090612dc0565b6017839055601882905560198190558061103e8385612eab565b6110489190612eab565b60168190556014101561109d5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610be0565b505050565b6005546001600160a01b031633146110cc5760405162461bcd60e51b8152600401610be090612dc0565b6013805462ffff0019166201010017905542601055565b6005546001600160a01b0316331461110d5760405162461bcd60e51b8152600401610be090612dc0565b60138054911515620100000262ff000019909216919091179055565b606060048054610b1d90612f1b565b6005546001600160a01b031633146111625760405162461bcd60e51b8152600401610be090612dc0565b6007546001600160a01b03838116911614156111e65760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610be0565b6111f08282612396565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112765760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610be0565b6112833385858403611990565b5060019392505050565b6000610bad338484611ab4565b6005546001600160a01b031633146112c45760405162461bcd60e51b8152600401610be090612dc0565b6008546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461134b5760405162461bcd60e51b8152600401610be090612dc0565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113d45760405162461bcd60e51b8152600401610be090612dc0565b601b839055601c829055601d819055806113ee8385612eab565b6113f89190612eab565b601a8190556019101561109d5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610be0565b6005546001600160a01b031633146114775760405162461bcd60e51b8152600401610be090612dc0565b670de0b6b3a76400006103e861148c60025490565b611497906005612ee5565b6114a19190612ec3565b6114ab9190612ec3565b8110156115065760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610be0565b61151881670de0b6b3a7640000612ee5565b600c5550565b6005546000906001600160a01b0316331461154b5760405162461bcd60e51b8152600401610be090612dc0565b620186a061155860025490565b611563906001612ee5565b61156d9190612ec3565b8210156115da5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610be0565b6103e86115e660025490565b6115f1906005612ee5565b6115fb9190612ec3565b8211156116675760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610be0565b50600b81905560015b919050565b6005546000906001600160a01b031633146116a25760405162461bcd60e51b8152600401610be090612dc0565b506015805460ff19169055600190565b6005546001600160a01b031633146116dc5760405162461bcd60e51b8152600401610be090612dc0565b6001600160a01b0381166117415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610be0565b61174a81612344565b50565b6005546000906001600160a01b0316331461177a5760405162461bcd60e51b8152600401610be090612dc0565b60115460125461178a9190612eab565b42116117d85760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610be0565b6103e882111561183d5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610be0565b426012556007546040516370a0823160e01b81526001600160a01b03909116600482015260009030906370a082319060240160206040518083038186803b15801561188757600080fd5b505afa15801561189b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118bf9190612c80565b905060006118d96127106118d384876123ea565b906123fd565b905080156118fa576007546118fa906001600160a01b031661dead83612409565b6007546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561194457600080fd5b505af1158015611958573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119f25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610be0565b6001600160a01b038216611a535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610be0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611ada5760405162461bcd60e51b8152600401610be090612df5565b6001600160a01b038216611b005760405162461bcd60e51b8152600401610be090612d7d565b80611b115761109d83836000612409565b60135460ff1615611f86576005546001600160a01b03848116911614801590611b4857506005546001600160a01b03838116911614155b8015611b5c57506001600160a01b03821615155b8015611b7357506001600160a01b03821661dead14155b8015611b895750600754600160a01b900460ff16155b15611f8657601354610100900460ff16611c21576001600160a01b03831660009081526021602052604090205460ff1680611bdc57506001600160a01b03821660009081526021602052604090205460ff165b611c215760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610be0565b60155460ff1615611d20576005546001600160a01b03838116911614801590611c5857506006546001600160a01b03838116911614155b8015611c7257506007546001600160a01b03838116911614155b15611d2057326000908152601460205260409020544311611d0d5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610be0565b3260009081526014602052604090204390555b6001600160a01b03831660009081526023602052604090205460ff168015611d6157506001600160a01b03821660009081526022602052604090205460ff16155b15611e4557600a54811115611dd65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610be0565b600c546001600160a01b038316600090815260208190526040902054611dfc9083612eab565b1115611e405760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610be0565b611f86565b6001600160a01b03821660009081526023602052604090205460ff168015611e8657506001600160a01b03831660009081526022602052604090205460ff16155b15611efc57600a54811115611e405760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610be0565b6001600160a01b03821660009081526022602052604090205460ff16611f8657600c546001600160a01b038316600090815260208190526040902054611f429083612eab565b1115611f865760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610be0565b30600090815260208190526040902054600b5481108015908190611fb2575060135462010000900460ff165b8015611fc85750600754600160a01b900460ff16155b8015611fed57506001600160a01b03851660009081526023602052604090205460ff16155b801561201257506001600160a01b03851660009081526021602052604090205460ff16155b801561203757506001600160a01b03841660009081526021602052604090205460ff16155b15612065576007805460ff60a01b1916600160a01b17905561205761255e565b6007805460ff60a01b191690555b600754600160a01b900460ff1615801561209757506001600160a01b03841660009081526023602052604090205460ff165b80156120a55750600e5460ff165b80156120c05750600f546010546120bc9190612eab565b4210155b80156120e557506001600160a01b03851660009081526021602052604090205460ff16155b156120f4576120f2612798565b505b6007546001600160a01b03861660009081526021602052604090205460ff600160a01b90920482161591168061214257506001600160a01b03851660009081526021602052604090205460ff165b1561214b575060005b60008115612330576001600160a01b03861660009081526023602052604090205460ff16801561217d57506000601a54115b156122355761219c60646118d3601a54886123ea90919063ffffffff16565b9050601a54601c54826121af9190612ee5565b6121b99190612ec3565b601f60008282546121ca9190612eab565b9091555050601a54601d546121df9083612ee5565b6121e99190612ec3565b602060008282546121fa9190612eab565b9091555050601a54601b5461220f9083612ee5565b6122199190612ec3565b601e600082825461222a9190612eab565b909155506123129050565b6001600160a01b03871660009081526023602052604090205460ff16801561225f57506000601654115b156123125761227e60646118d3601654886123ea90919063ffffffff16565b9050601654601854826122919190612ee5565b61229b9190612ec3565b601f60008282546122ac9190612eab565b90915550506016546019546122c19083612ee5565b6122cb9190612ec3565b602060008282546122dc9190612eab565b90915550506016546017546122f19083612ee5565b6122fb9190612ec3565b601e600082825461230c9190612eab565b90915550505b801561232357612323873083612409565b61232d8186612f04565b94505b61233b878787612409565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006123f68284612ee5565b9392505050565b60006123f68284612ec3565b6001600160a01b03831661242f5760405162461bcd60e51b8152600401610be090612df5565b6001600160a01b0382166124555760405162461bcd60e51b8152600401610be090612d7d565b6001600160a01b038316600090815260208190526040902054818110156124cd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610be0565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612504908490612eab565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161255091815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000602054601e54601f546125859190612eab565b61258f9190612eab565b9050600082158061259e575081155b156125a857505050565b600b546125b6906014612ee5565b8311156125ce57600b546125cb906014612ee5565b92505b6000600283601f54866125e19190612ee5565b6125eb9190612ec3565b6125f59190612ec3565b9050600061260385836128f1565b90504761260f826128fd565b600061261b47836128f1565b90506000612638876118d3601e54856123ea90919063ffffffff16565b90506000612655886118d3602054866123ea90919063ffffffff16565b90506000816126648486612f04565b61266e9190612f04565b6000601f819055601e81905560208190556009546040519293506001600160a01b031691849181818185875af1925050503d80600081146126cb576040519150601f19603f3d011682016040523d82523d6000602084013e6126d0565b606091505b509098505086158015906126e45750600081115b15612737576126f38782612a66565b601f54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612784576040519150601f19603f3d011682016040523d82523d6000602084013e612789565b606091505b50505050505050505050505050565b426010556007546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a082319060240160206040518083038186803b1580156127e457600080fd5b505afa1580156127f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061281c9190612c80565b9050600061283b6127106118d3600d54856123ea90919063ffffffff16565b9050801561285c5760075461285c906001600160a01b031661dead83612409565b6007546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b1580156128a657600080fd5b505af11580156128ba573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006123f68284612f04565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061293257612932612f6c565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561298657600080fd5b505afa15801561299a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129be9190612b54565b816001815181106129d1576129d1612f6c565b6001600160a01b0392831660209182029290920101526006546129f79130911684611990565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612a30908590600090869030904290600401612e3a565b600060405180830381600087803b158015612a4a57600080fd5b505af1158015612a5e573d6000803e3d6000fd5b505050505050565b600654612a7e9030906001600160a01b031684611990565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015612ae757600080fd5b505af1158015612afb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b209190612cfa565b5050505050565b8035801515811461167057600080fd5b600060208284031215612b4957600080fd5b81356123f681612f82565b600060208284031215612b6657600080fd5b81516123f681612f82565b60008060408385031215612b8457600080fd5b8235612b8f81612f82565b91506020830135612b9f81612f82565b809150509250929050565b600080600060608486031215612bbf57600080fd5b8335612bca81612f82565b92506020840135612bda81612f82565b929592945050506040919091013590565b60008060408385031215612bfe57600080fd5b8235612c0981612f82565b9150612c1760208401612b27565b90509250929050565b60008060408385031215612c3357600080fd5b8235612c3e81612f82565b946020939093013593505050565b600060208284031215612c5e57600080fd5b6123f682612b27565b600060208284031215612c7957600080fd5b5035919050565b600060208284031215612c9257600080fd5b5051919050565b600080600060608486031215612cae57600080fd5b8335925060208401359150612cc560408501612b27565b90509250925092565b600080600060608486031215612ce357600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612d0f57600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612d5557858101830151858201604001528201612d39565b81811115612d67576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e8a5784516001600160a01b031683529383019391830191600101612e65565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612ebe57612ebe612f56565b500190565b600082612ee057634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612eff57612eff612f56565b500290565b600082821015612f1657612f16612f56565b500390565b600181811c90821680612f2f57607f821691505b60208210811415612f5057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461174a57600080fdfea2646970667358221220c26866a231efa5061481250340fa94cc614c48090aa45a486c24c700c96684c764736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610aa2578063f637434214610ac2578063f8b45b0514610ad8578063fe72b27a14610aee57600080fd5b8063dd62ed3e14610a1b578063e2f4560514610a61578063e884f26014610a77578063f11a24d314610a8c57600080fd5b8063c876d0b9116100dc578063c876d0b9146109b5578063c8c8ebe4146109cf578063d257b34f146109e5578063d85ba06314610a0557600080fd5b8063bbc0c74214610936578063c024666814610955578063c17b5b8c14610975578063c18bc1951461099557600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108b0578063a9059cbb146108c6578063aacebbe3146108e6578063b62496f51461090657600080fd5b80639ec22c0e1461084e5780639fccce3214610864578063a0d82dc51461087a578063a457c2d71461089057600080fd5b8063924de9b7116101c1578063924de9b7146107e357806395d89b41146108035780639a7a23d6146108185780639c3b4fdc1461083857600080fd5b80638da5cb5b1461078f5780638ea5220f146107ad57806392136913146107cd57600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146107245780637bce5a04146107445780638095d5641461075a5780638a8c523c1461077a57600080fd5b8063715018a6146106ba578063730c1888146106cf578063751039fc146106ef5780637571336a1461070457600080fd5b80634fbee193116102a65780634fbee193146106155780636a486a8e1461064e5780636ddd17131461066457806370a082311461068457600080fd5b8063313ce5671461059f57806339509351146105bb57806349bd5a5e146105db5780634a62bb65146105fb57600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461053957806327c8f835146105595780632c3e486c1461056f5780632e82f1a01461058557600080fd5b8063199ffc72146104d75780631a8145bb146104ed5780631f3fed8f14610503578063203e727e1461051957600080fd5b80631694505e1161038b5780631694505e1461044857806318160ddd146104805780631816467f1461049f578063184c16c5146104c157600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b0e565b6040516103df9190612d28565b60405180910390f35b3480156103f457600080fd5b50610408610403366004612c20565b610ba0565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004612b37565b60226020526000908152604090205460ff1681565b34801561045457600080fd5b50600654610468906001600160a01b031681565b6040516001600160a01b0390911681526020016103df565b34801561048c57600080fd5b506002545b6040519081526020016103df565b3480156104ab57600080fd5b506104bf6104ba366004612b37565b610bb6565b005b3480156104cd57600080fd5b5061049160115481565b3480156104e357600080fd5b50610491600d5481565b3480156104f957600080fd5b50610491601f5481565b34801561050f57600080fd5b50610491601e5481565b34801561052557600080fd5b506104bf610534366004612c67565b610c46565b34801561054557600080fd5b50610408610554366004612baa565b610d23565b34801561056557600080fd5b5061046861dead81565b34801561057b57600080fd5b50610491600f5481565b34801561059157600080fd5b50600e546104089060ff1681565b3480156105ab57600080fd5b50604051601281526020016103df565b3480156105c757600080fd5b506104086105d6366004612c20565b610dcd565b3480156105e757600080fd5b50600754610468906001600160a01b031681565b34801561060757600080fd5b506013546104089060ff1681565b34801561062157600080fd5b50610408610630366004612b37565b6001600160a01b031660009081526021602052604090205460ff1690565b34801561065a57600080fd5b50610491601a5481565b34801561067057600080fd5b506013546104089062010000900460ff1681565b34801561069057600080fd5b5061049161069f366004612b37565b6001600160a01b031660009081526020819052604090205490565b3480156106c657600080fd5b506104bf610e09565b3480156106db57600080fd5b506104bf6106ea366004612c99565b610e3f565b3480156106fb57600080fd5b50610408610f68565b34801561071057600080fd5b506104bf61071f366004612beb565b610fa5565b34801561073057600080fd5b50600854610468906001600160a01b031681565b34801561075057600080fd5b5061049160175481565b34801561076657600080fd5b506104bf610775366004612cce565b610ffa565b34801561078657600080fd5b506104bf6110a2565b34801561079b57600080fd5b506005546001600160a01b0316610468565b3480156107b957600080fd5b50600954610468906001600160a01b031681565b3480156107d957600080fd5b50610491601b5481565b3480156107ef57600080fd5b506104bf6107fe366004612c4c565b6110e3565b34801561080f57600080fd5b506103d2611129565b34801561082457600080fd5b506104bf610833366004612beb565b611138565b34801561084457600080fd5b5061049160195481565b34801561085a57600080fd5b5061049160125481565b34801561087057600080fd5b5061049160205481565b34801561088657600080fd5b50610491601d5481565b34801561089c57600080fd5b506104086108ab366004612c20565b6111f4565b3480156108bc57600080fd5b5061049160105481565b3480156108d257600080fd5b506104086108e1366004612c20565b61128d565b3480156108f257600080fd5b506104bf610901366004612b37565b61129a565b34801561091257600080fd5b50610408610921366004612b37565b60236020526000908152604090205460ff1681565b34801561094257600080fd5b5060135461040890610100900460ff1681565b34801561096157600080fd5b506104bf610970366004612beb565b611321565b34801561098157600080fd5b506104bf610990366004612cce565b6113aa565b3480156109a157600080fd5b506104bf6109b0366004612c67565b61144d565b3480156109c157600080fd5b506015546104089060ff1681565b3480156109db57600080fd5b50610491600a5481565b3480156109f157600080fd5b50610408610a00366004612c67565b61151e565b348015610a1157600080fd5b5061049160165481565b348015610a2757600080fd5b50610491610a36366004612b71565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a6d57600080fd5b50610491600b5481565b348015610a8357600080fd5b50610408611675565b348015610a9857600080fd5b5061049160185481565b348015610aae57600080fd5b506104bf610abd366004612b37565b6116b2565b348015610ace57600080fd5b50610491601c5481565b348015610ae457600080fd5b50610491600c5481565b348015610afa57600080fd5b50610408610b09366004612c67565b61174d565b606060038054610b1d90612f1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4990612f1b565b8015610b965780601f10610b6b57610100808354040283529160200191610b96565b820191906000526020600020905b815481529060010190602001808311610b7957829003601f168201915b5050505050905090565b6000610bad338484611990565b50600192915050565b6005546001600160a01b03163314610be95760405162461bcd60e51b8152600401610be090612dc0565b60405180910390fd5b6009546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c705760405162461bcd60e51b8152600401610be090612dc0565b670de0b6b3a76400006103e8610c8560025490565b610c90906001612ee5565b610c9a9190612ec3565b610ca49190612ec3565b811015610d0b5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610be0565b610d1d81670de0b6b3a7640000612ee5565b600a5550565b6000610d30848484611ab4565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610db55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610be0565b610dc28533858403611990565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bad918590610e04908690612eab565b611990565b6005546001600160a01b03163314610e335760405162461bcd60e51b8152600401610be090612dc0565b610e3d6000612344565b565b6005546001600160a01b03163314610e695760405162461bcd60e51b8152600401610be090612dc0565b610258831015610ed75760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610be0565b6103e88211158015610ee7575060015b610f4c5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610be0565b600f92909255600d55600e805460ff1916911515919091179055565b6005546000906001600160a01b03163314610f955760405162461bcd60e51b8152600401610be090612dc0565b506013805460ff19169055600190565b6005546001600160a01b03163314610fcf5760405162461bcd60e51b8152600401610be090612dc0565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110245760405162461bcd60e51b8152600401610be090612dc0565b6017839055601882905560198190558061103e8385612eab565b6110489190612eab565b60168190556014101561109d5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610be0565b505050565b6005546001600160a01b031633146110cc5760405162461bcd60e51b8152600401610be090612dc0565b6013805462ffff0019166201010017905542601055565b6005546001600160a01b0316331461110d5760405162461bcd60e51b8152600401610be090612dc0565b60138054911515620100000262ff000019909216919091179055565b606060048054610b1d90612f1b565b6005546001600160a01b031633146111625760405162461bcd60e51b8152600401610be090612dc0565b6007546001600160a01b03838116911614156111e65760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610be0565b6111f08282612396565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112765760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610be0565b6112833385858403611990565b5060019392505050565b6000610bad338484611ab4565b6005546001600160a01b031633146112c45760405162461bcd60e51b8152600401610be090612dc0565b6008546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461134b5760405162461bcd60e51b8152600401610be090612dc0565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113d45760405162461bcd60e51b8152600401610be090612dc0565b601b839055601c829055601d819055806113ee8385612eab565b6113f89190612eab565b601a8190556019101561109d5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610be0565b6005546001600160a01b031633146114775760405162461bcd60e51b8152600401610be090612dc0565b670de0b6b3a76400006103e861148c60025490565b611497906005612ee5565b6114a19190612ec3565b6114ab9190612ec3565b8110156115065760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610be0565b61151881670de0b6b3a7640000612ee5565b600c5550565b6005546000906001600160a01b0316331461154b5760405162461bcd60e51b8152600401610be090612dc0565b620186a061155860025490565b611563906001612ee5565b61156d9190612ec3565b8210156115da5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610be0565b6103e86115e660025490565b6115f1906005612ee5565b6115fb9190612ec3565b8211156116675760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610be0565b50600b81905560015b919050565b6005546000906001600160a01b031633146116a25760405162461bcd60e51b8152600401610be090612dc0565b506015805460ff19169055600190565b6005546001600160a01b031633146116dc5760405162461bcd60e51b8152600401610be090612dc0565b6001600160a01b0381166117415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610be0565b61174a81612344565b50565b6005546000906001600160a01b0316331461177a5760405162461bcd60e51b8152600401610be090612dc0565b60115460125461178a9190612eab565b42116117d85760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610be0565b6103e882111561183d5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610be0565b426012556007546040516370a0823160e01b81526001600160a01b03909116600482015260009030906370a082319060240160206040518083038186803b15801561188757600080fd5b505afa15801561189b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118bf9190612c80565b905060006118d96127106118d384876123ea565b906123fd565b905080156118fa576007546118fa906001600160a01b031661dead83612409565b6007546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561194457600080fd5b505af1158015611958573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166119f25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610be0565b6001600160a01b038216611a535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610be0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611ada5760405162461bcd60e51b8152600401610be090612df5565b6001600160a01b038216611b005760405162461bcd60e51b8152600401610be090612d7d565b80611b115761109d83836000612409565b60135460ff1615611f86576005546001600160a01b03848116911614801590611b4857506005546001600160a01b03838116911614155b8015611b5c57506001600160a01b03821615155b8015611b7357506001600160a01b03821661dead14155b8015611b895750600754600160a01b900460ff16155b15611f8657601354610100900460ff16611c21576001600160a01b03831660009081526021602052604090205460ff1680611bdc57506001600160a01b03821660009081526021602052604090205460ff165b611c215760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610be0565b60155460ff1615611d20576005546001600160a01b03838116911614801590611c5857506006546001600160a01b03838116911614155b8015611c7257506007546001600160a01b03838116911614155b15611d2057326000908152601460205260409020544311611d0d5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610be0565b3260009081526014602052604090204390555b6001600160a01b03831660009081526023602052604090205460ff168015611d6157506001600160a01b03821660009081526022602052604090205460ff16155b15611e4557600a54811115611dd65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610be0565b600c546001600160a01b038316600090815260208190526040902054611dfc9083612eab565b1115611e405760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610be0565b611f86565b6001600160a01b03821660009081526023602052604090205460ff168015611e8657506001600160a01b03831660009081526022602052604090205460ff16155b15611efc57600a54811115611e405760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610be0565b6001600160a01b03821660009081526022602052604090205460ff16611f8657600c546001600160a01b038316600090815260208190526040902054611f429083612eab565b1115611f865760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610be0565b30600090815260208190526040902054600b5481108015908190611fb2575060135462010000900460ff165b8015611fc85750600754600160a01b900460ff16155b8015611fed57506001600160a01b03851660009081526023602052604090205460ff16155b801561201257506001600160a01b03851660009081526021602052604090205460ff16155b801561203757506001600160a01b03841660009081526021602052604090205460ff16155b15612065576007805460ff60a01b1916600160a01b17905561205761255e565b6007805460ff60a01b191690555b600754600160a01b900460ff1615801561209757506001600160a01b03841660009081526023602052604090205460ff165b80156120a55750600e5460ff165b80156120c05750600f546010546120bc9190612eab565b4210155b80156120e557506001600160a01b03851660009081526021602052604090205460ff16155b156120f4576120f2612798565b505b6007546001600160a01b03861660009081526021602052604090205460ff600160a01b90920482161591168061214257506001600160a01b03851660009081526021602052604090205460ff165b1561214b575060005b60008115612330576001600160a01b03861660009081526023602052604090205460ff16801561217d57506000601a54115b156122355761219c60646118d3601a54886123ea90919063ffffffff16565b9050601a54601c54826121af9190612ee5565b6121b99190612ec3565b601f60008282546121ca9190612eab565b9091555050601a54601d546121df9083612ee5565b6121e99190612ec3565b602060008282546121fa9190612eab565b9091555050601a54601b5461220f9083612ee5565b6122199190612ec3565b601e600082825461222a9190612eab565b909155506123129050565b6001600160a01b03871660009081526023602052604090205460ff16801561225f57506000601654115b156123125761227e60646118d3601654886123ea90919063ffffffff16565b9050601654601854826122919190612ee5565b61229b9190612ec3565b601f60008282546122ac9190612eab565b90915550506016546019546122c19083612ee5565b6122cb9190612ec3565b602060008282546122dc9190612eab565b90915550506016546017546122f19083612ee5565b6122fb9190612ec3565b601e600082825461230c9190612eab565b90915550505b801561232357612323873083612409565b61232d8186612f04565b94505b61233b878787612409565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006123f68284612ee5565b9392505050565b60006123f68284612ec3565b6001600160a01b03831661242f5760405162461bcd60e51b8152600401610be090612df5565b6001600160a01b0382166124555760405162461bcd60e51b8152600401610be090612d7d565b6001600160a01b038316600090815260208190526040902054818110156124cd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610be0565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612504908490612eab565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161255091815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000602054601e54601f546125859190612eab565b61258f9190612eab565b9050600082158061259e575081155b156125a857505050565b600b546125b6906014612ee5565b8311156125ce57600b546125cb906014612ee5565b92505b6000600283601f54866125e19190612ee5565b6125eb9190612ec3565b6125f59190612ec3565b9050600061260385836128f1565b90504761260f826128fd565b600061261b47836128f1565b90506000612638876118d3601e54856123ea90919063ffffffff16565b90506000612655886118d3602054866123ea90919063ffffffff16565b90506000816126648486612f04565b61266e9190612f04565b6000601f819055601e81905560208190556009546040519293506001600160a01b031691849181818185875af1925050503d80600081146126cb576040519150601f19603f3d011682016040523d82523d6000602084013e6126d0565b606091505b509098505086158015906126e45750600081115b15612737576126f38782612a66565b601f54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612784576040519150601f19603f3d011682016040523d82523d6000602084013e612789565b606091505b50505050505050505050505050565b426010556007546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a082319060240160206040518083038186803b1580156127e457600080fd5b505afa1580156127f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061281c9190612c80565b9050600061283b6127106118d3600d54856123ea90919063ffffffff16565b9050801561285c5760075461285c906001600160a01b031661dead83612409565b6007546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b1580156128a657600080fd5b505af11580156128ba573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006123f68284612f04565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061293257612932612f6c565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561298657600080fd5b505afa15801561299a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129be9190612b54565b816001815181106129d1576129d1612f6c565b6001600160a01b0392831660209182029290920101526006546129f79130911684611990565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612a30908590600090869030904290600401612e3a565b600060405180830381600087803b158015612a4a57600080fd5b505af1158015612a5e573d6000803e3d6000fd5b505050505050565b600654612a7e9030906001600160a01b031684611990565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015612ae757600080fd5b505af1158015612afb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b209190612cfa565b5050505050565b8035801515811461167057600080fd5b600060208284031215612b4957600080fd5b81356123f681612f82565b600060208284031215612b6657600080fd5b81516123f681612f82565b60008060408385031215612b8457600080fd5b8235612b8f81612f82565b91506020830135612b9f81612f82565b809150509250929050565b600080600060608486031215612bbf57600080fd5b8335612bca81612f82565b92506020840135612bda81612f82565b929592945050506040919091013590565b60008060408385031215612bfe57600080fd5b8235612c0981612f82565b9150612c1760208401612b27565b90509250929050565b60008060408385031215612c3357600080fd5b8235612c3e81612f82565b946020939093013593505050565b600060208284031215612c5e57600080fd5b6123f682612b27565b600060208284031215612c7957600080fd5b5035919050565b600060208284031215612c9257600080fd5b5051919050565b600080600060608486031215612cae57600080fd5b8335925060208401359150612cc560408501612b27565b90509250925092565b600080600060608486031215612ce357600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612d0f57600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612d5557858101830151858201604001528201612d39565b81811115612d67576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e8a5784516001600160a01b031683529383019391830191600101612e65565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612ebe57612ebe612f56565b500190565b600082612ee057634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612eff57612eff612f56565b500290565b600082821015612f1657612f16612f56565b500390565b600181811c90821680612f2f57607f821691505b60208210811415612f5057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461174a57600080fdfea2646970667358221220c26866a231efa5061481250340fa94cc614c48090aa45a486c24c700c96684c764736f6c63430008070033

Deployed Bytecode Sourcemap

32814:19419:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9619:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11786:169;;;;;;;;;;-1:-1:-1;11786:169:0;;;;;:::i;:::-;;:::i;:::-;;;4888:14:1;;4881:22;4863:41;;4851:2;4836:18;11786:169:0;4723:187:1;34421:63:0;;;;;;;;;;-1:-1:-1;34421:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32890:41;;;;;;;;;;-1:-1:-1;32890:41:0;;;;-1:-1:-1;;;;;32890:41:0;;;;;;-1:-1:-1;;;;;4067:32:1;;;4049:51;;4037:2;4022:18;32890:41:0;3903:203:1;10739:108:0;;;;;;;;;;-1:-1:-1;10827:12:0;;10739:108;;;15947:25:1;;;15935:2;15920:18;10739:108:0;15801:177:1;41561:157:0;;;;;;;;;;-1:-1:-1;41561:157:0;;;;;:::i;:::-;;:::i;:::-;;33435:47;;;;;;;;;;;;;;;;33250:36;;;;;;;;;;;;;;;;34205:33;;;;;;;;;;;;;;;;34165;;;;;;;;;;;;;;;;38875:275;;;;;;;;;;-1:-1:-1;38875:275:0;;;;;:::i;:::-;;:::i;12437:492::-;;;;;;;;;;-1:-1:-1;12437:492:0;;;;;:::i;:::-;;:::i;32973:53::-;;;;;;;;;;;;33019:6;32973:53;;33345:45;;;;;;;;;;;;;;;;33306:32;;;;;;;;;;-1:-1:-1;33306:32:0;;;;;;;;10581:93;;;;;;;;;;-1:-1:-1;10581:93:0;;10664:2;17434:36:1;;17422:2;17407:18;10581:93:0;17292:184:1;13338:215:0;;;;;;;;;;-1:-1:-1;13338:215:0;;;;;:::i;:::-;;:::i;32938:28::-;;;;;;;;;;-1:-1:-1;32938:28:0;;;;-1:-1:-1;;;;;32938:28:0;;;33533:33;;;;;;;;;;-1:-1:-1;33533:33:0;;;;;;;;41726:126;;;;;;;;;;-1:-1:-1;41726:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41816:28:0;41792:4;41816:28;;;:19;:28;;;;;;;;;41726:126;34020:28;;;;;;;;;;;;;;;;33613:31;;;;;;;;;;-1:-1:-1;33613:31:0;;;;;;;;;;;10910:127;;;;;;;;;;-1:-1:-1;10910:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11011:18:0;10984:7;11011:18;;;;;;;;;;;;10910:127;2854:103;;;;;;;;;;;;;:::i;49815:555::-;;;;;;;;;;-1:-1:-1;49815:555:0;;;;;:::i;:::-;;:::i;37983:121::-;;;;;;;;;;;;;:::i;39422:167::-;;;;;;;;;;-1:-1:-1;39422:167:0;;;;;:::i;:::-;;:::i;33065:30::-;;;;;;;;;;-1:-1:-1;33065:30:0;;;;-1:-1:-1;;;;;33065:30:0;;;33913;;;;;;;;;;;;;;;;39793:403;;;;;;;;;;-1:-1:-1;39793:403:0;;;;;:::i;:::-;;:::i;37776:155::-;;;;;;;;;;;;;:::i;2203:87::-;;;;;;;;;;-1:-1:-1;2276:6:0;;-1:-1:-1;;;;;2276:6:0;2203:87;;33102:24;;;;;;;;;;-1:-1:-1;33102:24:0;;;;-1:-1:-1;;;;;33102:24:0;;;34055:31;;;;;;;;;;;;;;;;39685:100;;;;;;;;;;-1:-1:-1;39685:100:0;;;;;:::i;:::-;;:::i;9838:104::-;;;;;;;;;;;;;:::i;40814:304::-;;;;;;;;;;-1:-1:-1;40814:304:0;;;;;:::i;:::-;;:::i;33987:24::-;;;;;;;;;;;;;;;;33489:35;;;;;;;;;;;;;;;;34245:27;;;;;;;;;;;;;;;;34131:25;;;;;;;;;;;;;;;;14056:413;;;;;;;;;;-1:-1:-1;14056:413:0;;;;;:::i;:::-;;:::i;33397:29::-;;;;;;;;;;;;;;;;11250:175;;;;;;;;;;-1:-1:-1;11250:175:0;;;;;:::i;:::-;;:::i;41322:231::-;;;;;;;;;;-1:-1:-1;41322:231:0;;;;;:::i;:::-;;:::i;34642:57::-;;;;;;;;;;-1:-1:-1;34642:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33573:33;;;;;;;;;;-1:-1:-1;33573:33:0;;;;;;;;;;;40624:182;;;;;;;;;;-1:-1:-1;40624:182:0;;;;;:::i;:::-;;:::i;40204:412::-;;;;;;;;;;-1:-1:-1;40204:412:0;;;;;:::i;:::-;;:::i;39158:256::-;;;;;;;;;;-1:-1:-1;39158:256:0;;;;;:::i;:::-;;:::i;33831:39::-;;;;;;;;;;-1:-1:-1;33831:39:0;;;;;;;;33135:35;;;;;;;;;;;;;;;;38370:497;;;;;;;;;;-1:-1:-1;38370:497:0;;;;;:::i;:::-;;:::i;33879:27::-;;;;;;;;;;;;;;;;11488:151;;;;;;;;;;-1:-1:-1;11488:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11604:18:0;;;11577:7;11604:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11488:151;33177:33;;;;;;;;;;;;;;;;38165:135;;;;;;;;;;;;;:::i;33950:30::-;;;;;;;;;;;;;;;;3112:201;;;;;;;;;;-1:-1:-1;3112:201:0;;;;;:::i;:::-;;:::i;34093:31::-;;;;;;;;;;;;;;;;33217:24;;;;;;;;;;;;;;;;51174:1056;;;;;;;;;;-1:-1:-1;51174:1056:0;;;;;:::i;:::-;;:::i;9619:100::-;9673:13;9706:5;9699:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9619:100;:::o;11786:169::-;11869:4;11886:39;956:10;11909:7;11918:6;11886:8;:39::i;:::-;-1:-1:-1;11943:4:0;11786:169;;;;:::o;41561:157::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;;;;;;;;;41668:9:::1;::::0;41640:38:::1;::::0;-1:-1:-1;;;;;41668:9:0;;::::1;::::0;41640:38;::::1;::::0;::::1;::::0;41668:9:::1;::::0;41640:38:::1;41689:9;:21:::0;;-1:-1:-1;;;;;;41689:21:0::1;-1:-1:-1::0;;;;;41689:21:0;;;::::1;::::0;;;::::1;::::0;;41561:157::o;38875:275::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;39012:4:::1;39004;38983:13;10827:12:::0;;;10739:108;38983:13:::1;:17;::::0;38999:1:::1;38983:17;:::i;:::-;38982:26;;;;:::i;:::-;38981:35;;;;:::i;:::-;38971:6;:45;;38949:142;;;::::0;-1:-1:-1;;;38949:142:0;;15587:2:1;38949:142:0::1;::::0;::::1;15569:21:1::0;15626:2;15606:18;;;15599:30;15665:34;15645:18;;;15638:62;-1:-1:-1;;;15716:18:1;;;15709:45;15771:19;;38949:142:0::1;15385:411:1::0;38949:142:0::1;39125:17;:6:::0;39135::::1;39125:17;:::i;:::-;39102:20;:40:::0;-1:-1:-1;38875:275:0:o;12437:492::-;12577:4;12594:36;12604:6;12612:9;12623:6;12594:9;:36::i;:::-;-1:-1:-1;;;;;12670:19:0;;12643:24;12670:19;;;:11;:19;;;;;;;;956:10;12670:33;;;;;;;;12722:26;;;;12714:79;;;;-1:-1:-1;;;12714:79:0;;12122:2:1;12714:79:0;;;12104:21:1;12161:2;12141:18;;;12134:30;12200:34;12180:18;;;12173:62;-1:-1:-1;;;12251:18:1;;;12244:38;12299:19;;12714:79:0;11920:404:1;12714:79:0;12829:57;12838:6;956:10;12879:6;12860:16;:25;12829:8;:57::i;:::-;-1:-1:-1;12917:4:0;;12437:492;-1:-1:-1;;;;12437:492:0:o;13338:215::-;956:10;13426:4;13475:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13475:34:0;;;;;;;;;;13426:4;;13443:80;;13466:7;;13475:47;;13512:10;;13475:47;:::i;:::-;13443:8;:80::i;2854:103::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;2919:30:::1;2946:1;2919:18;:30::i;:::-;2854:103::o:0;49815:555::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;50017:3:::1;49994:19;:26;;49972:127;;;::::0;-1:-1:-1;;;49972:127:0;;7519:2:1;49972:127:0::1;::::0;::::1;7501:21:1::0;7558:2;7538:18;;;7531:30;7597:34;7577:18;;;7570:62;-1:-1:-1;;;7648:18:1;;;7641:49;7707:19;;49972:127:0::1;7317:415:1::0;49972:127:0::1;50144:4;50132:8;:16;;:33;;;;-1:-1:-1::0;50152:13:0;50132:33:::1;50110:131;;;::::0;-1:-1:-1;;;50110:131:0;;9600:2:1;50110:131:0::1;::::0;::::1;9582:21:1::0;9639:2;9619:18;;;9612:30;9678:34;9658:18;;;9651:62;-1:-1:-1;;;9729:18:1;;;9722:46;9785:19;;50110:131:0::1;9398:412:1::0;50110:131:0::1;50252:15;:37:::0;;;;50300:16:::1;:27:::0;50338:13:::1;:24:::0;;-1:-1:-1;;50338:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49815:555::o;37983:121::-;2276:6;;38035:4;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;-1:-1:-1;38052:14:0::1;:22:::0;;-1:-1:-1;;38052:22:0::1;::::0;;;37983:121;:::o;39422:167::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39535:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39535:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39422:167::o;39793:403::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;39943:15:::1;:31:::0;;;39985:15:::1;:31:::0;;;40027:9:::1;:19:::0;;;40039:7;40072:33:::1;40003:13:::0;39961;40072:33:::1;:::i;:::-;:45;;;;:::i;:::-;40057:12;:60:::0;;;40152:2:::1;-1:-1:-1::0;40136:18:0::1;40128:60;;;::::0;-1:-1:-1;;;40128:60:0;;10017:2:1;40128:60:0::1;::::0;::::1;9999:21:1::0;10056:2;10036:18;;;10029:30;10095:31;10075:18;;;10068:59;10144:18;;40128:60:0::1;9815:353:1::0;40128:60:0::1;39793:403:::0;;;:::o;37776:155::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;37831:13:::1;:20:::0;;-1:-1:-1;;37862:18:0;;;;;37908:15:::1;37891:14;:32:::0;37776:155::o;39685:100::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;39756:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39756:21:0;;::::1;::::0;;;::::1;::::0;;39685:100::o;9838:104::-;9894:13;9927:7;9920:14;;;;;:::i;40814:304::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;40958:13:::1;::::0;-1:-1:-1;;;;;40950:21:0;;::::1;40958:13:::0;::::1;40950:21;;40928:128;;;::::0;-1:-1:-1;;;40928:128:0;;8344:2:1;40928:128:0::1;::::0;::::1;8326:21:1::0;8383:2;8363:18;;;8356:30;8422:34;8402:18;;;8395:62;8493:27;8473:18;;;8466:55;8538:19;;40928:128:0::1;8142:421:1::0;40928:128:0::1;41069:41;41098:4;41104:5;41069:28;:41::i;:::-;40814:304:::0;;:::o;14056:413::-;956:10;14149:4;14193:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14193:34:0;;;;;;;;;;14246:35;;;;14238:85;;;;-1:-1:-1;;;14238:85:0;;15181:2:1;14238:85:0;;;15163:21:1;15220:2;15200:18;;;15193:30;15259:34;15239:18;;;15232:62;-1:-1:-1;;;15310:18:1;;;15303:35;15355:19;;14238:85:0;14979:401:1;14238:85:0;14359:67;956:10;14382:7;14410:15;14391:16;:34;14359:8;:67::i;:::-;-1:-1:-1;14457:4:0;;14056:413;-1:-1:-1;;;14056:413:0:o;11250:175::-;11336:4;11353:42;956:10;11377:9;11388:6;11353:9;:42::i;41322:231::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;41482:15:::1;::::0;41439:59:::1;::::0;-1:-1:-1;;;;;41482:15:0;;::::1;::::0;41439:59;::::1;::::0;::::1;::::0;41482:15:::1;::::0;41439:59:::1;41509:15;:36:::0;;-1:-1:-1;;;;;;41509:36:0::1;-1:-1:-1::0;;;;;41509:36:0;;;::::1;::::0;;;::::1;::::0;;41322:231::o;40624:182::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40709:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40709:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40764:34;;4863:41:1;;;40764:34:0::1;::::0;4836:18:1;40764:34:0::1;;;;;;;40624:182:::0;;:::o;40204:412::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;40355:16:::1;:32:::0;;;40398:16:::1;:32:::0;;;40441:10:::1;:20:::0;;;40454:7;40488:35:::1;40417:13:::0;40374;40488:35:::1;:::i;:::-;:48;;;;:::i;:::-;40472:13;:64:::0;;;40572:2:::1;-1:-1:-1::0;40555:19:0::1;40547:61;;;::::0;-1:-1:-1;;;40547:61:0;;14823:2:1;40547:61:0::1;::::0;::::1;14805:21:1::0;14862:2;14842:18;;;14835:30;14901:31;14881:18;;;14874:59;14950:18;;40547:61:0::1;14621:353:1::0;39158:256:0;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;39298:4:::1;39290;39269:13;10827:12:::0;;;10739:108;39269:13:::1;:17;::::0;39285:1:::1;39269:17;:::i;:::-;39268:26;;;;:::i;:::-;39267:35;;;;:::i;:::-;39257:6;:45;;39235:131;;;::::0;-1:-1:-1;;;39235:131:0;;7939:2:1;39235:131:0::1;::::0;::::1;7921:21:1::0;7978:2;7958:18;;;7951:30;8017:34;7997:18;;;7990:62;-1:-1:-1;;;8068:18:1;;;8061:34;8112:19;;39235:131:0::1;7737:400:1::0;39235:131:0::1;39389:17;:6:::0;39399::::1;39389:17;:::i;:::-;39377:9;:29:::0;-1:-1:-1;39158:256:0:o;38370:497::-;2276:6;;38478:4;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;38557:6:::1;38536:13;10827:12:::0;;;10739:108;38536:13:::1;:17;::::0;38552:1:::1;38536:17;:::i;:::-;38535:28;;;;:::i;:::-;38522:9;:41;;38500:144;;;::::0;-1:-1:-1;;;38500:144:0;;10375:2:1;38500:144:0::1;::::0;::::1;10357:21:1::0;10414:2;10394:18;;;10387:30;10453:34;10433:18;;;10426:62;-1:-1:-1;;;10504:18:1;;;10497:51;10565:19;;38500:144:0::1;10173:417:1::0;38500:144:0::1;38712:4;38691:13;10827:12:::0;;;10739:108;38691:13:::1;:17;::::0;38707:1:::1;38691:17;:::i;:::-;38690:26;;;;:::i;:::-;38677:9;:39;;38655:141;;;::::0;-1:-1:-1;;;38655:141:0;;10797:2:1;38655:141:0::1;::::0;::::1;10779:21:1::0;10836:2;10816:18;;;10809:30;10875:34;10855:18;;;10848:62;-1:-1:-1;;;10926:18:1;;;10919:50;10986:19;;38655:141:0::1;10595:416:1::0;38655:141:0::1;-1:-1:-1::0;38807:18:0::1;:30:::0;;;38855:4:::1;2494:1;38370:497:::0;;;:::o;38165:135::-;2276:6;;38225:4;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;-1:-1:-1;38242:20:0::1;:28:::0;;-1:-1:-1;;38242:28:0::1;::::0;;;38165:135;:::o;3112:201::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3201:22:0;::::1;3193:73;;;::::0;-1:-1:-1;;;3193:73:0;;6709:2:1;3193:73:0::1;::::0;::::1;6691:21:1::0;6748:2;6728:18;;;6721:30;6787:34;6767:18;;;6760:62;-1:-1:-1;;;6838:18:1;;;6831:36;6884:19;;3193:73:0::1;6507:402:1::0;3193:73:0::1;3277:28;3296:8;3277:18;:28::i;:::-;3112:201:::0;:::o;51174:1056::-;2276:6;;51285:4;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;51370:19:::1;;51347:20;;:42;;;;:::i;:::-;51329:15;:60;51307:142;;;::::0;-1:-1:-1;;;51307:142:0;;13709:2:1;51307:142:0::1;::::0;::::1;13691:21:1::0;;;13728:18;;;13721:30;13787:34;13767:18;;;13760:62;13839:18;;51307:142:0::1;13507:356:1::0;51307:142:0::1;51479:4;51468:7;:15;;51460:70;;;::::0;-1:-1:-1;;;51460:70:0;;12892:2:1;51460:70:0::1;::::0;::::1;12874:21:1::0;12931:2;12911:18;;;12904:30;12970:34;12950:18;;;12943:62;-1:-1:-1;;;13021:18:1;;;13014:40;13071:19;;51460:70:0::1;12690:406:1::0;51460:70:0::1;51564:15;51541:20;:38:::0;51680:13:::1;::::0;51665:29:::1;::::0;-1:-1:-1;;;51665:29:0;;-1:-1:-1;;;;;51680:13:0;;::::1;51665:29;::::0;::::1;4049:51:1::0;51634:28:0::1;::::0;51665:4:::1;::::0;:14:::1;::::0;4022:18:1;;51665:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51634:60:::0;-1:-1:-1;51744:20:0::1;51767:44;51805:5;51767:33;51634:60:::0;51792:7;51767:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;51744:67:::0;-1:-1:-1;51916:16:0;;51912:110:::1;;51965:13;::::0;51949:61:::1;::::0;-1:-1:-1;;;;;51965:13:0::1;51988:6;51997:12:::0;51949:15:::1;:61::i;:::-;52134:13;::::0;52159:11:::1;::::0;;-1:-1:-1;;;;;;52159:11:0;;;;-1:-1:-1;;;;;52134:13:0;;::::1;::::0;;;52159:9:::1;::::0;:11:::1;::::0;;::::1;::::0;52097:19:::1;::::0;52159:11;;;;;;;52097:19;52134:13;52159:11;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;52186:14:0::1;::::0;::::1;::::0;-1:-1:-1;52186:14:0;;-1:-1:-1;52186:14:0::1;-1:-1:-1::0;52218:4:0::1;::::0;51174:1056;-1:-1:-1;;;;51174:1056:0:o;17740:380::-;-1:-1:-1;;;;;17876:19:0;;17868:68;;;;-1:-1:-1;;;17868:68:0;;14070:2:1;17868:68:0;;;14052:21:1;14109:2;14089:18;;;14082:30;14148:34;14128:18;;;14121:62;-1:-1:-1;;;14199:18:1;;;14192:34;14243:19;;17868:68:0;13868:400:1;17868:68:0;-1:-1:-1;;;;;17955:21:0;;17947:68;;;;-1:-1:-1;;;17947:68:0;;7116:2:1;17947:68:0;;;7098:21:1;7155:2;7135:18;;;7128:30;7194:34;7174:18;;;7167:62;-1:-1:-1;;;7245:18:1;;;7238:32;7287:19;;17947:68:0;6914:398:1;17947:68:0;-1:-1:-1;;;;;18028:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18080:32;;15947:25:1;;;18080:32:0;;15920:18:1;18080:32:0;;;;;;;17740:380;;;:::o;41910:5011::-;-1:-1:-1;;;;;42042:18:0;;42034:68;;;;-1:-1:-1;;;42034:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42121:16:0;;42113:64;;;;-1:-1:-1;;;42113:64:0;;;;;;;:::i;:::-;42194:11;42190:93;;42222:28;42238:4;42244:2;42248:1;42222:15;:28::i;42190:93::-;42299:14;;;;42295:2487;;;2276:6;;-1:-1:-1;;;;;42352:15:0;;;2276:6;;42352:15;;;;:49;;-1:-1:-1;2276:6:0;;-1:-1:-1;;;;;42388:13:0;;;2276:6;;42388:13;;42352:49;:86;;;;-1:-1:-1;;;;;;42422:16:0;;;;42352:86;:128;;;;-1:-1:-1;;;;;;42459:21:0;;42473:6;42459:21;;42352:128;:158;;;;-1:-1:-1;42502:8:0;;-1:-1:-1;;;42502:8:0;;;;42501:9;42352:158;42330:2441;;;42550:13;;;;;;;42545:223;;-1:-1:-1;;;;;42622:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42651:23:0;;;;;;:19;:23;;;;;;;;42622:52;42588:160;;;;-1:-1:-1;;;42588:160:0;;6358:2:1;42588:160:0;;;6340:21:1;6397:2;6377:18;;;6370:30;-1:-1:-1;;;6416:18:1;;;6409:52;6478:18;;42588:160:0;6156:346:1;42588:160:0;42924:20;;;;42920:641;;;2276:6;;-1:-1:-1;;;;;42999:13:0;;;2276:6;;42999:13;;;;:72;;-1:-1:-1;43055:15:0;;-1:-1:-1;;;;;43041:30:0;;;43055:15;;43041:30;;42999:72;:129;;;;-1:-1:-1;43114:13:0;;-1:-1:-1;;;;;43100:28:0;;;43114:13;;43100:28;;42999:129;42969:573;;;43246:9;43217:39;;;;:28;:39;;;;;;43292:12;-1:-1:-1;43179:258:0;;;;-1:-1:-1;;;43179:258:0;;11640:2:1;43179:258:0;;;11622:21:1;11679:2;11659:18;;;11652:30;11718:34;11698:18;;;11691:62;11789:34;11769:18;;;11762:62;-1:-1:-1;;;11840:19:1;;;11833:40;11890:19;;43179:258:0;11438:477:1;43179:258:0;43493:9;43464:39;;;;:28;:39;;;;;43506:12;43464:54;;42969:573;-1:-1:-1;;;;;43635:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43692:35:0;;;;;;:31;:35;;;;;;;;43691:36;43635:92;43609:1147;;;43814:20;;43804:6;:30;;43770:169;;;;-1:-1:-1;;;43770:169:0;;11218:2:1;43770:169:0;;;11200:21:1;11257:2;11237:18;;;11230:30;11296:34;11276:18;;;11269:62;-1:-1:-1;;;11347:18:1;;;11340:51;11408:19;;43770:169:0;11016:417:1;43770:169:0;44022:9;;-1:-1:-1;;;;;11011:18:0;;10984:7;11011:18;;;;;;;;;;;43996:22;;:6;:22;:::i;:::-;:35;;43962:140;;;;-1:-1:-1;;;43962:140:0;;14475:2:1;43962:140:0;;;14457:21:1;14514:2;14494:18;;;14487:30;-1:-1:-1;;;14533:18:1;;;14526:49;14592:18;;43962:140:0;14273:343:1;43962:140:0;43609:1147;;;-1:-1:-1;;;;;44200:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;44255:37:0;;;;;;:31;:37;;;;;;;;44254:38;44200:92;44174:582;;;44379:20;;44369:6;:30;;44335:170;;;;-1:-1:-1;;;44335:170:0;;9177:2:1;44335:170:0;;;9159:21:1;9216:2;9196:18;;;9189:30;9255:34;9235:18;;;9228:62;-1:-1:-1;;;9306:18:1;;;9299:52;9368:19;;44335:170:0;8975:418:1;44174:582:0;-1:-1:-1;;;;;44536:35:0;;;;;;:31;:35;;;;;;;;44531:225;;44656:9;;-1:-1:-1;;;;;11011:18:0;;10984:7;11011:18;;;;;;;;;;;44630:22;;:6;:22;:::i;:::-;:35;;44596:140;;;;-1:-1:-1;;;44596:140:0;;14475:2:1;44596:140:0;;;14457:21:1;14514:2;14494:18;;;14487:30;-1:-1:-1;;;14533:18:1;;;14526:49;14592:18;;44596:140:0;14273:343:1;44596:140:0;44843:4;44794:28;11011:18;;;;;;;;;;;44901;;44877:42;;;;;;;44950:35;;-1:-1:-1;44974:11:0;;;;;;;44950:35;:61;;;;-1:-1:-1;45003:8:0;;-1:-1:-1;;;45003:8:0;;;;45002:9;44950:61;:110;;;;-1:-1:-1;;;;;;45029:31:0;;;;;;:25;:31;;;;;;;;45028:32;44950:110;:153;;;;-1:-1:-1;;;;;;45078:25:0;;;;;;:19;:25;;;;;;;;45077:26;44950:153;:194;;;;-1:-1:-1;;;;;;45121:23:0;;;;;;:19;:23;;;;;;;;45120:24;44950:194;44932:326;;;45171:8;:15;;-1:-1:-1;;;;45171:15:0;-1:-1:-1;;;45171:15:0;;;45203:10;:8;:10::i;:::-;45230:8;:16;;-1:-1:-1;;;;45230:16:0;;;44932:326;45289:8;;-1:-1:-1;;;45289:8:0;;;;45288:9;:55;;;;-1:-1:-1;;;;;;45314:29:0;;;;;;:25;:29;;;;;;;;45288:55;:85;;;;-1:-1:-1;45360:13:0;;;;45288:85;:153;;;;;45426:15;;45409:14;;:32;;;;:::i;:::-;45390:15;:51;;45288:153;:196;;;;-1:-1:-1;;;;;;45459:25:0;;;;;;:19;:25;;;;;;;;45458:26;45288:196;45270:282;;;45511:29;:27;:29::i;:::-;;45270:282;45580:8;;-1:-1:-1;;;;;45690:25:0;;45564:12;45690:25;;;:19;:25;;;;;;45580:8;-1:-1:-1;;;45580:8:0;;;;;45579:9;;45690:25;;:52;;-1:-1:-1;;;;;;45719:23:0;;;;;;:19;:23;;;;;;;;45690:52;45686:100;;;-1:-1:-1;45769:5:0;45686:100;45798:12;45903:7;45899:969;;;-1:-1:-1;;;;;45955:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;46004:1;45988:13;;:17;45955:50;45951:768;;;46033:34;46063:3;46033:25;46044:13;;46033:6;:10;;:25;;;;:::i;:34::-;46026:41;;46136:13;;46116:16;;46109:4;:23;;;;:::i;:::-;46108:41;;;;:::i;:::-;46086:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;46206:13:0;;46192:10;;46185:17;;:4;:17;:::i;:::-;46184:35;;;;:::i;:::-;46168:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;46288:13:0;;46268:16;;46261:23;;:4;:23;:::i;:::-;46260:41;;;;:::i;:::-;46238:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45951:768:0;;-1:-1:-1;45951:768:0;;-1:-1:-1;;;;;46363:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46413:1;46398:12;;:16;46363:51;46359:360;;;46442:33;46471:3;46442:24;46453:12;;46442:6;:10;;:24;;;;:::i;:33::-;46435:40;;46543:12;;46524:15;;46517:4;:22;;;;:::i;:::-;46516:39;;;;:::i;:::-;46494:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46611:12:0;;46598:9;;46591:16;;:4;:16;:::i;:::-;46590:33;;;;:::i;:::-;46574:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46691:12:0;;46672:15;;46665:22;;:4;:22;:::i;:::-;46664:39;;;;:::i;:::-;46642:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46359:360:0;46739:8;;46735:91;;46768:42;46784:4;46798;46805;46768:15;:42::i;:::-;46842:14;46852:4;46842:14;;:::i;:::-;;;45899:969;46880:33;46896:4;46902:2;46906:6;46880:15;:33::i;:::-;42023:4898;;;;41910:5011;;;:::o;3473:191::-;3566:6;;;-1:-1:-1;;;;;3583:17:0;;;-1:-1:-1;;;;;;3583:17:0;;;;;;;3616:40;;3566:6;;;3583:17;3566:6;;3616:40;;3547:16;;3616:40;3536:128;3473:191;:::o;41126:188::-;-1:-1:-1;;;;;41209:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41209:39:0;;;;;;;;;;41266:40;;41209:39;;:31;41266:40;;;41126:188;;:::o;23193:98::-;23251:7;23278:5;23282:1;23278;:5;:::i;:::-;23271:12;23193:98;-1:-1:-1;;;23193:98:0:o;23592:::-;23650:7;23677:5;23681:1;23677;:5;:::i;14959:733::-;-1:-1:-1;;;;;15099:20:0;;15091:70;;;;-1:-1:-1;;;15091:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15180:23:0;;15172:71;;;;-1:-1:-1;;;15172:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15340:17:0;;15316:21;15340:17;;;;;;;;;;;15376:23;;;;15368:74;;;;-1:-1:-1;;;15368:74:0;;8770:2:1;15368:74:0;;;8752:21:1;8809:2;8789:18;;;8782:30;8848:34;8828:18;;;8821:62;-1:-1:-1;;;8899:18:1;;;8892:36;8945:19;;15368:74:0;8568:402:1;15368:74:0;-1:-1:-1;;;;;15478:17:0;;;:9;:17;;;;;;;;;;;15498:22;;;15478:42;;15542:20;;;;;;;;:30;;15514:6;;15478:9;15542:30;;15514:6;;15542:30;:::i;:::-;;;;;;;;15607:9;-1:-1:-1;;;;;15590:35:0;15599:6;-1:-1:-1;;;;;15590:35:0;;15618:6;15590:35;;;;15947:25:1;;15935:2;15920:18;;15801:177;15590:35:0;;;;;;;;15080:612;14959:733;;;:::o;48051:1756::-;48134:4;48090:23;11011:18;;;;;;;;;;;48090:50;;48151:25;48247:12;;48213:18;;48179;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48151:108;-1:-1:-1;48270:12:0;48299:20;;;:46;;-1:-1:-1;48323:22:0;;48299:46;48295:85;;;48362:7;;;48051:1756::o;48295:85::-;48414:18;;:23;;48435:2;48414:23;:::i;:::-;48396:15;:41;48392:115;;;48472:18;;:23;;48493:2;48472:23;:::i;:::-;48454:41;;48392:115;48568:23;48681:1;48648:17;48613:18;;48595:15;:36;;;;:::i;:::-;48594:71;;;;:::i;:::-;:88;;;;:::i;:::-;48568:114;-1:-1:-1;48693:26:0;48722:36;:15;48568:114;48722:19;:36::i;:::-;48693:65;-1:-1:-1;48799:21:0;48833:36;48693:65;48833:16;:36::i;:::-;48882:18;48903:44;:21;48929:17;48903:25;:44::i;:::-;48882:65;;48960:23;48986:81;49039:17;48986:34;49001:18;;48986:10;:14;;:34;;;;:::i;:81::-;48960:107;;49078:17;49098:51;49131:17;49098:28;49113:12;;49098:10;:14;;:28;;;;:::i;:51::-;49078:71;-1:-1:-1;49162:23:0;49078:71;49188:28;49201:15;49188:10;:28;:::i;:::-;:40;;;;:::i;:::-;49262:1;49241:18;:22;;;49274:18;:22;;;49307:12;:16;;;49358:9;;49350:45;;49162:66;;-1:-1:-1;;;;;;49358:9:0;;49381;;49350:45;49262:1;49350:45;49381:9;49358;49350:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49336:59:0;;-1:-1:-1;;49412:19:0;;;;;:42;;;49453:1;49435:15;:19;49412:42;49408:278;;;49471:46;49484:15;49501;49471:12;:46::i;:::-;49641:18;;49537:137;;;17170:25:1;;;17226:2;17211:18;;17204:34;;;17254:18;;;17247:34;;;;49537:137:0;;;;;;17158:2:1;49537:137:0;;;49408:278;49720:15;;49712:87;;-1:-1:-1;;;;;49720:15:0;;;;49763:21;;49712:87;;;;49763:21;49720:15;49712:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;48051:1756:0:o;50378:788::-;50469:15;50452:14;:32;50585:13;;50570:29;;-1:-1:-1;;;50570:29:0;;-1:-1:-1;;;;;50585:13:0;;;50570:29;;;4049:51:1;50435:4:0;;;;50570;;:14;;4022:18:1;;50570:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50539:60;;50649:20;50672:77;50733:5;50672:42;50697:16;;50672:20;:24;;:42;;;;:::i;:77::-;50649:100;-1:-1:-1;50854:16:0;;50850:110;;50903:13;;50887:61;;-1:-1:-1;;;;;50903:13:0;50926:6;50935:12;50887:15;:61::i;:::-;51072:13;;51097:11;;;-1:-1:-1;;;;;;51097:11:0;;;;-1:-1:-1;;;;;51072:13:0;;;;;;51097:9;;:11;;;;;51035:19;;51097:11;;;;;;;51035:19;51072:13;51097:11;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51124:12:0;;;;-1:-1:-1;51124:12:0;;-1:-1:-1;51124:12:0;51154:4;51147:11;;;;;50378:788;:::o;22836:98::-;22894:7;22921:5;22925:1;22921;:5;:::i;46929:589::-;47079:16;;;47093:1;47079:16;;;;;;;;47055:21;;47079:16;;;;;;;;;;-1:-1:-1;47079:16:0;47055:40;;47124:4;47106;47111:1;47106:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47106:23:0;;;:7;;;;;;;;;;:23;;;;47150:15;;:22;;;-1:-1:-1;;;47150:22:0;;;;:15;;;;;:20;;:22;;;;;47106:7;;47150:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47140:4;47145:1;47140:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47140:32:0;;;:7;;;;;;;;;:32;47217:15;;47185:62;;47202:4;;47217:15;47235:11;47185:8;:62::i;:::-;47286:15;;:224;;-1:-1:-1;;;47286:224:0;;-1:-1:-1;;;;;47286:15:0;;;;:66;;:224;;47367:11;;47286:15;;47437:4;;47464;;47484:15;;47286:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46984:534;46929:589;:::o;47526:517::-;47706:15;;47674:62;;47691:4;;-1:-1:-1;;;;;47706:15:0;47724:11;47674:8;:62::i;:::-;47779:15;;:256;;-1:-1:-1;;;47779:256:0;;47851:4;47779:256;;;4452:34:1;4502:18;;;4495:34;;;47779:15:0;4545:18:1;;;4538:34;;;4588:18;;;4581:34;33019:6:0;4631:19:1;;;4624:44;48009:15:0;4684:19:1;;;4677:35;-1:-1:-1;;;;;47779:15:0;;;;:31;;47818:9;;4386:19:1;;47779:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47526:517;;:::o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;179:247;238:6;291:2;279:9;270:7;266:23;262:32;259:52;;;307:1;304;297:12;259:52;346:9;333:23;365:31;390:5;365:31;:::i;431:251::-;501:6;554:2;542:9;533:7;529:23;525:32;522:52;;;570:1;567;560:12;522:52;602:9;596:16;621:31;646:5;621:31;:::i;687:388::-;755:6;763;816:2;804:9;795:7;791:23;787:32;784:52;;;832:1;829;822:12;784:52;871:9;858:23;890:31;915:5;890:31;:::i;:::-;940:5;-1:-1:-1;997:2:1;982:18;;969:32;1010:33;969:32;1010:33;:::i;:::-;1062:7;1052:17;;;687:388;;;;;:::o;1080:456::-;1157:6;1165;1173;1226:2;1214:9;1205:7;1201:23;1197:32;1194:52;;;1242:1;1239;1232:12;1194:52;1281:9;1268:23;1300:31;1325:5;1300:31;:::i;:::-;1350:5;-1:-1:-1;1407:2:1;1392:18;;1379:32;1420:33;1379:32;1420:33;:::i;:::-;1080:456;;1472:7;;-1:-1:-1;;;1526:2:1;1511:18;;;;1498:32;;1080:456::o;1541:315::-;1606:6;1614;1667:2;1655:9;1646:7;1642:23;1638:32;1635:52;;;1683:1;1680;1673:12;1635:52;1722:9;1709:23;1741:31;1766:5;1741:31;:::i;:::-;1791:5;-1:-1:-1;1815:35:1;1846:2;1831:18;;1815:35;:::i;:::-;1805:45;;1541:315;;;;;:::o;1861:::-;1929:6;1937;1990:2;1978:9;1969:7;1965:23;1961:32;1958:52;;;2006:1;2003;1996:12;1958:52;2045:9;2032:23;2064:31;2089:5;2064:31;:::i;:::-;2114:5;2166:2;2151:18;;;;2138:32;;-1:-1:-1;;;1861:315:1:o;2181:180::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:26;2345:9;2329:26;:::i;2366:180::-;2425:6;2478:2;2466:9;2457:7;2453:23;2449:32;2446:52;;;2494:1;2491;2484:12;2446:52;-1:-1:-1;2517:23:1;;2366:180;-1:-1:-1;2366:180:1:o;2551:184::-;2621:6;2674:2;2662:9;2653:7;2649:23;2645:32;2642:52;;;2690:1;2687;2680:12;2642:52;-1:-1:-1;2713:16:1;;2551:184;-1:-1:-1;2551:184:1:o;2740:316::-;2814:6;2822;2830;2883:2;2871:9;2862:7;2858:23;2854:32;2851:52;;;2899:1;2896;2889:12;2851:52;2935:9;2922:23;2912:33;;2992:2;2981:9;2977:18;2964:32;2954:42;;3015:35;3046:2;3035:9;3031:18;3015:35;:::i;:::-;3005:45;;2740:316;;;;;:::o;3061:::-;3138:6;3146;3154;3207:2;3195:9;3186:7;3182:23;3178:32;3175:52;;;3223:1;3220;3213:12;3175:52;-1:-1:-1;;3246:23:1;;;3316:2;3301:18;;3288:32;;-1:-1:-1;3367:2:1;3352:18;;;3339:32;;3061:316;-1:-1:-1;3061:316:1:o;3382:306::-;3470:6;3478;3486;3539:2;3527:9;3518:7;3514:23;3510:32;3507:52;;;3555:1;3552;3545:12;3507:52;3584:9;3578:16;3568:26;;3634:2;3623:9;3619:18;3613:25;3603:35;;3678:2;3667:9;3663:18;3657:25;3647:35;;3382:306;;;;;:::o;5150:597::-;5262:4;5291:2;5320;5309:9;5302:21;5352:6;5346:13;5395:6;5390:2;5379:9;5375:18;5368:34;5420:1;5430:140;5444:6;5441:1;5438:13;5430:140;;;5539:14;;;5535:23;;5529:30;5505:17;;;5524:2;5501:26;5494:66;5459:10;;5430:140;;;5588:6;5585:1;5582:13;5579:91;;;5658:1;5653:2;5644:6;5633:9;5629:22;5625:31;5618:42;5579:91;-1:-1:-1;5731:2:1;5710:15;-1:-1:-1;;5706:29:1;5691:45;;;;5738:2;5687:54;;5150:597;-1:-1:-1;;;5150:597:1:o;5752:399::-;5954:2;5936:21;;;5993:2;5973:18;;;5966:30;6032:34;6027:2;6012:18;;6005:62;-1:-1:-1;;;6098:2:1;6083:18;;6076:33;6141:3;6126:19;;5752:399::o;12329:356::-;12531:2;12513:21;;;12550:18;;;12543:30;12609:34;12604:2;12589:18;;12582:62;12676:2;12661:18;;12329:356::o;13101:401::-;13303:2;13285:21;;;13342:2;13322:18;;;13315:30;13381:34;13376:2;13361:18;;13354:62;-1:-1:-1;;;13447:2:1;13432:18;;13425:35;13492:3;13477:19;;13101:401::o;15983:980::-;16245:4;16293:3;16282:9;16278:19;16324:6;16313:9;16306:25;16350:2;16388:6;16383:2;16372:9;16368:18;16361:34;16431:3;16426:2;16415:9;16411:18;16404:31;16455:6;16490;16484:13;16521:6;16513;16506:22;16559:3;16548:9;16544:19;16537:26;;16598:2;16590:6;16586:15;16572:29;;16619:1;16629:195;16643:6;16640:1;16637:13;16629:195;;;16708:13;;-1:-1:-1;;;;;16704:39:1;16692:52;;16799:15;;;;16764:12;;;;16740:1;16658:9;16629:195;;;-1:-1:-1;;;;;;;16880:32:1;;;;16875:2;16860:18;;16853:60;-1:-1:-1;;;16944:3:1;16929:19;16922:35;16841:3;15983:980;-1:-1:-1;;;15983:980:1:o;17481:128::-;17521:3;17552:1;17548:6;17545:1;17542:13;17539:39;;;17558:18;;:::i;:::-;-1:-1:-1;17594:9:1;;17481:128::o;17614:217::-;17654:1;17680;17670:132;;17724:10;17719:3;17715:20;17712:1;17705:31;17759:4;17756:1;17749:15;17787:4;17784:1;17777:15;17670:132;-1:-1:-1;17816:9:1;;17614:217::o;17836:168::-;17876:7;17942:1;17938;17934:6;17930:14;17927:1;17924:21;17919:1;17912:9;17905:17;17901:45;17898:71;;;17949:18;;:::i;:::-;-1:-1:-1;17989:9:1;;17836:168::o;18009:125::-;18049:4;18077:1;18074;18071:8;18068:34;;;18082:18;;:::i;:::-;-1:-1:-1;18119:9:1;;18009:125::o;18139:380::-;18218:1;18214:12;;;;18261;;;18282:61;;18336:4;18328:6;18324:17;18314:27;;18282:61;18389:2;18381:6;18378:14;18358:18;18355:38;18352:161;;;18435:10;18430:3;18426:20;18423:1;18416:31;18470:4;18467:1;18460:15;18498:4;18495:1;18488:15;18352:161;;18139:380;;;:::o;18524:127::-;18585:10;18580:3;18576:20;18573:1;18566:31;18616:4;18613:1;18606:15;18640:4;18637:1;18630:15;18656:127;18717:10;18712:3;18708:20;18705:1;18698:31;18748:4;18745:1;18738:15;18772:4;18769:1;18762:15;18920:131;-1:-1:-1;;;;;18995:31:1;;18985:42;;18975:70;;19041:1;19038;19031:12

Swarm Source

ipfs://c26866a231efa5061481250340fa94cc614c48090aa45a486c24c700c96684c7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.