ETH Price: $3,430.00 (+2.34%)
Gas: 4 Gwei

Token

BananaFarm (FANA)
 

Overview

Max Total Supply

100,000,000,000 FANA

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
braindeaddegen.eth
Balance
0.703597119562845071 FANA

Value
$0.00
0x4645057b189150225f7b6d7229bd9cc190e7b239
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:
BananaFarm

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-15
*/

/**
 
 //telegram: https://t.me/bananafarmportal
 //website:Https://bananafarmtoken.com
 //twitter: https://twitter.com/bananafarmerc
 
 * SPDX-License-Identifier: MIT
 */
pragma solidity 0.8.21;

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

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

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

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

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

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `requestedDecrease`.
     *
     * NOTE: Although this function is designed to avoid double spending with {approval},
     * it can still be frontrunned, preventing any attempt of allowance reduction.
     */
    function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < requestedDecrease) {
            revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
        }
        unchecked {
            _approve(owner, spender, currentAllowance - requestedDecrease);
        }

        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is
     * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0).
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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 value) internal virtual {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true
     * using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

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

interface IDexFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

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

    function WETH() external pure returns (address);

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

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

    IDexRouter public immutable dexRouter;
    address public immutable dexPair;

    // Swapback
    bool private duringContractSell;
    bool public contractSellEnabled = false;
    uint256 public minBalanceForContractSell;
    uint256 public maxAmountTokensForContractSell;

    //Anti-whale
    bool public tradingLimitsOn = true;
    bool public limitTxsPerBlock = true;
    uint256 public maxHold;
    uint256 public maxTx;
    mapping(address => uint256) private _addressLastTransfer; // to hold last Transfers temporarily during launch

    // Blacklist
    mapping(address => bool) public blacklisted;
    bool public canSetBlacklist = true;

    // Fee receivers
    address public treasuryWallet;
    address public projectWallet;

    bool public tokenLaunched = false;

    uint256 public buyFeesTotal;
    uint256 public treasuryFeeBuy;
    uint256 public projectFeeBuy;

    uint256 public sellFeesTotal;
    uint256 public treasuryFeeSell;
    uint256 public projectFeeSell;

    uint256 public tokensToSwapTreasury;
    uint256 public tokensToSwapProject;

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

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

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

    event FeeWhitelist(address indexed account, bool isExcluded);

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

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

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

    constructor() ERC20("BananaFarm", "FANA") {
        IDexRouter _dexRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        txLimitsWhitelist(address(_dexRouter), true);
        dexRouter = _dexRouter;

        dexPair = IDexFactory(_dexRouter.factory())
            .createPair(address(this), _dexRouter.WETH());
        txLimitsWhitelist(address(dexPair), true);
        _setAutomatedMarketMakerPair(address(dexPair), true);

        uint256 _treasuryFeeBuy = 2;
        uint256 _projectFeeBuy = 15;

        uint256 _treasuryFeeSell = 2;
        uint256 _projectFeeSell = 20;

        uint256 tokenSupply = 100000000000 * 1e18;

        maxTx = (tokenSupply * 20) / 1000; // 2% of total supply
        maxHold = (tokenSupply * 20) / 1000; // 2% of total supply

        minBalanceForContractSell = (tokenSupply * 5) / 10000; // 0.05% swapback trigger
        maxAmountTokensForContractSell = (tokenSupply * 5) / 1000; // 0.5% max swapback

        treasuryFeeBuy = _treasuryFeeBuy;
        projectFeeBuy = _projectFeeBuy;
        buyFeesTotal = treasuryFeeBuy + projectFeeBuy;

        treasuryFeeSell = _treasuryFeeSell;
        projectFeeSell = _projectFeeSell;
        sellFeesTotal = treasuryFeeSell + projectFeeSell;

        treasuryWallet = address(msg.sender);
        projectWallet = address(msg.sender);

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

        txLimitsWhitelist(owner(), true);
        txLimitsWhitelist(address(this), true);
        txLimitsWhitelist(address(0xdead), true);
        txLimitsWhitelist(treasuryWallet, true);

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

    receive() external payable {}

    /// @notice Launches the token and enables trading. Irriversable.
    function startLaunch() external onlyOwner {
        tokenLaunched = true;
        contractSellEnabled = true;
    }

    /// @notice Removes the max wallet and max transaction limits
    function finishLaunchPeriod() external onlyOwner returns (bool) {
        tradingLimitsOn = false;
        return true;
    }

    /// @notice Disables the Same wallet block transfer delay
    function disableBlockTxLimit() external onlyOwner returns (bool) {
        limitTxsPerBlock = false;
        return true;
    }

    /// @notice Changes the minimum balance of tokens the contract must have before duringContractSell tokens for ETH. Base 100000, so 0.5% = 500.
    function updateContractSellMin(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= totalSupply() / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (500 * totalSupply()) / 100000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        require(
            newAmount <= maxAmountTokensForContractSell,
            "Swap amount cannot be higher than maxAmountTokensForContractSell"
        );
        minBalanceForContractSell = newAmount;
        return true;
    }

    /// @notice Changes the maximum amount of tokens the contract can swap for ETH. Base 10000, so 0.5% = 50.
    function updateMaxContractSellAmount(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= minBalanceForContractSell,
            "Swap amount cannot be lower than minBalanceForContractSell"
        );
        maxAmountTokensForContractSell = newAmount;
        return true;
    }

    /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
    /// @param newNum Base 1000, so 1% = 10
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (newNum * totalSupply()) / 1000;
    }

    /// @notice Changes the maximum amount of tokens a wallet can hold
    /// @param newNum Base 1000, so 1% = 10
    function updateMaxHoldAmount(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set maxHold lower than 0.5%");
        maxHold = (newNum * totalSupply()) / 1000;
    }

    /// @notice Sets if a wallet is excluded from the max wallet and tx limits
    /// @param updAds The wallet to update
    /// @param isEx If the wallet is excluded or not
    function txLimitsWhitelist(
        address updAds,
        bool isEx
    ) public onlyOwner {
        exemptFromMaxLimits[updAds] = isEx;
    }

    /// @notice Sets if the contract can sell tokens
    /// @param enabled set to false to disable selling
    function setContractSellEnabled(bool enabled) external onlyOwner {
        contractSellEnabled = enabled;
    }

    /// @notice Sets the fees for buys
    /// @param _treasuryFee The fee for the treasury wallet
    /// @param _projectFee The fee for the dev wallet
    function setBuyFees(
        uint256 _treasuryFee,
        uint256 _projectFee
    ) external onlyOwner {
        treasuryFeeBuy = _treasuryFee;
        projectFeeBuy = _projectFee;
        buyFeesTotal = treasuryFeeBuy + projectFeeBuy;
        require(buyFeesTotal <= 12, "Must keep fees at 12% or less");
    }

    /// @notice Sets the fees for sells
    /// @param _treasuryFee The fee for the treasury wallet
    /// @param _projectFee The fee for the dev wallet
    function setSellFees(
        uint256 _treasuryFee,
        uint256 _projectFee
    ) external onlyOwner {
        treasuryFeeSell = _treasuryFee;
        projectFeeSell = _projectFee;
        sellFeesTotal = treasuryFeeSell + projectFeeSell;
        require(sellFeesTotal <= 12, "Must keep fees at 12% or less");
    }

    /// @notice Sets if a wallet is excluded from fees
    /// @param account The wallet to update
    /// @param excluded If the wallet is excluded or not
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        exemptFromFees[account] = excluded;
        emit FeeWhitelist(account, excluded);
    }

    /// @notice Sets an address as a new liquidity pair. You probably dont want to do this.
    /// @param pair The new pair
    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != dexPair,
            "The pair cannot be removed from isAMMPair"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAMMPair(pair, value);
    }

    /// @notice Sets a wallet as the new treasury wallet
    /// @param newTreasuryWallet The new treasury wallet
    function updateTreasuryWallet(
        address newTreasuryWallet
    ) external onlyOwner {
        emit treasuryWalletUpdated(newTreasuryWallet, treasuryWallet);
        treasuryWallet = newTreasuryWallet;
    }

    /// @notice Sets a wallet as the new dev wallet
    /// @param newWallet The new dev wallet
    function updateProjectWallet(address newWallet) external onlyOwner {
        emit projectWalletUpdated(newWallet, projectWallet);
        projectWallet = newWallet;
    }

    /// @notice Sets the blacklist status of multiple addresses
    /// @param addresses The addresses to update
    /// @param isBlacklisted If the addresses are blacklisted or not
    function updateBlacklistMultiple(
        address[] calldata addresses,
        bool isBlacklisted
    ) external onlyOwner {
        require(canSetBlacklist, "Blacklist is locked");
        for (uint256 i = 0; i < addresses.length; i++) {
            blacklisted[addresses[i]] = isBlacklisted;
        }
    }

    /// @notice Removes the owner ability to change the blacklist
    function lockBlacklist() external onlyOwner {
        canSetBlacklist = false;
    }

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

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {
            super._update(from, to, 0);
            return;
        }

        if (tradingLimitsOn) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !duringContractSell
            ) {
                if (!tokenLaunched) {
                    require(
                        exemptFromFees[from] || exemptFromFees[to],
                        "Trading is not active."
                    );
                }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= minBalanceForContractSell;

        if (
            canSwap &&
            contractSellEnabled &&
            !duringContractSell &&
            !isAMMPair[from] &&
            !exemptFromFees[from] &&
            !exemptFromFees[to]
        ) {
            duringContractSell = true;

            swapBack();

            duringContractSell = false;
        }

        bool takeFee = !duringContractSell;

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

        if (!exemptFromFees[from] || !exemptFromFees[to]) {
            require(!blacklisted[from], "Address is blacklisted");
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (isAMMPair[to] && sellFeesTotal > 0) {
                fees = amount.mul(sellFeesTotal).div(100);
                tokensToSwapProject += (fees * projectFeeSell) / sellFeesTotal;
                tokensToSwapTreasury += (fees * treasuryFeeSell) / sellFeesTotal;
            }
            // on buy
            else if (isAMMPair[from] && buyFeesTotal > 0) {
                fees = amount.mul(buyFeesTotal).div(100);
                tokensToSwapProject += (fees * projectFeeBuy) / buyFeesTotal;
                tokensToSwapTreasury += (fees * treasuryFeeBuy) / buyFeesTotal;
            }

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

            amount -= fees;
        }

        super._update(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] = dexRouter.WETH();

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

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

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

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

        if (contractBalance > maxAmountTokensForContractSell) {
            contractBalance = maxAmountTokensForContractSell;
        }

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(contractBalance);

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

        uint256 ethForProject = ethBalance.mul(tokensToSwapProject).div(totalTokensToSwap);

        tokensToSwapTreasury = 0;
        tokensToSwapProject = 0;

        (success, ) = address(projectWallet).call{value: ethForProject}("");

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"FeeWhitelist","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":"SetAMMPair","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"projectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeesTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canSetBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractSellEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableBlockTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exemptFromMaxLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finishLaunchPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"isAMMPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitTxsPerBlock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxAmountTokensForContractSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBalanceForContractSell","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":"projectFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeesTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setContractSellEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensToSwapProject","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensToSwapTreasury","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":"tradingLimitsOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"treasuryFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"txLimitsWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"updateBlacklistMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateContractSellMin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxContractSellAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxHoldAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556008805461ffff1916610101179055600d805460ff19166001179055600e805460ff60a01b1916905534801562000046575f80fd5b506040518060400160405280600a81526020016942616e616e614661726d60b01b8152506040518060400160405280600481526020016346414e4160e01b8152508160039081620000989190620013f4565b506004620000a78282620013f4565b505050620000c4620000be6200041e60201b60201c565b62000422565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e681600162000473565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001559190620014bc565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c79190620014bc565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000212573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002389190620014bc565b6001600160a01b031660a08190526200025390600162000473565b60a05162000263906001620004eb565b6002600f8160146c01431e0fae6d7217caa00000006103e8620002878284620014ff565b62000293919062001519565b600a556103e8620002a6826014620014ff565b620002b2919062001519565b600955612710620002c5826005620014ff565b620002d1919062001519565b6006556103e8620002e4826005620014ff565b620002f0919062001519565b6007556010859055601184905562000309848662001539565b600f556013839055601482905562000322828462001539565b601255600d8054610100600160a81b03191633610100810291909117909155600e80546001600160a01b0319169091179055620003736200036b6005546001600160a01b031690565b60016200053e565b620003803060016200053e565b6200038f61dead60016200053e565b600d54620003ad9061010090046001600160a01b031660016200053e565b620003cc620003c46005546001600160a01b031690565b600162000473565b620003d930600162000473565b620003e861dead600162000473565b600d54620004069061010090046001600160a01b0316600162000473565b620004123382620005e6565b505050505050620015ea565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004c15760405162461bcd60e51b815260206004820181905260248201525f8051602062003f1183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fee6ce3a11a74f9a94b8a0152fc219acc6645b25bc298e2cae8ec6a520bd83da991a35050565b6005546001600160a01b03163314620005885760405162461bcd60e51b815260206004820181905260248201525f8051602062003f118339815191526044820152606401620004b8565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f781d26db56cdaee11e2fce438cd1461fa45f059fcd5f02aa8e6b1e5716d8d465910160405180910390a25050565b6001600160a01b038216620006115760405163ec442f0560e01b81525f6004820152602401620004b8565b6200061e5f838362000622565b5050565b805f036200063c576200063783835f62000e64565b505050565b60085460ff161562000ac2576005546001600160a01b038481169116148015906200067557506005546001600160a01b03838116911614155b80156200068a57506001600160a01b03821615155b8015620006a257506001600160a01b03821661dead14155b8015620006b95750600554600160a01b900460ff16155b1562000ac257600e54600160a01b900460ff166200075d576001600160a01b0383165f9081526017602052604090205460ff16806200070f57506001600160a01b0382165f9081526017602052604090205460ff165b6200075d5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401620004b8565b600854610100900460ff16156200086f576005546001600160a01b03838116911614801590620007a157506080516001600160a01b0316826001600160a01b031614155b8015620007c2575060a0516001600160a01b0316826001600160a01b031614155b156200086f57325f908152600b602052604090205443116200085d5760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401620004b8565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526019602052604090205460ff168015620008af57506001600160a01b0382165f9081526018602052604090205460ff16155b156200098b57600a54811115620009185760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401620004b8565b6009546001600160a01b0383165f908152602081905260409020546200093f908362001539565b1115620009855760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004b8565b62000ac2565b6001600160a01b0382165f9081526019602052604090205460ff168015620009cb57506001600160a01b0383165f9081526018602052604090205460ff16155b1562000a3557600a54811115620009855760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401620004b8565b6001600160a01b0382165f9081526018602052604090205460ff1662000ac2576009546001600160a01b0383165f9081526020819052604090205462000a7c908362001539565b111562000ac25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004b8565b305f908152602081905260409020546006548110801590819062000aef5750600554600160a81b900460ff165b801562000b065750600554600160a01b900460ff16155b801562000b2b57506001600160a01b0385165f9081526019602052604090205460ff16155b801562000b5057506001600160a01b0385165f9081526017602052604090205460ff16155b801562000b7557506001600160a01b0384165f9081526017602052604090205460ff16155b1562000ba6576005805460ff60a01b1916600160a01b17905562000b9862000f93565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b90920482161591168062000bf357506001600160a01b0385165f9081526017602052604090205460ff165b1562000bfc57505f5b6001600160a01b0386165f9081526017602052604090205460ff16158062000c3c57506001600160a01b0385165f9081526017602052604090205460ff16155b1562000cac576001600160a01b0386165f908152600c602052604090205460ff161562000cac5760405162461bcd60e51b815260206004820152601660248201527f4164647265737320697320626c61636b6c6973746564000000000000000000006044820152606401620004b8565b5f811562000e4e576001600160a01b0386165f9081526019602052604090205460ff16801562000cdd57505f601254115b1562000d765760125462000d029060649062000cfb908890620010da565b90620010f0565b90506012546014548262000d179190620014ff565b62000d23919062001519565b60165f82825462000d35919062001539565b909155505060125460135462000d4c9083620014ff565b62000d58919062001519565b60155f82825462000d6a919062001539565b9091555062000e2b9050565b6001600160a01b0387165f9081526019602052604090205460ff16801562000d9f57505f600f54115b1562000e2b57600f5462000dbd9060649062000cfb908890620010da565b9050600f546011548262000dd29190620014ff565b62000dde919062001519565b60165f82825462000df0919062001539565b9091555050600f5460105462000e079083620014ff565b62000e13919062001519565b60155f82825462000e25919062001539565b90915550505b801562000e3f5762000e3f87308362000e64565b62000e4b81866200154f565b94505b62000e5b87878762000e64565b50505050505050565b6001600160a01b03831662000e92578060025f82825462000e86919062001539565b9091555062000f049050565b6001600160a01b0383165f908152602081905260409020548181101562000ee65760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620004b8565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821662000f225760028054829003905562000f40565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000f8691815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f60165460155462000fb7919062001539565b90505f82158062000fc6575081155b1562000fd157505050565b60075483111562000fe25760075492505b4762000fee84620010fd565b5f62000ffb47836200126e565b90505f6200101a8562000cfb60165485620010da60201b90919060201c565b5f60158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d805f811462001071576040519150601f19603f3d011682016040523d82523d5f602084013e62001076565b606091505b5050600d5460405191955061010090046001600160a01b03169047905f81818185875af1925050503d805f8114620010ca576040519150601f19603f3d011682016040523d82523d5f602084013e620010cf565b606091505b505050505050505050565b5f620010e78284620014ff565b90505b92915050565b5f620010e7828462001519565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811062001133576200113362001565565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001192573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620011b89190620014bc565b81600181518110620011ce57620011ce62001565565b60200260200101906001600160a01b031690816001600160a01b0316815250506200120330608051846200127b60201b60201c565b6080516001600160a01b031663791ac947835f8430426040518663ffffffff1660e01b81526004016200123b95949392919062001579565b5f604051808303815f87803b15801562001253575f80fd5b505af115801562001266573d5f803e3d5ffd5b505050505050565b5f620010e782846200154f565b6200063783838360016001600160a01b038416620012af5760405163e602df0560e01b81525f6004820152602401620004b8565b6001600160a01b038316620012da57604051634a1406b160e11b81525f6004820152602401620004b8565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156200135757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200134e91815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200138657607f821691505b602082108103620013a557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000637575f81815260208120601f850160051c81016020861015620013d35750805b601f850160051c820191505b818110156200126657828155600101620013df565b81516001600160401b038111156200141057620014106200135d565b620014288162001421845462001371565b84620013ab565b602080601f8311600181146200145e575f8415620014465750858301515b5f19600386901b1c1916600185901b17855562001266565b5f85815260208120601f198616915b828110156200148e578886015182559484019460019091019084016200146d565b5085821015620014ac57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620014cd575f80fd5b81516001600160a01b0381168114620014e4575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620010ea57620010ea620014eb565b5f826200153457634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620010ea57620010ea620014eb565b81810381811115620010ea57620010ea620014eb565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015620015c95784516001600160a01b031683529383019391830191600101620015a2565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a0516128db620016365f395f81816109cb015281816110900152611a2401525f81816103fd015281816119e60152818161237e01528181612435015261247101526128db5ff3fe60806040526004361061035e575f3560e01c8063830804c9116101bd578063b6332002116100f2578063dbac26e911610092578063de78e78a1161006d578063de78e78a1461099a578063f242ab41146109ba578063f2fde38b146109ed578063f799b2c814610a0c575f80fd5b8063dbac26e91461092e578063dcbc1b561461095c578063dd62ed3e1461097b575f80fd5b8063c0246668116100cd578063c0246668146108c7578063c463b995146108e6578063d6bb9612146108fa578063d6dc84cc14610919575f80fd5b8063b63320021461087a578063bbd2f21a14610893578063beb08ab9146108a8575f80fd5b80639a7a23d61161015d578063a457c2d711610138578063a457c2d7146107ef578063a9059cbb1461080e578063b0249cc61461082d578063b2d8f2081461085b575f80fd5b80639a7a23d61461079c5780639b77884d146107bb5780639fd8234e146107d0575f80fd5b80638fbef097116101985780638fbef0971461073f5780639125ff841461075e57806395d89b41146107735780639a6c614e14610787575f80fd5b8063830804c9146106ee5780638d1942a7146107035780638da5cb5b14610722575f80fd5b806343278c611161029357806370a0823111610233578063727fd3581161020e578063727fd358146106905780637437681e146106a55780637e7e5acc146106ba578063809d458d146106cf575f80fd5b806370a0823114610629578063715018a61461065d5780637192762814610671575f80fd5b80634fbee1931161026e5780634fbee193146105a657806359a945e9146105dd57806365954704146105f15780636c53c8f714610610575f80fd5b806343278c611461054d5780634626402b1461056257806348b98ef514610586575f80fd5b806318160ddd116102fe57806323b872dd116102d957806323b872dd146104d5578063313ce567146104f4578063395093511461050f5780633b7b6a101461052e575f80fd5b806318160ddd146104845780631a2953fe14610498578063203e727e146104b6575f80fd5b806306fdde031161033957806306fdde03146103cb5780630758d924146103ec578063095ea7b31461043757806311aa0ee514610456575f80fd5b806303a88e801461036957806303a928eb1461039257806304019c14146103a8575f80fd5b3661036557005b5f80fd5b348015610374575f80fd5b5061037d610a21565b60405190151581526020015b60405180910390f35b34801561039d575f80fd5b506103a6610a67565b005b3480156103b3575f80fd5b506103bd60165481565b604051908152602001610389565b3480156103d6575f80fd5b506103df610a9d565b60405161038991906124ea565b3480156103f7575f80fd5b5061041f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610389565b348015610442575f80fd5b5061037d610451366004612549565b610b2d565b348015610461575f80fd5b5061037d610470366004612573565b60186020525f908152604090205460ff1681565b34801561048f575f80fd5b506002546103bd565b3480156104a3575f80fd5b5060085461037d90610100900460ff1681565b3480156104c1575f80fd5b506103a66104d036600461258e565b610b46565b3480156104e0575f80fd5b5061037d6104ef3660046125a5565b610be7565b3480156104ff575f80fd5b5060405160128152602001610389565b34801561051a575f80fd5b5061037d610529366004612549565b610c0a565b348015610539575f80fd5b506103a661054836600461258e565b610c2b565b348015610558575f80fd5b506103bd60065481565b34801561056d575f80fd5b50600d5461041f9061010090046001600160a01b031681565b348015610591575f80fd5b5060055461037d90600160a81b900460ff1681565b3480156105b1575f80fd5b5061037d6105c0366004612573565b6001600160a01b03165f9081526017602052604090205460ff1690565b3480156105e8575f80fd5b506103a6610cd7565b3480156105fc575f80fd5b506103a661060b3660046125f2565b610d29565b34801561061b575f80fd5b50600d5461037d9060ff1681565b348015610634575f80fd5b506103bd610643366004612573565b6001600160a01b03165f9081526020819052604090205490565b348015610668575f80fd5b506103a6610d71565b34801561067c575f80fd5b506103a661068b366004612573565b610da6565b34801561069b575f80fd5b506103bd60155481565b3480156106b0575f80fd5b506103bd600a5481565b3480156106c5575f80fd5b506103bd600f5481565b3480156106da575f80fd5b506103a66106e9366004612573565b610e2c565b3480156106f9575f80fd5b506103bd60075481565b34801561070e575f80fd5b5061037d61071d36600461258e565b610ebd565b34801561072d575f80fd5b506005546001600160a01b031661041f565b34801561074a575f80fd5b506103a661075936600461260b565b610f6f565b348015610769575f80fd5b506103bd60135481565b34801561077e575f80fd5b506103df611055565b348015610792575f80fd5b506103bd60095481565b3480156107a7575f80fd5b506103a66107b6366004612688565b611064565b3480156107c6575f80fd5b506103bd60115481565b3480156107db575f80fd5b506103a66107ea3660046126bb565b61112f565b3480156107fa575f80fd5b5061037d610809366004612549565b6111c2565b348015610819575f80fd5b5061037d610828366004612549565b611218565b348015610838575f80fd5b5061037d610847366004612573565b60196020525f908152604090205460ff1681565b348015610866575f80fd5b506103a66108753660046126bb565b611225565b348015610885575f80fd5b5060085461037d9060ff1681565b34801561089e575f80fd5b506103bd60105481565b3480156108b3575f80fd5b50600e5461041f906001600160a01b031681565b3480156108d2575f80fd5b506103a66108e1366004612688565b6112b8565b3480156108f1575f80fd5b5061037d611340565b348015610905575f80fd5b5061037d61091436600461258e565b61137c565b348015610924575f80fd5b506103bd60125481565b348015610939575f80fd5b5061037d610948366004612573565b600c6020525f908152604090205460ff1681565b348015610967575f80fd5b506103a6610976366004612688565b61153e565b348015610986575f80fd5b506103bd6109953660046126db565b611592565b3480156109a5575f80fd5b50600e5461037d90600160a01b900460ff1681565b3480156109c5575f80fd5b5061041f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156109f8575f80fd5b506103a6610a07366004612573565b6115bc565b348015610a17575f80fd5b506103bd60145481565b6005545f906001600160a01b03163314610a565760405162461bcd60e51b8152600401610a4d90612712565b60405180910390fd5b506008805461ff0019169055600190565b6005546001600160a01b03163314610a915760405162461bcd60e51b8152600401610a4d90612712565b600d805460ff19169055565b606060038054610aac90612747565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad890612747565b8015610b235780601f10610afa57610100808354040283529160200191610b23565b820191905f5260205f20905b815481529060010190602001808311610b0657829003601f168201915b5050505050905090565b5f33610b3a818585611657565b60019150505b92915050565b6005546001600160a01b03163314610b705760405162461bcd60e51b8152600401610a4d90612712565b6002811015610bc15760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610a4d565b6103e8610bcd60025490565b610bd79083612793565b610be191906127aa565b600a5550565b5f33610bf4858285611669565b610bff8585856116c6565b506001949350505050565b5f33610b3a818585610c1c8383611592565b610c2691906127c9565b611657565b6005546001600160a01b03163314610c555760405162461bcd60e51b8152600401610a4d90612712565b6005811015610cb15760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d6178486f6c64206c6f776572207468616e20302e604482015261352560f01b6064820152608401610a4d565b6103e8610cbd60025490565b610cc79083612793565b610cd191906127aa565b60095550565b6005546001600160a01b03163314610d015760405162461bcd60e51b8152600401610a4d90612712565b600e805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610d535760405162461bcd60e51b8152600401610a4d90612712565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b03163314610d9b5760405162461bcd60e51b8152600401610a4d90612712565b610da45f611723565b565b6005546001600160a01b03163314610dd05760405162461bcd60e51b8152600401610a4d90612712565b600e546040516001600160a01b03918216918316907fd0bdd1bf92049384d44f81d258f51a39b26cfc1d256348efb3b109fd8db72711905f90a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610a4d90612712565b600d546040516001600160a01b036101009092048216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f635905f90a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005545f906001600160a01b03163314610ee95760405162461bcd60e51b8152600401610a4d90612712565b600654821015610f615760405162461bcd60e51b815260206004820152603a60248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f206d696e42616c616e6365466f72436f6e747261637453656c6c0000000000006064820152608401610a4d565b50600781905560015b919050565b6005546001600160a01b03163314610f995760405162461bcd60e51b8152600401610a4d90612712565b600d5460ff16610fe15760405162461bcd60e51b8152602060048201526013602482015272109b1858dadb1a5cdd081a5cc81b1bd8dad959606a1b6044820152606401610a4d565b5f5b8281101561104f5781600c5f868685818110611001576110016127dc565b90506020020160208101906110169190612573565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580611047816127f0565b915050610fe3565b50505050565b606060048054610aac90612747565b6005546001600160a01b0316331461108e5760405162461bcd60e51b8152600401610a4d90612712565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036111215760405162461bcd60e51b815260206004820152602960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526834b9a0a6a6a830b4b960b91b6064820152608401610a4d565b61112b8282611774565b5050565b6005546001600160a01b031633146111595760405162461bcd60e51b8152600401610a4d90612712565b6013829055601481905561116d81836127c9565b6012819055600c101561112b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a4d565b5f33816111cf8286611592565b90508381101561120b57604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a4d565b610bff8286868403611657565b5f33610b3a8185856116c6565b6005546001600160a01b0316331461124f5760405162461bcd60e51b8152600401610a4d90612712565b6010829055601181905561126381836127c9565b600f819055600c101561112b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a4d565b6005546001600160a01b031633146112e25760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f781d26db56cdaee11e2fce438cd1461fa45f059fcd5f02aa8e6b1e5716d8d465910160405180910390a25050565b6005545f906001600160a01b0316331461136c5760405162461bcd60e51b8152600401610a4d90612712565b506008805460ff19169055600190565b6005545f906001600160a01b031633146113a85760405162461bcd60e51b8152600401610a4d90612712565b620186a06113b560025490565b6113bf91906127aa565b82101561142c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a4d565b620186a061143960025490565b611445906101f4612793565b61144f91906127aa565b8211156114bb5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a4d565b600754821115611535576040805162461bcd60e51b81526020600482015260248101919091527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e206d6178416d6f756e74546f6b656e73466f72436f6e747261637453656c6c6064820152608401610a4d565b50600655600190565b6005546001600160a01b031633146115685760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146115e65760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b03811661164b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4d565b61165481611723565b50565b61166483838360016117c7565b505050565b5f6116748484611592565b90505f19811461104f57818110156116b857604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a4d565b61104f84848484035f6117c7565b6001600160a01b0383166116ef57604051634b637e8f60e11b81525f6004820152602401610a4d565b6001600160a01b0382166117185760405163ec442f0560e01b81525f6004820152602401610a4d565b611664838383611899565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fee6ce3a11a74f9a94b8a0152fc219acc6645b25bc298e2cae8ec6a520bd83da991a35050565b6001600160a01b0384166117f05760405163e602df0560e01b81525f6004820152602401610a4d565b6001600160a01b03831661181957604051634a1406b160e11b81525f6004820152602401610a4d565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561104f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161188b91815260200190565b60405180910390a350505050565b805f036118ab5761166483835f6120af565b60085460ff1615611d44576005546001600160a01b038481169116148015906118e257506005546001600160a01b03838116911614155b80156118f657506001600160a01b03821615155b801561190d57506001600160a01b03821661dead14155b80156119235750600554600160a01b900460ff16155b15611d4457600e54600160a01b900460ff166119bb576001600160a01b0383165f9081526017602052604090205460ff168061197657506001600160a01b0382165f9081526017602052604090205460ff165b6119bb5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a4d565b600854610100900460ff1615611b03576005546001600160a01b03838116911614801590611a1b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611a5957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611b0357325f908152600b60205260409020544311611af15760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a4d565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526019602052604090205460ff168015611b4257506001600160a01b0382165f9081526018602052604090205460ff16155b15611c1657600a54811115611ba85760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610a4d565b6009546001600160a01b0383165f90815260208190526040902054611bcd90836127c9565b1115611c115760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4d565b611d44565b6001600160a01b0382165f9081526019602052604090205460ff168015611c5557506001600160a01b0383165f9081526018602052604090205460ff16155b15611cbc57600a54811115611c115760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610a4d565b6001600160a01b0382165f9081526018602052604090205460ff16611d44576009546001600160a01b0383165f90815260208190526040902054611d0090836127c9565b1115611d445760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4d565b305f9081526020819052604090205460065481108015908190611d705750600554600160a81b900460ff165b8015611d865750600554600160a01b900460ff16155b8015611daa57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611dce57506001600160a01b0385165f9081526017602052604090205460ff16155b8015611df257506001600160a01b0384165f9081526017602052604090205460ff16155b15611e20576005805460ff60a01b1916600160a01b179055611e126121d5565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b909204821615911680611e6c57506001600160a01b0385165f9081526017602052604090205460ff165b15611e7457505f5b6001600160a01b0386165f9081526017602052604090205460ff161580611eb357506001600160a01b0385165f9081526017602052604090205460ff16155b15611f19576001600160a01b0386165f908152600c602052604090205460ff1615611f195760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dadb1a5cdd195960521b6044820152606401610a4d565b5f811561209b576001600160a01b0386165f9081526019602052604090205460ff168015611f4857505f601254115b15611fd457611f6d6064611f676012548861230c90919063ffffffff16565b9061231e565b905060125460145482611f809190612793565b611f8a91906127aa565b60165f828254611f9a91906127c9565b9091555050601254601354611faf9083612793565b611fb991906127aa565b60155f828254611fc991906127c9565b9091555061207d9050565b6001600160a01b0387165f9081526019602052604090205460ff168015611ffc57505f600f54115b1561207d5761201b6064611f67600f548861230c90919063ffffffff16565b9050600f546011548261202e9190612793565b61203891906127aa565b60165f82825461204891906127c9565b9091555050600f5460105461205d9083612793565b61206791906127aa565b60155f82825461207791906127c9565b90915550505b801561208e5761208e8730836120af565b6120988186612808565b94505b6120a68787876120af565b50505050505050565b6001600160a01b0383166120d9578060025f8282546120ce91906127c9565b909155506121499050565b6001600160a01b0383165f908152602081905260409020548181101561212b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a4d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661216557600280548290039055612183565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121c891815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f6016546015546121f791906127c9565b90505f821580612205575081155b1561220f57505050565b60075483111561221f5760075492505b4761222984612329565b5f61223447836124df565b90505f61225085611f676016548561230c90919063ffffffff16565b5f60158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d805f81146122a5576040519150601f19603f3d011682016040523d82523d5f602084013e6122aa565b606091505b5050600d5460405191955061010090046001600160a01b03169047905f81818185875af1925050503d805f81146122fc576040519150601f19603f3d011682016040523d82523d5f602084013e612301565b606091505b505050505050505050565b5f6123178284612793565b9392505050565b5f61231782846127aa565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061235c5761235c6127dc565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123fc919061281b565b8160018151811061240f5761240f6127dc565b60200260200101906001600160a01b031690816001600160a01b03168152505061245a307f000000000000000000000000000000000000000000000000000000000000000084611657565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906124ae9085905f90869030904290600401612836565b5f604051808303815f87803b1580156124c5575f80fd5b505af11580156124d7573d5f803e3d5ffd5b505050505050565b5f6123178284612808565b5f6020808352835180828501525f5b81811015612515578581018301518582016040015282016124f9565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611654575f80fd5b5f806040838503121561255a575f80fd5b823561256581612535565b946020939093013593505050565b5f60208284031215612583575f80fd5b813561231781612535565b5f6020828403121561259e575f80fd5b5035919050565b5f805f606084860312156125b7575f80fd5b83356125c281612535565b925060208401356125d281612535565b929592945050506040919091013590565b80358015158114610f6a575f80fd5b5f60208284031215612602575f80fd5b612317826125e3565b5f805f6040848603121561261d575f80fd5b833567ffffffffffffffff80821115612634575f80fd5b818601915086601f830112612647575f80fd5b813581811115612655575f80fd5b8760208260051b8501011115612669575f80fd5b60209283019550935061267f91860190506125e3565b90509250925092565b5f8060408385031215612699575f80fd5b82356126a481612535565b91506126b2602084016125e3565b90509250929050565b5f80604083850312156126cc575f80fd5b50508035926020909101359150565b5f80604083850312156126ec575f80fd5b82356126f781612535565b9150602083013561270781612535565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061275b57607f821691505b60208210810361277957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b4057610b4061277f565b5f826127c457634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b4057610b4061277f565b634e487b7160e01b5f52603260045260245ffd5b5f600182016128015761280161277f565b5060010190565b81810381811115610b4057610b4061277f565b5f6020828403121561282b575f80fd5b815161231781612535565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156128845784516001600160a01b03168352938301939183019160010161285f565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ed22a93dbeabe3e949f0c1b1e77f093531651469afe681bdd1cd249aa615b57e64736f6c634300081500334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061035e575f3560e01c8063830804c9116101bd578063b6332002116100f2578063dbac26e911610092578063de78e78a1161006d578063de78e78a1461099a578063f242ab41146109ba578063f2fde38b146109ed578063f799b2c814610a0c575f80fd5b8063dbac26e91461092e578063dcbc1b561461095c578063dd62ed3e1461097b575f80fd5b8063c0246668116100cd578063c0246668146108c7578063c463b995146108e6578063d6bb9612146108fa578063d6dc84cc14610919575f80fd5b8063b63320021461087a578063bbd2f21a14610893578063beb08ab9146108a8575f80fd5b80639a7a23d61161015d578063a457c2d711610138578063a457c2d7146107ef578063a9059cbb1461080e578063b0249cc61461082d578063b2d8f2081461085b575f80fd5b80639a7a23d61461079c5780639b77884d146107bb5780639fd8234e146107d0575f80fd5b80638fbef097116101985780638fbef0971461073f5780639125ff841461075e57806395d89b41146107735780639a6c614e14610787575f80fd5b8063830804c9146106ee5780638d1942a7146107035780638da5cb5b14610722575f80fd5b806343278c611161029357806370a0823111610233578063727fd3581161020e578063727fd358146106905780637437681e146106a55780637e7e5acc146106ba578063809d458d146106cf575f80fd5b806370a0823114610629578063715018a61461065d5780637192762814610671575f80fd5b80634fbee1931161026e5780634fbee193146105a657806359a945e9146105dd57806365954704146105f15780636c53c8f714610610575f80fd5b806343278c611461054d5780634626402b1461056257806348b98ef514610586575f80fd5b806318160ddd116102fe57806323b872dd116102d957806323b872dd146104d5578063313ce567146104f4578063395093511461050f5780633b7b6a101461052e575f80fd5b806318160ddd146104845780631a2953fe14610498578063203e727e146104b6575f80fd5b806306fdde031161033957806306fdde03146103cb5780630758d924146103ec578063095ea7b31461043757806311aa0ee514610456575f80fd5b806303a88e801461036957806303a928eb1461039257806304019c14146103a8575f80fd5b3661036557005b5f80fd5b348015610374575f80fd5b5061037d610a21565b60405190151581526020015b60405180910390f35b34801561039d575f80fd5b506103a6610a67565b005b3480156103b3575f80fd5b506103bd60165481565b604051908152602001610389565b3480156103d6575f80fd5b506103df610a9d565b60405161038991906124ea565b3480156103f7575f80fd5b5061041f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610389565b348015610442575f80fd5b5061037d610451366004612549565b610b2d565b348015610461575f80fd5b5061037d610470366004612573565b60186020525f908152604090205460ff1681565b34801561048f575f80fd5b506002546103bd565b3480156104a3575f80fd5b5060085461037d90610100900460ff1681565b3480156104c1575f80fd5b506103a66104d036600461258e565b610b46565b3480156104e0575f80fd5b5061037d6104ef3660046125a5565b610be7565b3480156104ff575f80fd5b5060405160128152602001610389565b34801561051a575f80fd5b5061037d610529366004612549565b610c0a565b348015610539575f80fd5b506103a661054836600461258e565b610c2b565b348015610558575f80fd5b506103bd60065481565b34801561056d575f80fd5b50600d5461041f9061010090046001600160a01b031681565b348015610591575f80fd5b5060055461037d90600160a81b900460ff1681565b3480156105b1575f80fd5b5061037d6105c0366004612573565b6001600160a01b03165f9081526017602052604090205460ff1690565b3480156105e8575f80fd5b506103a6610cd7565b3480156105fc575f80fd5b506103a661060b3660046125f2565b610d29565b34801561061b575f80fd5b50600d5461037d9060ff1681565b348015610634575f80fd5b506103bd610643366004612573565b6001600160a01b03165f9081526020819052604090205490565b348015610668575f80fd5b506103a6610d71565b34801561067c575f80fd5b506103a661068b366004612573565b610da6565b34801561069b575f80fd5b506103bd60155481565b3480156106b0575f80fd5b506103bd600a5481565b3480156106c5575f80fd5b506103bd600f5481565b3480156106da575f80fd5b506103a66106e9366004612573565b610e2c565b3480156106f9575f80fd5b506103bd60075481565b34801561070e575f80fd5b5061037d61071d36600461258e565b610ebd565b34801561072d575f80fd5b506005546001600160a01b031661041f565b34801561074a575f80fd5b506103a661075936600461260b565b610f6f565b348015610769575f80fd5b506103bd60135481565b34801561077e575f80fd5b506103df611055565b348015610792575f80fd5b506103bd60095481565b3480156107a7575f80fd5b506103a66107b6366004612688565b611064565b3480156107c6575f80fd5b506103bd60115481565b3480156107db575f80fd5b506103a66107ea3660046126bb565b61112f565b3480156107fa575f80fd5b5061037d610809366004612549565b6111c2565b348015610819575f80fd5b5061037d610828366004612549565b611218565b348015610838575f80fd5b5061037d610847366004612573565b60196020525f908152604090205460ff1681565b348015610866575f80fd5b506103a66108753660046126bb565b611225565b348015610885575f80fd5b5060085461037d9060ff1681565b34801561089e575f80fd5b506103bd60105481565b3480156108b3575f80fd5b50600e5461041f906001600160a01b031681565b3480156108d2575f80fd5b506103a66108e1366004612688565b6112b8565b3480156108f1575f80fd5b5061037d611340565b348015610905575f80fd5b5061037d61091436600461258e565b61137c565b348015610924575f80fd5b506103bd60125481565b348015610939575f80fd5b5061037d610948366004612573565b600c6020525f908152604090205460ff1681565b348015610967575f80fd5b506103a6610976366004612688565b61153e565b348015610986575f80fd5b506103bd6109953660046126db565b611592565b3480156109a5575f80fd5b50600e5461037d90600160a01b900460ff1681565b3480156109c5575f80fd5b5061041f7f0000000000000000000000003c48102bf559244797bab6aa468f405fd27b7d6181565b3480156109f8575f80fd5b506103a6610a07366004612573565b6115bc565b348015610a17575f80fd5b506103bd60145481565b6005545f906001600160a01b03163314610a565760405162461bcd60e51b8152600401610a4d90612712565b60405180910390fd5b506008805461ff0019169055600190565b6005546001600160a01b03163314610a915760405162461bcd60e51b8152600401610a4d90612712565b600d805460ff19169055565b606060038054610aac90612747565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad890612747565b8015610b235780601f10610afa57610100808354040283529160200191610b23565b820191905f5260205f20905b815481529060010190602001808311610b0657829003601f168201915b5050505050905090565b5f33610b3a818585611657565b60019150505b92915050565b6005546001600160a01b03163314610b705760405162461bcd60e51b8152600401610a4d90612712565b6002811015610bc15760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610a4d565b6103e8610bcd60025490565b610bd79083612793565b610be191906127aa565b600a5550565b5f33610bf4858285611669565b610bff8585856116c6565b506001949350505050565b5f33610b3a818585610c1c8383611592565b610c2691906127c9565b611657565b6005546001600160a01b03163314610c555760405162461bcd60e51b8152600401610a4d90612712565b6005811015610cb15760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d6178486f6c64206c6f776572207468616e20302e604482015261352560f01b6064820152608401610a4d565b6103e8610cbd60025490565b610cc79083612793565b610cd191906127aa565b60095550565b6005546001600160a01b03163314610d015760405162461bcd60e51b8152600401610a4d90612712565b600e805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610d535760405162461bcd60e51b8152600401610a4d90612712565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b03163314610d9b5760405162461bcd60e51b8152600401610a4d90612712565b610da45f611723565b565b6005546001600160a01b03163314610dd05760405162461bcd60e51b8152600401610a4d90612712565b600e546040516001600160a01b03918216918316907fd0bdd1bf92049384d44f81d258f51a39b26cfc1d256348efb3b109fd8db72711905f90a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610a4d90612712565b600d546040516001600160a01b036101009092048216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f635905f90a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005545f906001600160a01b03163314610ee95760405162461bcd60e51b8152600401610a4d90612712565b600654821015610f615760405162461bcd60e51b815260206004820152603a60248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f206d696e42616c616e6365466f72436f6e747261637453656c6c0000000000006064820152608401610a4d565b50600781905560015b919050565b6005546001600160a01b03163314610f995760405162461bcd60e51b8152600401610a4d90612712565b600d5460ff16610fe15760405162461bcd60e51b8152602060048201526013602482015272109b1858dadb1a5cdd081a5cc81b1bd8dad959606a1b6044820152606401610a4d565b5f5b8281101561104f5781600c5f868685818110611001576110016127dc565b90506020020160208101906110169190612573565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580611047816127f0565b915050610fe3565b50505050565b606060048054610aac90612747565b6005546001600160a01b0316331461108e5760405162461bcd60e51b8152600401610a4d90612712565b7f0000000000000000000000003c48102bf559244797bab6aa468f405fd27b7d616001600160a01b0316826001600160a01b0316036111215760405162461bcd60e51b815260206004820152602960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526834b9a0a6a6a830b4b960b91b6064820152608401610a4d565b61112b8282611774565b5050565b6005546001600160a01b031633146111595760405162461bcd60e51b8152600401610a4d90612712565b6013829055601481905561116d81836127c9565b6012819055600c101561112b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a4d565b5f33816111cf8286611592565b90508381101561120b57604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a4d565b610bff8286868403611657565b5f33610b3a8185856116c6565b6005546001600160a01b0316331461124f5760405162461bcd60e51b8152600401610a4d90612712565b6010829055601181905561126381836127c9565b600f819055600c101561112b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a4d565b6005546001600160a01b031633146112e25760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f781d26db56cdaee11e2fce438cd1461fa45f059fcd5f02aa8e6b1e5716d8d465910160405180910390a25050565b6005545f906001600160a01b0316331461136c5760405162461bcd60e51b8152600401610a4d90612712565b506008805460ff19169055600190565b6005545f906001600160a01b031633146113a85760405162461bcd60e51b8152600401610a4d90612712565b620186a06113b560025490565b6113bf91906127aa565b82101561142c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a4d565b620186a061143960025490565b611445906101f4612793565b61144f91906127aa565b8211156114bb5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a4d565b600754821115611535576040805162461bcd60e51b81526020600482015260248101919091527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e206d6178416d6f756e74546f6b656e73466f72436f6e747261637453656c6c6064820152608401610a4d565b50600655600190565b6005546001600160a01b031633146115685760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146115e65760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b03811661164b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4d565b61165481611723565b50565b61166483838360016117c7565b505050565b5f6116748484611592565b90505f19811461104f57818110156116b857604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a4d565b61104f84848484035f6117c7565b6001600160a01b0383166116ef57604051634b637e8f60e11b81525f6004820152602401610a4d565b6001600160a01b0382166117185760405163ec442f0560e01b81525f6004820152602401610a4d565b611664838383611899565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fee6ce3a11a74f9a94b8a0152fc219acc6645b25bc298e2cae8ec6a520bd83da991a35050565b6001600160a01b0384166117f05760405163e602df0560e01b81525f6004820152602401610a4d565b6001600160a01b03831661181957604051634a1406b160e11b81525f6004820152602401610a4d565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561104f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161188b91815260200190565b60405180910390a350505050565b805f036118ab5761166483835f6120af565b60085460ff1615611d44576005546001600160a01b038481169116148015906118e257506005546001600160a01b03838116911614155b80156118f657506001600160a01b03821615155b801561190d57506001600160a01b03821661dead14155b80156119235750600554600160a01b900460ff16155b15611d4457600e54600160a01b900460ff166119bb576001600160a01b0383165f9081526017602052604090205460ff168061197657506001600160a01b0382165f9081526017602052604090205460ff165b6119bb5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a4d565b600854610100900460ff1615611b03576005546001600160a01b03838116911614801590611a1b57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611a5957507f0000000000000000000000003c48102bf559244797bab6aa468f405fd27b7d616001600160a01b0316826001600160a01b031614155b15611b0357325f908152600b60205260409020544311611af15760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a4d565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526019602052604090205460ff168015611b4257506001600160a01b0382165f9081526018602052604090205460ff16155b15611c1657600a54811115611ba85760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610a4d565b6009546001600160a01b0383165f90815260208190526040902054611bcd90836127c9565b1115611c115760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4d565b611d44565b6001600160a01b0382165f9081526019602052604090205460ff168015611c5557506001600160a01b0383165f9081526018602052604090205460ff16155b15611cbc57600a54811115611c115760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610a4d565b6001600160a01b0382165f9081526018602052604090205460ff16611d44576009546001600160a01b0383165f90815260208190526040902054611d0090836127c9565b1115611d445760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4d565b305f9081526020819052604090205460065481108015908190611d705750600554600160a81b900460ff165b8015611d865750600554600160a01b900460ff16155b8015611daa57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611dce57506001600160a01b0385165f9081526017602052604090205460ff16155b8015611df257506001600160a01b0384165f9081526017602052604090205460ff16155b15611e20576005805460ff60a01b1916600160a01b179055611e126121d5565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b909204821615911680611e6c57506001600160a01b0385165f9081526017602052604090205460ff165b15611e7457505f5b6001600160a01b0386165f9081526017602052604090205460ff161580611eb357506001600160a01b0385165f9081526017602052604090205460ff16155b15611f19576001600160a01b0386165f908152600c602052604090205460ff1615611f195760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dadb1a5cdd195960521b6044820152606401610a4d565b5f811561209b576001600160a01b0386165f9081526019602052604090205460ff168015611f4857505f601254115b15611fd457611f6d6064611f676012548861230c90919063ffffffff16565b9061231e565b905060125460145482611f809190612793565b611f8a91906127aa565b60165f828254611f9a91906127c9565b9091555050601254601354611faf9083612793565b611fb991906127aa565b60155f828254611fc991906127c9565b9091555061207d9050565b6001600160a01b0387165f9081526019602052604090205460ff168015611ffc57505f600f54115b1561207d5761201b6064611f67600f548861230c90919063ffffffff16565b9050600f546011548261202e9190612793565b61203891906127aa565b60165f82825461204891906127c9565b9091555050600f5460105461205d9083612793565b61206791906127aa565b60155f82825461207791906127c9565b90915550505b801561208e5761208e8730836120af565b6120988186612808565b94505b6120a68787876120af565b50505050505050565b6001600160a01b0383166120d9578060025f8282546120ce91906127c9565b909155506121499050565b6001600160a01b0383165f908152602081905260409020548181101561212b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a4d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661216557600280548290039055612183565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121c891815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f6016546015546121f791906127c9565b90505f821580612205575081155b1561220f57505050565b60075483111561221f5760075492505b4761222984612329565b5f61223447836124df565b90505f61225085611f676016548561230c90919063ffffffff16565b5f60158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d805f81146122a5576040519150601f19603f3d011682016040523d82523d5f602084013e6122aa565b606091505b5050600d5460405191955061010090046001600160a01b03169047905f81818185875af1925050503d805f81146122fc576040519150601f19603f3d011682016040523d82523d5f602084013e612301565b606091505b505050505050505050565b5f6123178284612793565b9392505050565b5f61231782846127aa565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061235c5761235c6127dc565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123fc919061281b565b8160018151811061240f5761240f6127dc565b60200260200101906001600160a01b031690816001600160a01b03168152505061245a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611657565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906124ae9085905f90869030904290600401612836565b5f604051808303815f87803b1580156124c5575f80fd5b505af11580156124d7573d5f803e3d5ffd5b505050505050565b5f6123178284612808565b5f6020808352835180828501525f5b81811015612515578581018301518582016040015282016124f9565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611654575f80fd5b5f806040838503121561255a575f80fd5b823561256581612535565b946020939093013593505050565b5f60208284031215612583575f80fd5b813561231781612535565b5f6020828403121561259e575f80fd5b5035919050565b5f805f606084860312156125b7575f80fd5b83356125c281612535565b925060208401356125d281612535565b929592945050506040919091013590565b80358015158114610f6a575f80fd5b5f60208284031215612602575f80fd5b612317826125e3565b5f805f6040848603121561261d575f80fd5b833567ffffffffffffffff80821115612634575f80fd5b818601915086601f830112612647575f80fd5b813581811115612655575f80fd5b8760208260051b8501011115612669575f80fd5b60209283019550935061267f91860190506125e3565b90509250925092565b5f8060408385031215612699575f80fd5b82356126a481612535565b91506126b2602084016125e3565b90509250929050565b5f80604083850312156126cc575f80fd5b50508035926020909101359150565b5f80604083850312156126ec575f80fd5b82356126f781612535565b9150602083013561270781612535565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061275b57607f821691505b60208210810361277957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b4057610b4061277f565b5f826127c457634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b4057610b4061277f565b634e487b7160e01b5f52603260045260245ffd5b5f600182016128015761280161277f565b5060010190565b81810381811115610b4057610b4061277f565b5f6020828403121561282b575f80fd5b815161231781612535565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156128845784516001600160a01b03168352938301939183019160010161285f565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ed22a93dbeabe3e949f0c1b1e77f093531651469afe681bdd1cd249aa615b57e64736f6c63430008150033

Deployed Bytecode Sourcemap

26391:16333:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30893:130;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;30893:130:0;;;;;;;;36630:86;;;;;;;;;;;;;:::i;:::-;;27539:34;;;;;;;;;;;;;;;;;;;352:25:1;;;340:2;325:18;27539:34:0;206:177:1;12865:91:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26471:37::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1124:32:1;;;1106:51;;1094:2;1079:18;26471:37:0;941:222:1;15158:190:0;;;;;;;;;;-1:-1:-1;15158:190:0;;;;;:::i;:::-;;:::i;27717:51::-;;;;;;;;;;-1:-1:-1;27717:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;13967:99;;;;;;;;;;-1:-1:-1;14046:12:0;;13967:99;;26817:35;;;;;;;;;;-1:-1:-1;26817:35:0;;;;;;;;;;;32453:188;;;;;;;;;;-1:-1:-1;32453:188:0;;;;;:::i;:::-;;:::i;15926:249::-;;;;;;;;;;-1:-1:-1;15926:249:0;;;;;:::i;:::-;;:::i;13818:84::-;;;;;;;;;;-1:-1:-1;13818:84:0;;13892:2;2664:36:1;;2652:2;2637:18;13818:84:0;2522:184:1;16584:238:0;;;;;;;;;;-1:-1:-1;16584:238:0;;;;;:::i;:::-;;:::i;32766:193::-;;;;;;;;;;-1:-1:-1;32766:193:0;;;;;:::i;:::-;;:::i;26657:40::-;;;;;;;;;;;;;;;;27165:29;;;;;;;;;;-1:-1:-1;27165:29:0;;;;;;;-1:-1:-1;;;;;27165:29:0;;;26611:39;;;;;;;;;;-1:-1:-1;26611:39:0;;;;-1:-1:-1;;;26611:39:0;;;;;;36724:121;;;;;;;;;;-1:-1:-1;36724:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;36814:23:0;36790:4;36814:23;;;:14;:23;;;;;;;;;36724:121;30501:118;;;;;;;;;;;;;:::i;33412:113::-;;;;;;;;;;-1:-1:-1;33412:113:0;;;;;:::i;:::-;;:::i;27100:34::-;;;;;;;;;;-1:-1:-1;27100:34:0;;;;;;;;14129:118;;;;;;;;;;-1:-1:-1;14129:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14221:18:0;14194:7;14221:18;;;;;;;;;;;;14129:118;25026:103;;;;;;;;;;;;;:::i;35871:173::-;;;;;;;;;;-1:-1:-1;35871:173:0;;;;;:::i;:::-;;:::i;27497:35::-;;;;;;;;;;;;;;;;26888:20;;;;;;;;;;;;;;;;27280:27;;;;;;;;;;;;;;;;35548:217;;;;;;;;;;-1:-1:-1;35548:217:0;;;;;:::i;:::-;;:::i;26704:45::-;;;;;;;;;;;;;;;;31949:346;;;;;;;;;;-1:-1:-1;31949:346:0;;;;;:::i;:::-;;:::i;24375:87::-;;;;;;;;;;-1:-1:-1;24448:6:0;;-1:-1:-1;;;;;24448:6:0;24375:87;;36237:318;;;;;;;;;;-1:-1:-1;36237:318:0;;;;;:::i;:::-;;:::i;27422:30::-;;;;;;;;;;;;;;;;13075:95;;;;;;;;;;;;;:::i;26859:22::-;;;;;;;;;;;;;;;;34977:284;;;;;;;;;;-1:-1:-1;34977:284:0;;;;;:::i;:::-;;:::i;27350:28::-;;;;;;;;;;;;;;;;34174:327;;;;;;;;;;-1:-1:-1;34174:327:0;;;;;:::i;:::-;;:::i;17510:504::-;;;;;;;;;;-1:-1:-1;17510:504:0;;;;;:::i;:::-;;:::i;14452:182::-;;;;;;;;;;-1:-1:-1;14452:182:0;;;;;:::i;:::-;;:::i;27926:41::-;;;;;;;;;;-1:-1:-1;27926:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33689:320;;;;;;;;;;-1:-1:-1;33689:320:0;;;;;:::i;:::-;;:::i;26776:34::-;;;;;;;;;;-1:-1:-1;26776:34:0;;;;;;;;27314:29;;;;;;;;;;;;;;;;27201:28;;;;;;;;;;-1:-1:-1;27201:28:0;;;;-1:-1:-1;;;;;27201:28:0;;;34668:174;;;;;;;;;;-1:-1:-1;34668:174:0;;;;;:::i;:::-;;:::i;30694:128::-;;;;;;;;;;;;;:::i;31179:651::-;;;;;;;;;;-1:-1:-1;31179:651:0;;;;;:::i;:::-;;:::i;27387:28::-;;;;;;;;;;;;;;;;27050:43;;;;;;;;;;-1:-1:-1;27050:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33145:149;;;;;;;;;;-1:-1:-1;33145:149:0;;;;;:::i;:::-;;:::i;14697:142::-;;;;;;;;;;-1:-1:-1;14697:142:0;;;;;:::i;:::-;;:::i;27238:33::-;;;;;;;;;;-1:-1:-1;27238:33:0;;;;-1:-1:-1;;;27238:33:0;;;;;;26515:32;;;;;;;;;;;;;;;25284:238;;;;;;;;;;-1:-1:-1;25284:238:0;;;;;:::i;:::-;;:::i;27459:29::-;;;;;;;;;;;;;;;;30893:130;24448:6;;30952:4;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;30969:16:0::1;:24:::0;;-1:-1:-1;;30969:24:0::1;::::0;;:16:::1;30893:130:::0;:::o;36630:86::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;36685:15:::1;:23:::0;;-1:-1:-1;;36685:23:0::1;::::0;;36630:86::o;12865:91::-;12910:13;12943:5;12936:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12865:91;:::o;15158:190::-;15231:4;10034:10;15287:31;10034:10;15303:7;15312:5;15287:8;:31::i;:::-;15336:4;15329:11;;;15158:190;;;;;:::o;32453:188::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;32545:1:::1;32535:6;:11;;32527:56;;;::::0;-1:-1:-1;;;32527:56:0;;5877:2:1;32527:56:0::1;::::0;::::1;5859:21:1::0;;;5896:18;;;5889:30;5955:34;5935:18;;;5928:62;6007:18;;32527:56:0::1;5675:356:1::0;32527:56:0::1;32629:4;32612:13;14046:12:::0;;;13967:99;32612:13:::1;32603:22;::::0;:6;:22:::1;:::i;:::-;32602:31;;;;:::i;:::-;32594:5;:39:::0;-1:-1:-1;32453:188:0:o;15926:249::-;16013:4;10034:10;16071:37;16087:4;10034:10;16102:5;16071:15;:37::i;:::-;16119:26;16129:4;16135:2;16139:5;16119:9;:26::i;:::-;-1:-1:-1;16163:4:0;;15926:249;-1:-1:-1;;;;15926:249:0:o;16584:238::-;16672:4;10034:10;16728:64;10034:10;16744:7;16781:10;16753:25;10034:10;16744:7;16753:9;:25::i;:::-;:38;;;;:::i;:::-;16728:8;:64::i;32766:193::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;32859:1:::1;32849:6;:11;;32841:58;;;::::0;-1:-1:-1;;;32841:58:0;;6895:2:1;32841:58:0::1;::::0;::::1;6877:21:1::0;6934:2;6914:18;;;6907:30;6973:34;6953:18;;;6946:62;-1:-1:-1;;;7024:18:1;;;7017:32;7066:19;;32841:58:0::1;6693:398:1::0;32841:58:0::1;32947:4;32930:13;14046:12:::0;;;13967:99;32930:13:::1;32921:22;::::0;:6;:22:::1;:::i;:::-;32920:31;;;;:::i;:::-;32910:7;:41:::0;-1:-1:-1;32766:193:0:o;30501:118::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;30554:13:::1;:20:::0;;-1:-1:-1;;;;30554:20:0::1;-1:-1:-1::0;;;30554:20:0::1;::::0;;30585:19:::1;:26:::0;;-1:-1:-1;;;;30585:26:0::1;-1:-1:-1::0;;;30585:26:0::1;::::0;;30501:118::o;33412:113::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;33488:19:::1;:29:::0;;;::::1;;-1:-1:-1::0;;;33488:29:0::1;-1:-1:-1::0;;;;33488:29:0;;::::1;::::0;;;::::1;::::0;;33412:113::o;25026:103::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;25091:30:::1;25118:1;25091:18;:30::i;:::-;25026:103::o:0;35871:173::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;35986:13:::1;::::0;35954:46:::1;::::0;-1:-1:-1;;;;;35986:13:0;;::::1;::::0;35954:46;::::1;::::0;::::1;::::0;35986:13:::1;::::0;35954:46:::1;36011:13;:25:::0;;-1:-1:-1;;;;;;36011:25:0::1;-1:-1:-1::0;;;;;36011:25:0;;;::::1;::::0;;;::::1;::::0;;35871:173::o;35548:217::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;35697:14:::1;::::0;35656:56:::1;::::0;-1:-1:-1;;;;;35697:14:0::1;::::0;;::::1;::::0;::::1;::::0;35656:56;::::1;::::0;::::1;::::0;;;::::1;35723:14;:34:::0;;-1:-1:-1;;;;;35723:34:0;;::::1;;;-1:-1:-1::0;;;;;;35723:34:0;;::::1;::::0;;;::::1;::::0;;35548:217::o;31949:346::-;24448:6;;32049:4;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;32101:25:::1;;32088:9;:38;;32066:146;;;::::0;-1:-1:-1;;;32066:146:0;;7298:2:1;32066:146:0::1;::::0;::::1;7280:21:1::0;7337:2;7317:18;;;7310:30;7376:34;7356:18;;;7349:62;7447:28;7427:18;;;7420:56;7493:19;;32066:146:0::1;7096:422:1::0;32066:146:0::1;-1:-1:-1::0;32223:30:0::1;:42:::0;;;32283:4:::1;24666:1;31949:346:::0;;;:::o;36237:318::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;36383:15:::1;::::0;::::1;;36375:47;;;::::0;-1:-1:-1;;;36375:47:0;;7725:2:1;36375:47:0::1;::::0;::::1;7707:21:1::0;7764:2;7744:18;;;7737:30;-1:-1:-1;;;7783:18:1;;;7776:49;7842:18;;36375:47:0::1;7523:343:1::0;36375:47:0::1;36438:9;36433:115;36453:20:::0;;::::1;36433:115;;;36523:13;36495:11;:25;36507:9;;36517:1;36507:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36495:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;36495:25:0;:41;;-1:-1:-1;;36495:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36475:3;::::1;::::0;::::1;:::i;:::-;;;;36433:115;;;;36237:318:::0;;;:::o;13075:95::-;13122:13;13155:7;13148:14;;;;;:::i;34977:284::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;35123:7:::1;-1:-1:-1::0;;;;;35115:15:0::1;:4;-1:-1:-1::0;;;;;35115:15:0::1;::::0;35093:106:::1;;;::::0;-1:-1:-1;;;35093:106:0;;8345:2:1;35093:106:0::1;::::0;::::1;8327:21:1::0;8384:2;8364:18;;;8357:30;8423:34;8403:18;;;8396:62;-1:-1:-1;;;8474:18:1;;;8467:39;8523:19;;35093:106:0::1;8143:405:1::0;35093:106:0::1;35212:41;35241:4;35247:5;35212:28;:41::i;:::-;34977:284:::0;;:::o;34174:327::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;34293:15:::1;:30:::0;;;34334:14:::1;:28:::0;;;34389:32:::1;34351:11:::0;34311:12;34389:32:::1;:::i;:::-;34373:13;:48:::0;;;34457:2:::1;-1:-1:-1::0;34440:19:0::1;34432:61;;;::::0;-1:-1:-1;;;34432:61:0;;8755:2:1;34432:61:0::1;::::0;::::1;8737:21:1::0;8794:2;8774:18;;;8767:30;8833:31;8813:18;;;8806:59;8882:18;;34432:61:0::1;8553:353:1::0;17510:504:0;17605:4;10034:10;17605:4;17688:25;10034:10;17705:7;17688:9;:25::i;:::-;17661:52;;17747:17;17728:16;:36;17724:150;;;17788:74;;-1:-1:-1;;;17788:74:0;;-1:-1:-1;;;;;9131:32:1;;17788:74:0;;;9113:51:1;9180:18;;;9173:34;;;9223:18;;;9216:34;;;9086:18;;17788:74:0;8911:345:1;17724:150:0;17909:62;17918:5;17925:7;17953:17;17934:16;:36;17909:8;:62::i;14452:182::-;14521:4;10034:10;14577:27;10034:10;14594:2;14598:5;14577:9;:27::i;33689:320::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;33807:14:::1;:29:::0;;;33847:13:::1;:27:::0;;;33900:30:::1;33863:11:::0;33824:12;33900:30:::1;:::i;:::-;33885:12;:45:::0;;;33965:2:::1;-1:-1:-1::0;33949:18:0::1;33941:60;;;::::0;-1:-1:-1;;;33941:60:0;;8755:2:1;33941:60:0::1;::::0;::::1;8737:21:1::0;8794:2;8774:18;;;8767:30;8833:31;8813:18;;;8806:59;8882:18;;33941:60:0::1;8553:353:1::0;34668:174:0;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34753:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;;;:34;;-1:-1:-1;;34753:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34803:31;;154:41:1;;;34803:31:0::1;::::0;127:18:1;34803:31:0::1;;;;;;;34668:174:::0;;:::o;30694:128::-;24448:6;;30752:4;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;-1:-1:-1;30769:15:0::1;:23:::0;;-1:-1:-1;;30769:23:0::1;::::0;;;30694:128;:::o;31179:651::-;24448:6;;31273:4;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;31341:6:::1;31325:13;14046:12:::0;;;13967:99;31325:13:::1;:22;;;;:::i;:::-;31312:9;:35;;31290:138;;;::::0;-1:-1:-1;;;31290:138:0;;9463:2:1;31290:138:0::1;::::0;::::1;9445:21:1::0;9502:2;9482:18;;;9475:30;9541:34;9521:18;;;9514:62;-1:-1:-1;;;9592:18:1;;;9585:51;9653:19;;31290:138:0::1;9261:417:1::0;31290:138:0::1;31498:6;31481:13;14046:12:::0;;;13967:99;31481:13:::1;31475:19;::::0;:3:::1;:19;:::i;:::-;31474:30;;;;:::i;:::-;31461:9;:43;;31439:145;;;::::0;-1:-1:-1;;;31439:145:0;;9885:2:1;31439:145:0::1;::::0;::::1;9867:21:1::0;9924:2;9904:18;;;9897:30;9963:34;9943:18;;;9936:62;-1:-1:-1;;;10014:18:1;;;10007:50;10074:19;;31439:145:0::1;9683:416:1::0;31439:145:0::1;31630:30;;31617:9;:43;;31595:157;;;::::0;;-1:-1:-1;;;31595:157:0;;10306:2:1;31595:157:0::1;::::0;::::1;10288:21:1::0;10325:18;;;10318:30;;;;10384:34;10364:18;;;10357:62;10455:34;10435:18;;;10428:62;10507:19;;31595:157:0::1;10104:428:1::0;31595:157:0::1;-1:-1:-1::0;31763:25:0::1;:37:::0;31818:4:::1;::::0;31179:651::o;33145:149::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33252:27:0;;;::::1;;::::0;;;:19:::1;:27;::::0;;;;:34;;-1:-1:-1;;33252:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33145:149::o;14697:142::-;-1:-1:-1;;;;;14804:18:0;;;14777:7;14804:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14697:142::o;25284:238::-;24448:6;;-1:-1:-1;;;;;24448:6:0;10034:10;24595:23;24587:68;;;;-1:-1:-1;;;24587:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25387:22:0;::::1;25365:110;;;::::0;-1:-1:-1;;;25365:110:0;;10739:2:1;25365:110:0::1;::::0;::::1;10721:21:1::0;10778:2;10758:18;;;10751:30;10817:34;10797:18;;;10790:62;-1:-1:-1;;;10868:18:1;;;10861:36;10914:19;;25365:110:0::1;10537:402:1::0;25365:110:0::1;25486:28;25505:8;25486:18;:28::i;:::-;25284:238:::0;:::o;21707:138::-;21800:37;21809:5;21816:7;21825:5;21832:4;21800:8;:37::i;:::-;21707:138;;;:::o;23444:487::-;23544:24;23571:25;23581:5;23588:7;23571:9;:25::i;:::-;23544:52;;-1:-1:-1;;23611:16:0;:37;23607:317;;23688:5;23669:16;:24;23665:132;;;23721:60;;-1:-1:-1;;;23721:60:0;;-1:-1:-1;;;;;9131:32:1;;23721:60:0;;;9113:51:1;9180:18;;;9173:34;;;9223:18;;;9216:34;;;9086:18;;23721:60:0;8911:345:1;23665:132:0;23840:57;23849:5;23856:7;23884:5;23865:16;:24;23891:5;23840:8;:57::i;18399:308::-;-1:-1:-1;;;;;18483:18:0;;18479:88;;18525:30;;-1:-1:-1;;;18525:30:0;;18552:1;18525:30;;;1106:51:1;1079:18;;18525:30:0;941:222:1;18479:88:0;-1:-1:-1;;;;;18581:16:0;;18577:88;;18621:32;;-1:-1:-1;;;18621:32:0;;18650:1;18621:32;;;1106:51:1;1079:18;;18621:32:0;941:222:1;18577:88:0;18675:24;18683:4;18689:2;18693:5;18675:7;:24::i;25682:191::-;25775:6;;;-1:-1:-1;;;;;25792:17:0;;;-1:-1:-1;;;;;;25792:17:0;;;;;;;25825:40;;25775:6;;;25792:17;25775:6;;25825:40;;25756:16;;25825:40;25745:128;25682:191;:::o;35269:155::-;-1:-1:-1;;;;;35352:15:0;;;;;;:9;:15;;;;;;:23;;-1:-1:-1;;35352:23:0;;;;;;;;;;35393;;35352;;:15;35393:23;;;35269:155;;:::o;22712:443::-;-1:-1:-1;;;;;22825:19:0;;22821:91;;22868:32;;-1:-1:-1;;;22868:32:0;;22897:1;22868:32;;;1106:51:1;1079:18;;22868:32:0;941:222:1;22821:91:0;-1:-1:-1;;;;;22926:21:0;;22922:92;;22971:31;;-1:-1:-1;;;22971:31:0;;22999:1;22971:31;;;1106:51:1;1079:18;;22971:31:0;941:222:1;22922:92:0;-1:-1:-1;;;;;23024:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;23070:78;;;;23121:7;-1:-1:-1;;;;;23105:31:0;23114:5;-1:-1:-1;;;;;23105:31:0;;23130:5;23105:31;;;;352:25:1;;340:2;325:18;;206:177;23105:31:0;;;;;;;;22712:443;;;;:::o;36853:4297::-;36979:6;36989:1;36979:11;36975:91;;37007:26;37021:4;37027:2;37031:1;37007:13;:26::i;36975:91::-;37082:15;;;;37078:2240;;;24448:6;;-1:-1:-1;;;;;37136:15:0;;;24448:6;;37136:15;;;;:49;;-1:-1:-1;24448:6:0;;-1:-1:-1;;;;;37172:13:0;;;24448:6;;37172:13;;37136:49;:86;;;;-1:-1:-1;;;;;;37206:16:0;;;;37136:86;:128;;;;-1:-1:-1;;;;;;37243:21:0;;37257:6;37243:21;;37136:128;:168;;;;-1:-1:-1;37286:18:0;;-1:-1:-1;;;37286:18:0;;;;37285:19;37136:168;37114:2193;;;37344:13;;-1:-1:-1;;;37344:13:0;;;;37339:213;;-1:-1:-1;;;;;37416:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;37440:18:0;;;;;;:14;:18;;;;;;;;37416:42;37382:150;;;;-1:-1:-1;;;37382:150:0;;11146:2:1;37382:150:0;;;11128:21:1;11185:2;11165:18;;;11158:30;-1:-1:-1;;;11204:18:1;;;11197:52;11266:18;;37382:150:0;10944:346:1;37382:150:0;37708:16;;;;;;;37704:607;;;24448:6;;-1:-1:-1;;;;;37779:13:0;;;24448:6;;37779:13;;;;:66;;;37835:9;-1:-1:-1;;;;;37821:24:0;:2;-1:-1:-1;;;;;37821:24:0;;;37779:66;:117;;;;;37888:7;-1:-1:-1;;;;;37874:22:0;:2;-1:-1:-1;;;;;37874:22:0;;;37779:117;37749:543;;;38006:9;37985:31;;;;:20;:31;;;;;;38052:12;-1:-1:-1;37947:248:0;;;;-1:-1:-1;;;37947:248:0;;11497:2:1;37947:248:0;;;11479:21:1;11536:2;11516:18;;;11509:30;11575:34;11555:18;;;11548:62;11646:34;11626:18;;;11619:62;-1:-1:-1;;;11697:19:1;;;11690:38;11745:19;;37947:248:0;11295:475:1;37947:248:0;38243:9;38222:31;;;;:20;:31;;;;;38256:12;38222:46;;37749:543;-1:-1:-1;;;;;38363:15:0;;;;;;:9;:15;;;;;;;;:43;;;;-1:-1:-1;;;;;;38383:23:0;;;;;;:19;:23;;;;;;;;38382:24;38363:43;38359:933;;;38475:5;;38465:6;:15;;38431:139;;;;-1:-1:-1;;;38431:139:0;;11977:2:1;38431:139:0;;;11959:21:1;12016:2;11996:18;;;11989:30;12055:34;12035:18;;;12028:62;-1:-1:-1;;;12106:18:1;;;12099:36;12152:19;;38431:139:0;11775:402:1;38431:139:0;38653:7;;-1:-1:-1;;;;;14221:18:0;;14194:7;14221:18;;;;;;;;;;;38627:22;;:6;:22;:::i;:::-;:33;;38593:138;;;;-1:-1:-1;;;38593:138:0;;12384:2:1;38593:138:0;;;12366:21:1;12423:2;12403:18;;;12396:30;-1:-1:-1;;;12442:18:1;;;12435:49;12501:18;;38593:138:0;12182:343:1;38593:138:0;38359:933;;;-1:-1:-1;;;;;38829:13:0;;;;;;:9;:13;;;;;;;;:43;;;;-1:-1:-1;;;;;;38847:25:0;;;;;;:19;:25;;;;;;;;38846:26;38829:43;38803:489;;;38959:5;;38949:6;:15;;38915:140;;;;-1:-1:-1;;;38915:140:0;;12732:2:1;38915:140:0;;;12714:21:1;12771:2;12751:18;;;12744:30;12810:34;12790:18;;;12783:62;-1:-1:-1;;;12861:18:1;;;12854:37;12908:19;;38915:140:0;12530:403:1;38803:489:0;-1:-1:-1;;;;;39086:23:0;;;;;;:19;:23;;;;;;;;39081:211;;39194:7;;-1:-1:-1;;;;;14221:18:0;;14194:7;14221:18;;;;;;;;;;;39168:22;;:6;:22;:::i;:::-;:33;;39134:138;;;;-1:-1:-1;;;39134:138:0;;12384:2:1;39134:138:0;;;12366:21:1;12423:2;12403:18;;;12396:30;-1:-1:-1;;;12442:18:1;;;12435:49;12501:18;;39134:138:0;12182:343:1;39134:138:0;39379:4;39330:28;14221:18;;;;;;;;;;;39437:25;;39413:49;;;;;;;39493:43;;-1:-1:-1;39517:19:0;;-1:-1:-1;;;39517:19:0;;;;39493:43;:79;;;;-1:-1:-1;39554:18:0;;-1:-1:-1;;;39554:18:0;;;;39553:19;39493:79;:112;;;;-1:-1:-1;;;;;;39590:15:0;;;;;;:9;:15;;;;;;;;39589:16;39493:112;:150;;;;-1:-1:-1;;;;;;39623:20:0;;;;;;:14;:20;;;;;;;;39622:21;39493:150;:186;;;;-1:-1:-1;;;;;;39661:18:0;;;;;;:14;:18;;;;;;;;39660:19;39493:186;39475:338;;;39706:18;:25;;-1:-1:-1;;;;39706:25:0;-1:-1:-1;;;39706:25:0;;;39748:10;:8;:10::i;:::-;39775:18;:26;;-1:-1:-1;;;;39775:26:0;;;39475:338;39841:18;;-1:-1:-1;;;;;39961:20:0;;39825:12;39961:20;;;:14;:20;;;;;;39841:18;-1:-1:-1;;;39841:18:0;;;;;39840:19;;39961:20;;:42;;-1:-1:-1;;;;;;39985:18:0;;;;;;:14;:18;;;;;;;;39961:42;39957:90;;;-1:-1:-1;40030:5:0;39957:90;-1:-1:-1;;;;;40064:20:0;;;;;;:14;:20;;;;;;;;40063:21;;:44;;-1:-1:-1;;;;;;40089:18:0;;;;;;:14;:18;;;;;;;;40088:19;40063:44;40059:130;;;-1:-1:-1;;;;;40133:17:0;;;;;;:11;:17;;;;;;;;40132:18;40124:53;;;;-1:-1:-1;;;40124:53:0;;13140:2:1;40124:53:0;;;13122:21:1;13179:2;13159:18;;;13152:30;-1:-1:-1;;;13198:18:1;;;13191:52;13260:18;;40124:53:0;12938:346:1;40124:53:0;40201:12;40306:7;40302:797;;;-1:-1:-1;;;;;40358:13:0;;;;;;:9;:13;;;;;;;;:34;;;;;40391:1;40375:13;;:17;40358:34;40354:598;;;40420:34;40450:3;40420:25;40431:13;;40420:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;40413:41;;40522:13;;40504:14;;40497:4;:21;;;;:::i;:::-;40496:39;;;;:::i;:::-;40473:19;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;;40605:13:0;;40586:15;;40579:22;;:4;:22;:::i;:::-;40578:40;;;;:::i;:::-;40554:20;;:64;;;;;;;:::i;:::-;;;;-1:-1:-1;40354:598:0;;-1:-1:-1;40354:598:0;;-1:-1:-1;;;;;40680:15:0;;;;;;:9;:15;;;;;;;;:35;;;;;40714:1;40699:12;;:16;40680:35;40676:276;;;40743:33;40772:3;40743:24;40754:12;;40743:6;:10;;:24;;;;:::i;:33::-;40736:40;;40843:12;;40826:13;;40819:4;:20;;;;:::i;:::-;40818:37;;;;:::i;:::-;40795:19;;:60;;;;;;;:::i;:::-;;;;-1:-1:-1;;40924:12:0;;40906:14;;40899:21;;:4;:21;:::i;:::-;40898:38;;;;:::i;:::-;40874:20;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;;40676:276:0;40972:8;;40968:89;;41001:40;41015:4;41029;41036;41001:13;:40::i;:::-;41073:14;41083:4;41073:14;;:::i;:::-;;;40302:797;41111:31;41125:4;41131:2;41135:6;41111:13;:31::i;:::-;36964:4186;;;;36853:4297;;;:::o;19023:1135::-;-1:-1:-1;;;;;19113:18:0;;19109:552;;19267:5;19251:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;19109:552:0;;-1:-1:-1;19109:552:0;;-1:-1:-1;;;;;19327:15:0;;19305:19;19327:15;;;;;;;;;;;19361:19;;;19357:117;;;19408:50;;-1:-1:-1;;;19408:50:0;;-1:-1:-1;;;;;9131:32:1;;19408:50:0;;;9113:51:1;9180:18;;;9173:34;;;9223:18;;;9216:34;;;9086:18;;19408:50:0;8911:345:1;19357:117:0;-1:-1:-1;;;;;19597:15:0;;:9;:15;;;;;;;;;;19615:19;;;;19597:37;;19109:552;-1:-1:-1;;;;;19677:16:0;;19673:435;;19843:12;:21;;;;;;;19673:435;;;-1:-1:-1;;;;;20059:13:0;;:9;:13;;;;;;;;;;:22;;;;;;19673:435;20140:2;-1:-1:-1;;;;;20125:25:0;20134:4;-1:-1:-1;;;;;20125:25:0;;20144:5;20125:25;;;;352::1;;340:2;325:18;;206:177;20125:25:0;;;;;;;;19023:1135;;;:::o;41737:984::-;41820:4;41776:23;14221:18;;;;;;;;;;;41776:50;;41837:25;41888:19;;41865:20;;:42;;;;:::i;:::-;41837:70;-1:-1:-1;41918:12:0;41947:20;;;:46;;-1:-1:-1;41971:22:0;;41947:46;41943:85;;;42010:7;;;41737:984::o;41943:85::-;42062:30;;42044:15;:48;42040:129;;;42127:30;;42109:48;;42040:129;42209:21;42243:33;42260:15;42243:16;:33::i;:::-;42289:18;42310:44;:21;42336:17;42310:25;:44::i;:::-;42289:65;;42367:21;42391:58;42431:17;42391:35;42406:19;;42391:10;:14;;:35;;;;:::i;:58::-;42485:1;42462:20;:24;;;42497:19;:23;;;42555:13;;42547:53;;42367:82;;-1:-1:-1;;;;;;42555:13:0;;42367:82;;42547:53;42485:1;42547:53;42367:82;42555:13;42547:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42635:14:0;;42627:86;;42533:67;;-1:-1:-1;42635:14:0;;;-1:-1:-1;;;;;42635:14:0;;42677:21;;42627:86;;;;42677:21;42635:14;42627:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;41737:984:0:o;3421:98::-;3479:7;3506:5;3510:1;3506;:5;:::i;:::-;3499:12;3421:98;-1:-1:-1;;;3421:98:0:o;3820:::-;3878:7;3905:5;3909:1;3905;:5;:::i;41158:571::-;41308:16;;;41322:1;41308:16;;;;;;;;41284:21;;41308:16;;;;;;;;;;-1:-1:-1;41308:16:0;41284:40;;41353:4;41335;41340:1;41335:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41335:23:0;;;-1:-1:-1;;;;;41335:23:0;;;;;41379:9;-1:-1:-1;;;;;41379:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41369:4;41374:1;41369:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;41369:26:0;;;-1:-1:-1;;;;;41369:26:0;;;;;41408:56;41425:4;41440:9;41452:11;41408:8;:56::i;:::-;41503:218;;-1:-1:-1;;;41503:218:0;;-1:-1:-1;;;;;41503:9:0;:60;;;;:218;;41578:11;;41604:1;;41648:4;;41675;;41695:15;;41503:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41213:516;41158:571;:::o;3064:98::-;3122:7;3149:5;3153:1;3149;:5;:::i;388:548:1:-;500:4;529:2;558;547:9;540:21;590:6;584:13;633:6;628:2;617:9;613:18;606:34;658:1;668:140;682:6;679:1;676:13;668:140;;;777:14;;;773:23;;767:30;743:17;;;762:2;739:26;732:66;697:10;;668:140;;;672:3;857:1;852:2;843:6;832:9;828:22;824:31;817:42;927:2;920;916:7;911:2;903:6;899:15;895:29;884:9;880:45;876:54;868:62;;;;388:548;;;;:::o;1168:131::-;-1:-1:-1;;;;;1243:31:1;;1233:42;;1223:70;;1289:1;1286;1279:12;1304:315;1372:6;1380;1433:2;1421:9;1412:7;1408:23;1404:32;1401:52;;;1449:1;1446;1439:12;1401:52;1488:9;1475:23;1507:31;1532:5;1507:31;:::i;:::-;1557:5;1609:2;1594:18;;;;1581:32;;-1:-1:-1;;;1304:315:1:o;1624:247::-;1683:6;1736:2;1724:9;1715:7;1711:23;1707:32;1704:52;;;1752:1;1749;1742:12;1704:52;1791:9;1778:23;1810:31;1835:5;1810:31;:::i;1876:180::-;1935:6;1988:2;1976:9;1967:7;1963:23;1959:32;1956:52;;;2004:1;2001;1994:12;1956:52;-1:-1:-1;2027:23:1;;1876:180;-1:-1:-1;1876:180:1:o;2061:456::-;2138:6;2146;2154;2207:2;2195:9;2186:7;2182:23;2178:32;2175:52;;;2223:1;2220;2213:12;2175:52;2262:9;2249:23;2281:31;2306:5;2281:31;:::i;:::-;2331:5;-1:-1:-1;2388:2:1;2373:18;;2360:32;2401:33;2360:32;2401:33;:::i;:::-;2061:456;;2453:7;;-1:-1:-1;;;2507:2:1;2492:18;;;;2479:32;;2061:456::o;2919:160::-;2984:20;;3040:13;;3033:21;3023:32;;3013:60;;3069:1;3066;3059:12;3084:180;3140:6;3193:2;3181:9;3172:7;3168:23;3164:32;3161:52;;;3209:1;3206;3199:12;3161:52;3232:26;3248:9;3232:26;:::i;3269:689::-;3361:6;3369;3377;3430:2;3418:9;3409:7;3405:23;3401:32;3398:52;;;3446:1;3443;3436:12;3398:52;3486:9;3473:23;3515:18;3556:2;3548:6;3545:14;3542:34;;;3572:1;3569;3562:12;3542:34;3610:6;3599:9;3595:22;3585:32;;3655:7;3648:4;3644:2;3640:13;3636:27;3626:55;;3677:1;3674;3667:12;3626:55;3717:2;3704:16;3743:2;3735:6;3732:14;3729:34;;;3759:1;3756;3749:12;3729:34;3814:7;3807:4;3797:6;3794:1;3790:14;3786:2;3782:23;3778:34;3775:47;3772:67;;;3835:1;3832;3825:12;3772:67;3866:4;3858:13;;;;-1:-1:-1;3890:6:1;-1:-1:-1;3915:37:1;;3931:20;;;-1:-1:-1;3915:37:1;:::i;:::-;3905:47;;3269:689;;;;;:::o;3963:315::-;4028:6;4036;4089:2;4077:9;4068:7;4064:23;4060:32;4057:52;;;4105:1;4102;4095:12;4057:52;4144:9;4131:23;4163:31;4188:5;4163:31;:::i;:::-;4213:5;-1:-1:-1;4237:35:1;4268:2;4253:18;;4237:35;:::i;:::-;4227:45;;3963:315;;;;;:::o;4283:248::-;4351:6;4359;4412:2;4400:9;4391:7;4387:23;4383:32;4380:52;;;4428:1;4425;4418:12;4380:52;-1:-1:-1;;4451:23:1;;;4521:2;4506:18;;;4493:32;;-1:-1:-1;4283:248:1:o;4536:388::-;4604:6;4612;4665:2;4653:9;4644:7;4640:23;4636:32;4633:52;;;4681:1;4678;4671:12;4633:52;4720:9;4707:23;4739:31;4764:5;4739:31;:::i;:::-;4789:5;-1:-1:-1;4846:2:1;4831:18;;4818:32;4859:33;4818:32;4859:33;:::i;:::-;4911:7;4901:17;;;4536:388;;;;;:::o;4929:356::-;5131:2;5113:21;;;5150:18;;;5143:30;5209:34;5204:2;5189:18;;5182:62;5276:2;5261:18;;4929:356::o;5290:380::-;5369:1;5365:12;;;;5412;;;5433:61;;5487:4;5479:6;5475:17;5465:27;;5433:61;5540:2;5532:6;5529:14;5509:18;5506:38;5503:161;;5586:10;5581:3;5577:20;5574:1;5567:31;5621:4;5618:1;5611:15;5649:4;5646:1;5639:15;5503:161;;5290:380;;;:::o;6036:127::-;6097:10;6092:3;6088:20;6085:1;6078:31;6128:4;6125:1;6118:15;6152:4;6149:1;6142:15;6168:168;6241:9;;;6272;;6289:15;;;6283:22;;6269:37;6259:71;;6310:18;;:::i;6341:217::-;6381:1;6407;6397:132;;6451:10;6446:3;6442:20;6439:1;6432:31;6486:4;6483:1;6476:15;6514:4;6511:1;6504:15;6397:132;-1:-1:-1;6543:9:1;;6341:217::o;6563:125::-;6628:9;;;6649:10;;;6646:36;;;6662:18;;:::i;7871:127::-;7932:10;7927:3;7923:20;7920:1;7913:31;7963:4;7960:1;7953:15;7987:4;7984:1;7977:15;8003:135;8042:3;8063:17;;;8060:43;;8083:18;;:::i;:::-;-1:-1:-1;8130:1:1;8119:13;;8003:135::o;13289:128::-;13356:9;;;13377:11;;;13374:37;;;13391:18;;:::i;13764:251::-;13834:6;13887:2;13875:9;13866:7;13862:23;13858:32;13855:52;;;13903:1;13900;13893:12;13855:52;13935:9;13929:16;13954:31;13979:5;13954:31;:::i;14020:980::-;14282:4;14330:3;14319:9;14315:19;14361:6;14350:9;14343:25;14387:2;14425:6;14420:2;14409:9;14405:18;14398:34;14468:3;14463:2;14452:9;14448:18;14441:31;14492:6;14527;14521:13;14558:6;14550;14543:22;14596:3;14585:9;14581:19;14574:26;;14635:2;14627:6;14623:15;14609:29;;14656:1;14666:195;14680:6;14677:1;14674:13;14666:195;;;14745:13;;-1:-1:-1;;;;;14741:39:1;14729:52;;14836:15;;;;14801:12;;;;14777:1;14695:9;14666:195;;;-1:-1:-1;;;;;;;14917:32:1;;;;14912:2;14897:18;;14890:60;-1:-1:-1;;;14981:3:1;14966:19;14959:35;14878:3;14020:980;-1:-1:-1;;;14020:980:1:o

Swarm Source

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