ETH Price: $2,471.37 (+0.47%)

Token

GoodTrouble (GTRB)
 

Overview

Max Total Supply

100,000,000 GTRB

Holders

64

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
lostallmyethongasfrom404s.eth
Balance
600,000 GTRB

Value
$0.00
0x8de6b37F068A571b121fd3e46854d85B10aD87Ea
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:
GoodTrouble

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-23
*/

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

    /**
     * @dev Returns the 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);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
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);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

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

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

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @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.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

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

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

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
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 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 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`, lowering the total supply.
     * 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to 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.
     *
     * Does not 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);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


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

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// File: verified-sources/0x146F3582EBE45c46B2f88fB71681fA582BA53A79/sources/src/interface/IUniswapV2.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

    function WETH() external pure returns (address);

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

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

interface IUniswapRouter02 is IUniswapRouter01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

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

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

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

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// File: verified-sources/0x146F3582EBE45c46B2f88fB71681fA582BA53A79/sources/src/GoodTrouble.sol



pragma solidity 0.8.24;

// OPENZEPPELIN IMPORTS


// UNISWAP INTERFACES


/**
 * @title Good Trouble
 * @author AssureDefi
 * @notice This is the token for Good Trouble on the ETH chain. It is an ERC20 token with a fixed supply.
 * Total Init Supply: 100,000,000 GTRB
 * Decimals: 18
 * Symbol: GTRB
 * Name: Good Trouble
 * This contract contains editable taxes for GTRB
 * Buy and Sell taxes will start at 40% and decrease by 5% every 5 minutes until it reaches 5%
 * Majority of taxes is converted to ETH, a small portion is kept to create liquidity, others are split between
 * marketing and dev.
 */
contract GoodTrouble is ERC20, Ownable {
    //-------------------------------------------------------------------------
    // Errors
    //-------------------------------------------------------------------------
    error GTRB__InvalidNewTax();
    error GTRB__InvalidValue();
    error GTRB__MaxTxExceeded();
    error GTRB__MaxWalletExceeded();
    error GTRB__InvalidListLength();
    error GTRB__OnlyDevWallet();
    error GTRB__OnlyMktWallet();
    error GTRB__OnlyBBWallet();
    error GTRB_NativeTransferFailed();
    error GTRB__NoBalance();
    error GTRB__AlreadySwapping();
    //-------------------------------------------------------------------------
    // STATE VARIABLES
    //-------------------------------------------------------------------------
    mapping(address => bool) public isExcludedFromTax;
    mapping(address => bool) public isMaxWalletExcluded;
    mapping(address => bool) public isMaxTxExcluded;
    // We can add more pairs to tax them when necessary
    mapping(address => bool) public isPair;

    address public devWallet;
    address public marketingWallet;
    address public constant deadWallet =
        0x000000000000000000000000000000000000dEaD;
    IUniswapRouter02 public router;
    IUniswapPair public pair;

    uint public sellThreshold;
    uint public startTaxTime;
    uint public maxTx;
    uint public maxWallet;

    uint16 public mktShare = 375;
    uint16 public devShare = 125;
    uint16 private totalShares = 500;

    uint8 public buyTax = 5;
    uint8 public sellTax = 5;
    uint8 private swapping = 1;

    uint private constant _TAX_INTERVAL = 60 minutes;
    uint private constant MAX_TAX_TIME = 2100 minutes;
    uint256 private constant _INIT_SUPPLY = 100_000_000 ether;
    uint256 private constant PERCENTILE = 100;

    //-------------------------------------------------------------------------
    // EVENTS
    //-------------------------------------------------------------------------
    event UpdateSellTax(uint tax);
    event UpdateBuyTax(uint tax);
    event UpdateDevWallet(
        address indexed prevWallet,
        address indexed newWallet
    );
    event UpdateMarketingWallet(
        address indexed prevWallet,
        address indexed newWallet
    );
    event UpdateTaxExclusionStatus(address indexed account, bool status);
    event UpdateMaxTxExclusionStatus(address indexed account, bool status);
    event UpdateMaxWalletExclusionStatus(address indexed account, bool status);
    event UpdateMaxTx(uint maxTx);
    event UpdateMaxWallet(uint maxWallet);
    event UpdateThreshold(uint threshold);
    event SetNewPair(address indexed pair);
    event UpdateShares(uint16 mktShare, uint16 devShare);
    event UpdateUniswapRouter(address indexed router);

    //-------------------------------------------------------------------------
    // CONSTRUCTOR
    //-------------------------------------------------------------------------
    constructor(
        address _devWallet,
        address _marketingWallet,
        address newOwner
    ) ERC20("GoodTrouble", "GTRB") Ownable(newOwner) {
        // Sell Threshold is 0.1% of the total supply
        sellThreshold = _INIT_SUPPLY / (10 * PERCENTILE);
        // Setup PancakeSwap Contracts
        router = IUniswapRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        IUniswapFactory factory = IUniswapFactory(router.factory());
        pair = IUniswapPair(factory.createPair(address(this), router.WETH()));
        isPair[address(pair)] = true;
        _approve(address(this), address(router), type(uint256).max);

        isExcludedFromTax[address(this)] = true;
        isExcludedFromTax[owner()] = true;
        isMaxWalletExcluded[owner()] = true;
        isMaxWalletExcluded[address(this)] = true;
        isMaxWalletExcluded[address(router)] = true;
        isMaxWalletExcluded[deadWallet] = true;
        isMaxWalletExcluded[address(pair)] = true;
        isMaxTxExcluded[owner()] = true;
        isMaxTxExcluded[address(this)] = true;
        isMaxTxExcluded[address(router)] = true;
        isMaxTxExcluded[address(0)] = true;
        devWallet = _devWallet;
        marketingWallet = _marketingWallet;
        maxTx = _INIT_SUPPLY / PERCENTILE; // 1% of total supply
        maxWallet = _INIT_SUPPLY / PERCENTILE; // 1% of total supply

        _mint(owner(), _INIT_SUPPLY);
    }

    //-------------------------------------------------------------------------
    // EXTERNAL / PUBLIC FUNCTIONS
    //-------------------------------------------------------------------------
    // Allow contract to receive Native tokens
    receive() external payable {}

    fallback() external payable {}

    //-------------------------------------------------------------------------
    // Owner Functions
    //-------------------------------------------------------------------------
    /**
     * @notice This function is called to edit the buy tax for GTRB
     * @param _buyTax The new buy tax to set
     * @dev the tax can only be a max of 40%
     */
    function setBuyTax(uint8 _buyTax) external onlyOwner {
        if (_buyTax > 40) {
            revert GTRB__InvalidNewTax();
        }
        buyTax = _buyTax;
        emit UpdateBuyTax(_buyTax);
    }

    /**
     * @notice This function is called to edit the buy tax for GTRB
     * @param _sellTax The new buy tax to set
     * @dev the tax can only be a max of 40%
     */
    function setSellTax(uint8 _sellTax) external onlyOwner {
        if (_sellTax > 40) {
            revert GTRB__InvalidNewTax();
        }
        sellTax = _sellTax;
        emit UpdateBuyTax(_sellTax);
    }

    /**
     * @notice Changes the tax exclusion status for an address
     * @param _address The address to set the tax exclusion status for
     * @param _status The exclusion status, TRUE for excluded, FALSE for not excluded
     */
    function setTaxExclusionStatus(
        address _address,
        bool _status
    ) external onlyOwner {
        isExcludedFromTax[_address] = _status;
        emit UpdateTaxExclusionStatus(_address, _status);
    }

    /**
     * @notice Changes the tax exclusion status for multiple addresses
     * @param addresses The list of addresses to set the tax exclusion status for
     * @param _status The exclusion status, TRUE for excluded, FALSE for not excluded for all addresses
     */
    function setMultipleTaxExclusionStatus(
        address[] calldata addresses,
        bool _status
    ) external onlyOwner {
        if (addresses.length == 0) {
            revert GTRB__InvalidListLength();
        }
        for (uint256 i = 0; i < addresses.length; i++) {
            isExcludedFromTax[addresses[i]] = _status;
            emit UpdateTaxExclusionStatus(addresses[i], _status);
        }
    }

    /**
     * @notice changes the max tx exclusion status for an address
     * @param _address The address to change the exclusion of max tx status of
     * @param _status The new exclusion status for the address || TRUE for excluded, FALSE for not excluded
     */
    function setMaxTxExclusionStatus(
        address _address,
        bool _status
    ) external onlyOwner {
        isMaxTxExcluded[_address] = _status;
        emit UpdateMaxTxExclusionStatus(_address, _status);
    }

    /**
     * @notice changes the max wallet exclusion status for an address
     * @param _address The address to change the exclusion of max wallet status of
     * @param _status The new exclusion status for the address || TRUE for excluded, FALSE for not excluded
     */
    function setMaxWalletExclusionStatus(
        address _address,
        bool _status
    ) external onlyOwner {
        // Can't change the status of a pair since it'll always be excluded from max wallet
        if (isPair[_address]) revert GTRB__InvalidValue();
        isMaxWalletExcluded[_address] = _status;
        emit UpdateMaxWalletExclusionStatus(_address, _status);
    }

    /**
     * @notice sets the max transaction amount for GTRB
     * @param _maxTx The new max transaction amount to set
     * @dev the max transaction amount cannot be less than 0.2% of the total supply
     */
    function setMaxTx(uint _maxTx) external onlyOwner {
        if (_maxTx < _INIT_SUPPLY / 500) revert GTRB__InvalidValue();
        maxTx = _maxTx;
        emit UpdateMaxTx(_maxTx);
    }

    /**
     * @notice sets the max wallet amount for GTRB
     * @param _maxWallet The new max wallet amount to set
     * @dev the max wallet amount cannot be less than 1% of the total supply
     */
    function setMaxWallet(uint _maxWallet) external onlyOwner {
        if (_maxWallet < _INIT_SUPPLY / 100) revert GTRB__InvalidValue();
        maxWallet = _maxWallet;
        emit UpdateMaxWallet(_maxWallet);
    }

    /**
     * @notice Set a different wallet to receive the swapped out funds
     * @param _devWallet The new wallet to receive buy funds
     * @dev ONLY CURRENT BUY TAX WALLET AND OWNER CAN CHANGE THIS
     */
    function updateDevWallet(address _devWallet) external {
        if (msg.sender != devWallet && msg.sender != owner())
            revert GTRB__OnlyDevWallet();
        if (_devWallet == address(0)) revert GTRB__InvalidValue();
        emit UpdateDevWallet(devWallet, _devWallet);
        devWallet = _devWallet;
    }

    /**
     * @notice Set a different wallet to receive the swapped out funds for marketing
     * @param _marketingwallet The new sell wallet to receive sell funds
     * @dev ONLY CURRENT MARKETING WALLET AND OWNER CAN CHANGE THIS
     */
    function updateMarketingWallet(address _marketingwallet) external {
        if (msg.sender != marketingWallet && msg.sender != owner())
            revert GTRB__OnlyMktWallet();
        if (_marketingwallet == address(0)) revert GTRB__InvalidValue();
        emit UpdateMarketingWallet(marketingWallet, _marketingwallet);
        marketingWallet = _marketingwallet;
    }

    /**
     * @notice The sell threshold is the amount of GTRB that needs to be collected before a sell for Native happens
     * @param _sellThreshold The new sell threshold to set
     */
    function updateSellThreshold(uint _sellThreshold) external onlyOwner {
        // Sell threshold cannot be more than 0.1% of the total supply
        // or less than 0.0001% of the total supply
        if (
            _sellThreshold > _INIT_SUPPLY / 1000 ||
            _sellThreshold < _INIT_SUPPLY / 100000
        ) revert GTRB__InvalidValue();
        sellThreshold = _sellThreshold;
        emit UpdateThreshold(_sellThreshold);
    }

    /**
     * @notice regardless of the collected amount, the contract will swap, liquidate and transfer the funds to the respective wallets
     */
    function manualSwap() external onlyOwner {
        if (swapping != 1) revert GTRB__AlreadySwapping();
        uint balance = balanceOf(address(this));
        _swapAndTransfer(balance);
    }

    /**
     * @notice sets an address as a new pair to charge taxes on it
     * @param _pair The pair to add to the list of pairs to tax
     */
    function addPair(address _pair) external onlyOwner {
        if (_pair == address(0)) revert GTRB__InvalidValue();
        isPair[_pair] = true;
        isMaxWalletExcluded[_pair] = true;
        emit SetNewPair(_pair);
    }

    /**
     * @notice updates the shares for tax spread
     * @param _mktShare Amount to be shared to the marketing wallet
     * @param _devShare Amount to be shared to the dev wallet
     */
    function updateShares(
        uint16 _mktShare,
        uint16 _devShare
    ) external onlyOwner {
        totalShares = _mktShare + _devShare;
        // Total Shares cannot be zero
        if (totalShares == 0) revert GTRB__InvalidValue();
        mktShare = _mktShare;
        devShare = _devShare;
        emit UpdateShares(_mktShare, _devShare);
    }

    function updateUniswapRouter(address _router) external onlyOwner {
        if (router.WETH() != IUniswapRouter02(_router).WETH())
            revert GTRB__InvalidValue();
        router = IUniswapRouter02(_router);
        emit UpdateUniswapRouter(_router);
    }

    function recoverNative(address _to, uint _amount) external onlyOwner {
        (bool success, ) = payable(_to).call{value: _amount}("");
        if (!success) revert GTRB_NativeTransferFailed();
    }

    function recoverERC20(address _token, address _to) external onlyOwner {
        uint amount = ERC20(_token).balanceOf(address(this));
        ERC20(_token).transfer(_to, amount);
    }

    //-------------------------------------------------------------------------
    // INTERNAL/PRIVATE FUNCTIONS
    //-------------------------------------------------------------------------
    /**
     * @notice This function overrides the ERC20 `_transfer` function to apply taxes and swap and transfer.
     * @param from Address that is sending tokens
     * @param to Address that is receiving tokens
     * @param amount Amount of tokens being transfered
     * @dev Although this is an override, it still uses the original `_transfer` function from the ERC20 contract to finalize the updatess
     * @dev On first adding liquidity, the contract will enable the high tax timer
     */
    function _update(address from, address to, uint amount) internal override {
        bool isBuy = isPair[from];
        bool isSell = isPair[to];
        bool anyExcluded = isExcludedFromTax[from] || isExcludedFromTax[to];

        // check max tx if sender or receiver are excluded or amount surpasses max tx revert
        if (!isMaxTxExcluded[from] && !isMaxTxExcluded[to] && amount > maxTx)
            revert GTRB__MaxTxExceeded();

        uint currentBalance = balanceOf(address(this));
        if (
            !isBuy &&
            currentBalance > sellThreshold &&
            !anyExcluded &&
            swapping == 1
        ) {
            _swapAndTransfer(currentBalance);
        }

        uint fee = 0;
        if (!anyExcluded) {
            uint8 tax = _getTimedTax(isBuy, isSell);
            fee = (amount * tax) / PERCENTILE;
            if (fee > 0) {
                amount -= fee;
                super._update(from, address(this), fee);
            }
        }
        if (isSell && startTaxTime == 0) {
            startTaxTime = block.timestamp;
        }
        // check max wallet
        if (!isMaxWalletExcluded[to] && balanceOf(to) + amount > maxWallet)
            revert GTRB__MaxWalletExceeded();

        // Transfer rest
        super._update(from, to, amount);
    }

    function _swapAndTransfer(uint balance) private {
        swapping <<= 1;
        if (balance == 0) revert GTRB__NoBalance();
        // Sell half of liqAmount to ETH
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        uint minAmount = router.getAmountsOut(balance, path)[1];
        minAmount = (minAmount * 7) / 10;
        // Sell rest
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            balance,
            minAmount,
            path,
            address(this),
            block.timestamp
        );
        // Distribute to rest
        uint nativeBalance = address(this).balance;
        if (totalShares == 0) return;
        uint mktAmount = (nativeBalance * mktShare) / totalShares;
        uint devAmount = nativeBalance - mktAmount;
        // Transfer to wallets
        if (mktAmount > 0) {
            (bool success, ) = payable(marketingWallet).call{value: mktAmount}(
                ""
            );
            if (!success) revert GTRB_NativeTransferFailed();
        }
        if (devAmount > 0) {
            (bool success, ) = payable(devWallet).call{value: devAmount}("");
            if (!success) revert GTRB_NativeTransferFailed();
        }

        swapping >>= 1;
    }

    /**
     * @notice This function is called to get the tax for the current block
     * @param isBuy dictates if the tax is for a buy
     * @param isSell dictates if the tax is for a sell
     * @return the tax to be applied %
     * @dev the tax will decrease by 5% every 5 minutes until it reaches 5%
     */
    function _getTimedTax(
        bool isBuy,
        bool isSell
    ) private view returns (uint8) {
        // if startTaxTime is not set or both isBuy and isSell are false, return 0
        if ((!isBuy && !isSell) || startTaxTime == 0) return 0;

        uint timePassed = block.timestamp - startTaxTime;
        // If above max tax time, return the minimum tax
        if (timePassed >= MAX_TAX_TIME) {
            if (isBuy) return buyTax;
            if (isSell) return sellTax;
            return 0;
        }
        // it'll decrease by 1% every 60 minutes
        return uint8(40 - ((timePassed / _TAX_INTERVAL)));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"newOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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"},{"inputs":[],"name":"GTRB_NativeTransferFailed","type":"error"},{"inputs":[],"name":"GTRB__AlreadySwapping","type":"error"},{"inputs":[],"name":"GTRB__InvalidListLength","type":"error"},{"inputs":[],"name":"GTRB__InvalidNewTax","type":"error"},{"inputs":[],"name":"GTRB__InvalidValue","type":"error"},{"inputs":[],"name":"GTRB__MaxTxExceeded","type":"error"},{"inputs":[],"name":"GTRB__MaxWalletExceeded","type":"error"},{"inputs":[],"name":"GTRB__NoBalance","type":"error"},{"inputs":[],"name":"GTRB__OnlyBBWallet","type":"error"},{"inputs":[],"name":"GTRB__OnlyDevWallet","type":"error"},{"inputs":[],"name":"GTRB__OnlyMktWallet","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"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"}],"name":"SetNewPair","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":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"UpdateBuyTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"prevWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdateDevWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"prevWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdateMarketingWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"UpdateMaxTx","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"UpdateMaxTxExclusionStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"UpdateMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"UpdateMaxWalletExclusionStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"UpdateSellTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"mktShare","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"devShare","type":"uint16"}],"name":"UpdateShares","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"UpdateTaxExclusionStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"UpdateThreshold","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"router","type":"address"}],"name":"UpdateUniswapRouter","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[],"name":"buyTax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devShare","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMaxTxExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMaxWalletExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mktShare","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"pair","outputs":[{"internalType":"contract IUniswapPair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"recoverNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_buyTax","type":"uint8"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setMaxTxExclusionStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setMaxWalletExclusionStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setMultipleTaxExclusionStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_sellTax","type":"uint8"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setTaxExclusionStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTaxTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_devWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingwallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellThreshold","type":"uint256"}],"name":"updateSellThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mktShare","type":"uint16"},{"internalType":"uint16","name":"_devShare","type":"uint16"}],"name":"updateShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"updateUniswapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052601280546001600160481b0319166801050501f4007d01771790553480156200002b575f80fd5b506040516200354a3803806200354a8339810160408190526200004e9162000e7b565b806040518060400160405280600b81526020016a476f6f6454726f75626c6560a81b8152506040518060400160405280600481526020016323aa292160e11b8152508160039081620000a1919062000f5f565b506004620000b0828262000f5f565b5050506001600160a01b038116620000e257604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000ed8162000518565b50620000fc6064600a6200103f565b62000113906a52b7d2dcc80cd2e400000062001059565b600e55600c80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b815290515f929163c45a01559160048083019260209291908290030181865afa1580156200017b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a1919062001079565b9050806001600160a01b031663c9c6539630600c5f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000204573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022a919062001079565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000275573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200029b919062001079565b600d80546001600160a01b0319166001600160a01b039283169081179091555f908152600960205260409020805460ff19166001179055600c54620002e5913091165f1962000569565b305f9081526006602081905260408220805460ff1916600190811790915591620003176005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f908120805460ff1916921515929092179091556001906007906200035a6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff199687161790553081526007909352818320805485166001908117909155600c548216845282842080548616821790557fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d8054861682179055600d54909116835290822080549093168117909255600890620004046005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff199687161790553081526008909352818320805485166001908117909155600c548216845291832080548516831790559180527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c7805490931617909155600a80548683166001600160a01b031991821617909155600b805492861692909116919091179055620004c760646a52b7d2dcc80cd2e400000062001059565b601055620004e260646a52b7d2dcc80cd2e400000062001059565b6011556200050e620004fc6005546001600160a01b031690565b6a52b7d2dcc80cd2e40000006200057d565b5050505062001244565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b620005788383836001620005b9565b505050565b6001600160a01b038216620005a85760405163ec442f0560e01b81525f6004820152602401620000d9565b620005b55f838362000692565b5050565b6001600160a01b038416620005e45760405163e602df0560e01b81525f6004820152602401620000d9565b6001600160a01b0383166200060f57604051634a1406b160e11b81525f6004820152602401620000d9565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156200068c57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200068391815260200190565b60405180910390a35b50505050565b6001600160a01b038084165f81815260096020908152604080832054948716835280832054938352600690915281205460ff93841693928316921680620006f057506001600160a01b0385165f9081526006602052604090205460ff165b6001600160a01b0387165f9081526008602052604090205490915060ff161580156200073457506001600160a01b0385165f9081526008602052604090205460ff16155b801562000742575060105484115b156200076157604051632b8cb7f560e01b815260040160405180910390fd5b305f9081526020819052604090205483158015620007805750600e5481115b80156200078b575081155b8015620007a9575060125468010000000000000000900460ff166001145b15620007ba57620007ba81620008b7565b5f8262000813575f620007ce868662000c7c565b90506064620007e160ff8316896200103f565b620007ed919062001059565b9150811562000811576200080282886200109c565b96506200081189308462000d30565b505b838015620008215750600f54155b156200082c5742600f555b6001600160a01b0387165f9081526007602052604090205460ff161580156200088157506011548662000873896001600160a01b03165f9081526020819052604090205490565b6200087f9190620010b2565b115b15620008a057604051630124846360e21b815260040160405180910390fd5b620008ad88888862000d30565b5050505050505050565b6012805460ff60401b198116680100000000000000009182900460011b60fe169091021790555f819003620008ff57604051636091f4cf60e11b815260040160405180910390fd5b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110620009355762000935620010c8565b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156200098d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620009b3919062001079565b81600181518110620009c957620009c9620010c8565b6001600160a01b039283166020918202929092010152600c5460405163d06ca61f60e01b81525f92919091169063d06ca61f9062000a0e908690869060040162001121565b5f60405180830381865afa15801562000a29573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405262000a52919081019062001143565b60018151811062000a675762000a67620010c8565b60200260200101519050600a81600762000a8291906200103f565b62000a8e919062001059565b600c5460405163791ac94760e01b81529192506001600160a01b03169063791ac9479062000ac9908690859087903090429060040162001207565b5f604051808303815f87803b15801562000ae1575f80fd5b505af115801562000af4573d5f803e3d5ffd5b5050601254479250640100000000900461ffff165f03905062000b175750505050565b6012545f9061ffff640100000000820481169162000b379116846200103f565b62000b43919062001059565b90505f62000b5282846200109c565b9050811562000bd157600b546040515f916001600160a01b03169084908381818185875af1925050503d805f811462000ba7576040519150601f19603f3d011682016040523d82523d5f602084013e62000bac565b606091505b505090508062000bcf57604051634923c2f960e11b815260040160405180910390fd5b505b801562000c4e57600a546040515f916001600160a01b03169083908381818185875af1925050503d805f811462000c24576040519150601f19603f3d011682016040523d82523d5f602084013e62000c29565b606091505b505090508062000c4c57604051634923c2f960e11b815260040160405180910390fd5b505b50506012805460ff60401b198116680100000000000000009182900460011c607f1690910217905550505050565b5f8215801562000c8a575081155b8062000c965750600f54155b1562000ca457505f62000d2a565b5f600f544262000cb591906200109c565b90506201ec30811062000d0b57831562000ce15750506012546601000000000000900460ff1662000d2a565b821562000d01575050601254670100000000000000900460ff1662000d2a565b5f91505062000d2a565b62000d19610e108262001059565b62000d269060286200109c565b9150505b92915050565b6001600160a01b03831662000d5e578060025f82825462000d529190620010b2565b9091555062000dd09050565b6001600160a01b0383165f908152602081905260409020548181101562000db25760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000d9565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821662000dee5760028054829003905562000e0c565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000e5291815260200190565b60405180910390a3505050565b80516001600160a01b038116811462000e76575f80fd5b919050565b5f805f6060848603121562000e8e575f80fd5b62000e998462000e5f565b925062000ea96020850162000e5f565b915062000eb96040850162000e5f565b90509250925092565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168062000eeb57607f821691505b60208210810362000f0a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200057857805f5260205f20601f840160051c8101602085101562000f375750805b601f840160051c820191505b8181101562000f58575f815560010162000f43565b5050505050565b81516001600160401b0381111562000f7b5762000f7b62000ec2565b62000f938162000f8c845462000ed6565b8462000f10565b602080601f83116001811462000fc9575f841562000fb15750858301515b5f19600386901b1c1916600185901b17855562001023565b5f85815260208120601f198616915b8281101562000ff95788860151825594840194600190910190840162000fd8565b50858210156200101757878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000d2a5762000d2a6200102b565b5f826200107457634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156200108a575f80fd5b620010958262000e5f565b9392505050565b8181038181111562000d2a5762000d2a6200102b565b8082018082111562000d2a5762000d2a6200102b565b634e487b7160e01b5f52603260045260245ffd5b5f815180845260208085019450602084015f5b83811015620011165781516001600160a01b031687529582019590820190600101620010ef565b509495945050505050565b828152604060208201525f6200113b6040830184620010dc565b949350505050565b5f602080838503121562001155575f80fd5b82516001600160401b03808211156200116c575f80fd5b818501915085601f83011262001180575f80fd5b81518181111562001195576200119562000ec2565b8060051b604051601f19603f83011681018181108582111715620011bd57620011bd62000ec2565b604052918252848201925083810185019188831115620011db575f80fd5b938501935b82851015620011fb57845184529385019392850192620011e0565b98975050505050505050565b85815284602082015260a060408201525f6200122760a0830186620010dc565b6001600160a01b0394909416606083015250608001529392505050565b6122f880620012525f395ff3fe608060405260043610610268575f3560e01c80638238642e11610142578063bc337182116100ba578063e5e31b1311610076578063e5e31b13146107aa578063f2cda82e146107d8578063f2fde38b146107f7578063f887ea4014610816578063f8b45b0514610835578063ff796a871461084a57005b8063bc337182146106c5578063c2b7bbb6146106e4578063cb4ca63114610703578063cc1776d314610731578063dd62ed3e14610751578063e3c5a2911461079557005b8063908bb2ae11610109578063908bb2ae1461061557806395d89b4114610634578063a8aa1b3114610648578063a9059cbb14610667578063aacebbe314610686578063aed04fae146106a557005b80638238642e1461058657806385141a77146105a5578063886f039a146105ba5780638da5cb5b146105d95780638ea5220f146105f657005b80634f7041a5116101e057806370a082311161019c57806370a08231146104a5578063715018a6146104d957806371dd7497146104ed5780637437681e1461051b57806375f0a874146105305780637f4fd5791461056757005b80634f7041a5146103e757806351bc3c85146104075780635bf99a381461041b5780635d0044ca1461043a5780636081752b146104595780636efc30a91461047857005b8063203a421f1161022f578063203a421f1461032657806323b872dd146103545780632d4310c0146103735780632daa387114610388578063313ce567146103a757806349abdc14146103c857005b806306fdde0314610271578063095ea7b31461029b57806318160ddd146102ca5780631816467f146102e85780631a1d3a2d1461030757005b3661026f57005b005b34801561027c575f80fd5b50610285610869565b6040516102929190611ddd565b60405180910390f35b3480156102a6575f80fd5b506102ba6102b5366004611e3d565b6108f9565b6040519015158152602001610292565b3480156102d5575f80fd5b506002545b604051908152602001610292565b3480156102f3575f80fd5b5061026f610302366004611e67565b610912565b348015610312575f80fd5b5061026f610321366004611e96565b6109d8565b348015610331575f80fd5b506102ba610340366004611e67565b60076020525f908152604090205460ff1681565b34801561035f575f80fd5b506102ba61036e366004611ecd565b610a78565b34801561037e575f80fd5b506102da600e5481565b348015610393575f80fd5b5061026f6103a2366004611f0b565b610a9b565b3480156103b2575f80fd5b5060125b60405160ff9091168152602001610292565b3480156103d3575f80fd5b5061026f6103e2366004611f8a565b610b99565b3480156103f2575f80fd5b506012546103b690600160301b900460ff1681565b348015610412575f80fd5b5061026f610c1f565b348015610426575f80fd5b5061026f610435366004611faa565b610c6f565b348015610445575f80fd5b5061026f610454366004611faa565b610d04565b348015610464575f80fd5b5061026f610473366004611f8a565b610d77565b348015610483575f80fd5b506012546104929061ffff1681565b60405161ffff9091168152602001610292565b3480156104b0575f80fd5b506102da6104bf366004611e67565b6001600160a01b03165f9081526020819052604090205490565b3480156104e4575f80fd5b5061026f610df5565b3480156104f8575f80fd5b506102ba610507366004611e67565b60086020525f908152604090205460ff1681565b348015610526575f80fd5b506102da60105481565b34801561053b575f80fd5b50600b5461054f906001600160a01b031681565b6040516001600160a01b039091168152602001610292565b348015610572575f80fd5b5061026f610581366004611e96565b610e08565b348015610591575f80fd5b5061026f6105a0366004611fd7565b610e67565b3480156105b0575f80fd5b5061054f61dead81565b3480156105c5575f80fd5b5061026f6105d4366004612008565b610f1f565b3480156105e4575f80fd5b506005546001600160a01b031661054f565b348015610601575f80fd5b50600a5461054f906001600160a01b031681565b348015610620575f80fd5b5061026f61062f366004611e67565b611003565b34801561063f575f80fd5b50610285611158565b348015610653575f80fd5b50600d5461054f906001600160a01b031681565b348015610672575f80fd5b506102ba610681366004611e3d565b611167565b348015610691575f80fd5b5061026f6106a0366004611e67565b611174565b3480156106b0575f80fd5b506012546104929062010000900461ffff1681565b3480156106d0575f80fd5b5061026f6106df366004611faa565b61123a565b3480156106ef575f80fd5b5061026f6106fe366004611e67565b6112ae565b34801561070e575f80fd5b506102ba61071d366004611e67565b60066020525f908152604090205460ff1681565b34801561073c575f80fd5b506012546103b690600160381b900460ff1681565b34801561075c575f80fd5b506102da61076b366004612008565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156107a0575f80fd5b506102da600f5481565b3480156107b5575f80fd5b506102ba6107c4366004611e67565b60096020525f908152604090205460ff1681565b3480156107e3575f80fd5b5061026f6107f2366004611e3d565b61133f565b348015610802575f80fd5b5061026f610811366004611e67565b6113bc565b348015610821575f80fd5b50600c5461054f906001600160a01b031681565b348015610840575f80fd5b506102da60115481565b348015610855575f80fd5b5061026f610864366004611e96565b6113fb565b60606003805461087890612034565b80601f01602080910402602001604051908101604052809291908181526020018280546108a490612034565b80156108ef5780601f106108c6576101008083540402835291602001916108ef565b820191905f5260205f20905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b5f3361090681858561145a565b60019150505b92915050565b600a546001600160a01b0316331480159061093857506005546001600160a01b03163314155b1561095657604051635dbca81160e11b815260040160405180910390fd5b6001600160a01b03811661097d57604051630d14b28d60e21b815260040160405180910390fd5b600a546040516001600160a01b038084169216907f923334f00a08147112838c5c41f68a92979493ae7af34177449883db57434277905f90a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6109e0611467565b6001600160a01b0382165f9081526009602052604090205460ff1615610a1957604051630d14b28d60e21b815260040160405180910390fd5b6001600160a01b0382165f81815260076020908152604091829020805460ff191685151590811790915591519182527f4a187de95f18bd0a9a020730b1d5a6fa3f909ec312c9c5d46f1e6b7db5dd52b891015b60405180910390a25050565b5f33610a85858285611494565b610a90858585611509565b506001949350505050565b610aa3611467565b5f829003610ac45760405163fb492d4b60e01b815260040160405180910390fd5b5f5b82811015610b93578160065f868685818110610ae457610ae461206c565b9050602002016020810190610af99190611e67565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055838382818110610b3257610b3261206c565b9050602002016020810190610b479190611e67565b6001600160a01b03167fee385e3edbe20b5bd36c0060389cdf1acf975758fa596713d6a4252751ab427583604051610b83911515815260200190565b60405180910390a2600101610ac6565b50505050565b610ba1611467565b60288160ff161115610bc657604051636e5504cd60e01b815260040160405180910390fd5b6012805467ff000000000000001916600160381b60ff8416908102919091179091556040519081527f2d16b529cd6f4d8d1af62fe74e0801442778f50967ec8b5994f628052c59c73a906020015b60405180910390a150565b610c27611467565b601254600160401b900460ff16600114610c54576040516370ef825360e11b815260040160405180910390fd5b305f90815260208190526040902054610c6c81611566565b50565b610c77611467565b610c8e6103e86a52b7d2dcc80cd2e4000000612094565b811180610cb15750610cae620186a06a52b7d2dcc80cd2e4000000612094565b81105b15610ccf57604051630d14b28d60e21b815260040160405180910390fd5b600e8190556040518181527fcfbc3e24bcdbf875f7af2b101605919fdbd3cb0b217ae54c372ae49417c58d0190602001610c14565b610d0c611467565b610d2260646a52b7d2dcc80cd2e4000000612094565b811015610d4257604051630d14b28d60e21b815260040160405180910390fd5b60118190556040518181527fdd4ef051c4c49233ec73abfc2ee1514725d2a818fbcde46ee5d34a49034922f990602001610c14565b610d7f611467565b60288160ff161115610da457604051636e5504cd60e01b815260040160405180910390fd5b6012805466ff0000000000001916600160301b60ff8416908102919091179091556040519081527f2d16b529cd6f4d8d1af62fe74e0801442778f50967ec8b5994f628052c59c73a90602001610c14565b610dfd611467565b610e065f6118f8565b565b610e10611467565b6001600160a01b0382165f81815260066020908152604091829020805460ff191685151590811790915591519182527fee385e3edbe20b5bd36c0060389cdf1acf975758fa596713d6a4252751ab42759101610a6c565b610e6f611467565b610e7981836120b3565b6012805465ffff00000000191664010000000061ffff938416810291909117918290559004165f03610ebe57604051630d14b28d60e21b815260040160405180910390fd5b6012805461ffff84811663ffffffff19909216821762010000918516918202179092556040805191825260208201929092527f788e163a6e2c7974d0448f44b040a08173549d0e37a8357a99907cf29a326dab910160405180910390a15050565b610f27611467565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610f6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8f91906120d5565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610fdf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b9391906120ec565b61100b611467565b806001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611047573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061106b9190612107565b6001600160a01b0316600c5f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e89190612107565b6001600160a01b03161461110f57604051630d14b28d60e21b815260040160405180910390fd5b600c80546001600160a01b0319166001600160a01b0383169081179091556040517fbdfcd0f1d13d7b7322d52a6a9a6a758ba8f47be4985ff2ff6fcf5c217c3e06fb905f90a250565b60606004805461087890612034565b5f33610906818585611509565b600b546001600160a01b0316331480159061119a57506005546001600160a01b03163314155b156111b857604051636a8ff08960e11b815260040160405180910390fd5b6001600160a01b0381166111df57604051630d14b28d60e21b815260040160405180910390fd5b600b546040516001600160a01b038084169216907facf03c50dcf01e53e2775267d12acd0158d87c2f20fb84226837142693b36ae7905f90a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b611242611467565b6112596101f46a52b7d2dcc80cd2e4000000612094565b81101561127957604051630d14b28d60e21b815260040160405180910390fd5b60108190556040518181527fcedd579bb16a110f8fc769828da3ec64f5b19963e8f71d7fb5214d37fdce2c4290602001610c14565b6112b6611467565b6001600160a01b0381166112dd57604051630d14b28d60e21b815260040160405180910390fd5b6001600160a01b0381165f8181526009602090815260408083208054600160ff1991821681179092556007909352818420805490931617909155517f43a9fee15527bb6ef23fe553fb1e6c1ea946a49cbeec8f294cb4a40eba739b819190a250565b611347611467565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611390576040519150601f19603f3d011682016040523d82523d5f602084013e611395565b606091505b50509050806113b757604051634923c2f960e11b815260040160405180910390fd5b505050565b6113c4611467565b6001600160a01b0381166113f257604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b610c6c816118f8565b611403611467565b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527fa42bbec6725edfd96851ed0b8cad40906864445d5b16b570ef3abc6c148b00bb9101610a6c565b6113b78383836001611949565b6005546001600160a01b03163314610e065760405163118cdaa760e01b81523360048201526024016113e9565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610b9357818110156114fb57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016113e9565b610b9384848484035f611949565b6001600160a01b03831661153257604051634b637e8f60e11b81525f60048201526024016113e9565b6001600160a01b03821661155b5760405163ec442f0560e01b81525f60048201526024016113e9565b6113b7838383611a1b565b6012805460ff60401b198116600160401b9182900460011b60fe169091021790555f8190036115a857604051636091f4cf60e11b815260040160405180910390fd5b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106115db576115db61206c565b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611632573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116569190612107565b816001815181106116695761166961206c565b6001600160a01b039283166020918202929092010152600c5460405163d06ca61f60e01b81525f92919091169063d06ca61f906116ac9086908690600401612179565b5f60405180830381865afa1580156116c6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526116ed9190810190612191565b6001815181106116ff576116ff61206c565b60200260200101519050600a816007611718919061224a565b6117229190612094565b600c5460405163791ac94760e01b81529192506001600160a01b03169063791ac9479061175b9086908590879030904290600401612261565b5f604051808303815f87803b158015611772575f80fd5b505af1158015611784573d5f803e3d5ffd5b5050601254479250640100000000900461ffff165f0390506117a65750505050565b6012545f9061ffff64010000000082048116916117c491168461224a565b6117ce9190612094565b90505f6117db828461229c565b9050811561185657600b546040515f916001600160a01b03169084908381818185875af1925050503d805f811461182d576040519150601f19603f3d011682016040523d82523d5f602084013e611832565b606091505b505090508061185457604051634923c2f960e11b815260040160405180910390fd5b505b80156118cf57600a546040515f916001600160a01b03169083908381818185875af1925050503d805f81146118a6576040519150601f19603f3d011682016040523d82523d5f602084013e6118ab565b606091505b50509050806118cd57604051634923c2f960e11b815260040160405180910390fd5b505b50506012805460ff60401b198116600160401b9182900460011c607f1690910217905550505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166119725760405163e602df0560e01b81525f60048201526024016113e9565b6001600160a01b03831661199b57604051634a1406b160e11b81525f60048201526024016113e9565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610b9357826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611a0d91815260200190565b60405180910390a350505050565b6001600160a01b038084165f81815260096020908152604080832054948716835280832054938352600690915281205460ff93841693928316921680611a7857506001600160a01b0385165f9081526006602052604090205460ff165b6001600160a01b0387165f9081526008602052604090205490915060ff16158015611abb57506001600160a01b0385165f9081526008602052604090205460ff16155b8015611ac8575060105484115b15611ae657604051632b8cb7f560e01b815260040160405180910390fd5b305f9081526020819052604090205483158015611b045750600e5481115b8015611b0e575081155b8015611b265750601254600160401b900460ff166001145b15611b3457611b3481611566565b5f82611b81575f611b458686611c1c565b90506064611b5660ff83168961224a565b611b609190612094565b91508115611b7f57611b72828861229c565b9650611b7f893084611cb7565b505b838015611b8e5750600f54155b15611b985742600f555b6001600160a01b0387165f9081526007602052604090205460ff16158015611be9575060115486611bdd896001600160a01b03165f9081526020819052604090205490565b611be791906122af565b115b15611c0757604051630124846360e21b815260040160405180910390fd5b611c12888888611cb7565b5050505050505050565b5f82158015611c29575081155b80611c345750600f54155b15611c4057505f61090c565b5f600f5442611c4f919061229c565b90506201ec308110611c98578315611c75575050601254600160301b900460ff1661090c565b8215611c8f575050601254600160381b900460ff1661090c565b5f91505061090c565b611ca4610e1082612094565b611caf90602861229c565b949350505050565b6001600160a01b038316611ce1578060025f828254611cd691906122af565b90915550611d519050565b6001600160a01b0383165f9081526020819052604090205481811015611d335760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016113e9565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216611d6d57600280548290039055611d8b565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611dd091815260200190565b60405180910390a3505050565b5f602080835283518060208501525f5b81811015611e0957858101830151858201604001528201611ded565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c6c575f80fd5b5f8060408385031215611e4e575f80fd5b8235611e5981611e29565b946020939093013593505050565b5f60208284031215611e77575f80fd5b8135611e8281611e29565b9392505050565b8015158114610c6c575f80fd5b5f8060408385031215611ea7575f80fd5b8235611eb281611e29565b91506020830135611ec281611e89565b809150509250929050565b5f805f60608486031215611edf575f80fd5b8335611eea81611e29565b92506020840135611efa81611e29565b929592945050506040919091013590565b5f805f60408486031215611f1d575f80fd5b833567ffffffffffffffff80821115611f34575f80fd5b818601915086601f830112611f47575f80fd5b813581811115611f55575f80fd5b8760208260051b8501011115611f69575f80fd5b60209283019550935050840135611f7f81611e89565b809150509250925092565b5f60208284031215611f9a575f80fd5b813560ff81168114611e82575f80fd5b5f60208284031215611fba575f80fd5b5035919050565b803561ffff81168114611fd2575f80fd5b919050565b5f8060408385031215611fe8575f80fd5b611ff183611fc1565b9150611fff60208401611fc1565b90509250929050565b5f8060408385031215612019575f80fd5b823561202481611e29565b91506020830135611ec281611e29565b600181811c9082168061204857607f821691505b60208210810361206657634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f826120ae57634e487b7160e01b5f52601260045260245ffd5b500490565b61ffff8181168382160190808211156120ce576120ce612080565b5092915050565b5f602082840312156120e5575f80fd5b5051919050565b5f602082840312156120fc575f80fd5b8151611e8281611e89565b5f60208284031215612117575f80fd5b8151611e8281611e29565b634e487b7160e01b5f52604160045260245ffd5b5f815180845260208085019450602084015f5b8381101561216e5781516001600160a01b031687529582019590820190600101612149565b509495945050505050565b828152604060208201525f611caf6040830184612136565b5f60208083850312156121a2575f80fd5b825167ffffffffffffffff808211156121b9575f80fd5b818501915085601f8301126121cc575f80fd5b8151818111156121de576121de612122565b8060051b604051601f19603f8301168101818110858211171561220357612203612122565b604052918252848201925083810185019188831115612220575f80fd5b938501935b8285101561223e57845184529385019392850192612225565b98975050505050505050565b808202811582820484141761090c5761090c612080565b85815284602082015260a060408201525f61227f60a0830186612136565b6001600160a01b0394909416606083015250608001529392505050565b8181038181111561090c5761090c612080565b8082018082111561090c5761090c61208056fea2646970667358221220a53954567113ca1d3720b81bb428a63683fb722b6537bcd23a73f02efae689d364736f6c634300081800330000000000000000000000003a360f843b7990789d2c6c614121cea3fff5743a0000000000000000000000003a360f843b7990789d2c6c614121cea3fff5743a0000000000000000000000003a360f843b7990789d2c6c614121cea3fff5743a

Deployed Bytecode

0x608060405260043610610268575f3560e01c80638238642e11610142578063bc337182116100ba578063e5e31b1311610076578063e5e31b13146107aa578063f2cda82e146107d8578063f2fde38b146107f7578063f887ea4014610816578063f8b45b0514610835578063ff796a871461084a57005b8063bc337182146106c5578063c2b7bbb6146106e4578063cb4ca63114610703578063cc1776d314610731578063dd62ed3e14610751578063e3c5a2911461079557005b8063908bb2ae11610109578063908bb2ae1461061557806395d89b4114610634578063a8aa1b3114610648578063a9059cbb14610667578063aacebbe314610686578063aed04fae146106a557005b80638238642e1461058657806385141a77146105a5578063886f039a146105ba5780638da5cb5b146105d95780638ea5220f146105f657005b80634f7041a5116101e057806370a082311161019c57806370a08231146104a5578063715018a6146104d957806371dd7497146104ed5780637437681e1461051b57806375f0a874146105305780637f4fd5791461056757005b80634f7041a5146103e757806351bc3c85146104075780635bf99a381461041b5780635d0044ca1461043a5780636081752b146104595780636efc30a91461047857005b8063203a421f1161022f578063203a421f1461032657806323b872dd146103545780632d4310c0146103735780632daa387114610388578063313ce567146103a757806349abdc14146103c857005b806306fdde0314610271578063095ea7b31461029b57806318160ddd146102ca5780631816467f146102e85780631a1d3a2d1461030757005b3661026f57005b005b34801561027c575f80fd5b50610285610869565b6040516102929190611ddd565b60405180910390f35b3480156102a6575f80fd5b506102ba6102b5366004611e3d565b6108f9565b6040519015158152602001610292565b3480156102d5575f80fd5b506002545b604051908152602001610292565b3480156102f3575f80fd5b5061026f610302366004611e67565b610912565b348015610312575f80fd5b5061026f610321366004611e96565b6109d8565b348015610331575f80fd5b506102ba610340366004611e67565b60076020525f908152604090205460ff1681565b34801561035f575f80fd5b506102ba61036e366004611ecd565b610a78565b34801561037e575f80fd5b506102da600e5481565b348015610393575f80fd5b5061026f6103a2366004611f0b565b610a9b565b3480156103b2575f80fd5b5060125b60405160ff9091168152602001610292565b3480156103d3575f80fd5b5061026f6103e2366004611f8a565b610b99565b3480156103f2575f80fd5b506012546103b690600160301b900460ff1681565b348015610412575f80fd5b5061026f610c1f565b348015610426575f80fd5b5061026f610435366004611faa565b610c6f565b348015610445575f80fd5b5061026f610454366004611faa565b610d04565b348015610464575f80fd5b5061026f610473366004611f8a565b610d77565b348015610483575f80fd5b506012546104929061ffff1681565b60405161ffff9091168152602001610292565b3480156104b0575f80fd5b506102da6104bf366004611e67565b6001600160a01b03165f9081526020819052604090205490565b3480156104e4575f80fd5b5061026f610df5565b3480156104f8575f80fd5b506102ba610507366004611e67565b60086020525f908152604090205460ff1681565b348015610526575f80fd5b506102da60105481565b34801561053b575f80fd5b50600b5461054f906001600160a01b031681565b6040516001600160a01b039091168152602001610292565b348015610572575f80fd5b5061026f610581366004611e96565b610e08565b348015610591575f80fd5b5061026f6105a0366004611fd7565b610e67565b3480156105b0575f80fd5b5061054f61dead81565b3480156105c5575f80fd5b5061026f6105d4366004612008565b610f1f565b3480156105e4575f80fd5b506005546001600160a01b031661054f565b348015610601575f80fd5b50600a5461054f906001600160a01b031681565b348015610620575f80fd5b5061026f61062f366004611e67565b611003565b34801561063f575f80fd5b50610285611158565b348015610653575f80fd5b50600d5461054f906001600160a01b031681565b348015610672575f80fd5b506102ba610681366004611e3d565b611167565b348015610691575f80fd5b5061026f6106a0366004611e67565b611174565b3480156106b0575f80fd5b506012546104929062010000900461ffff1681565b3480156106d0575f80fd5b5061026f6106df366004611faa565b61123a565b3480156106ef575f80fd5b5061026f6106fe366004611e67565b6112ae565b34801561070e575f80fd5b506102ba61071d366004611e67565b60066020525f908152604090205460ff1681565b34801561073c575f80fd5b506012546103b690600160381b900460ff1681565b34801561075c575f80fd5b506102da61076b366004612008565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156107a0575f80fd5b506102da600f5481565b3480156107b5575f80fd5b506102ba6107c4366004611e67565b60096020525f908152604090205460ff1681565b3480156107e3575f80fd5b5061026f6107f2366004611e3d565b61133f565b348015610802575f80fd5b5061026f610811366004611e67565b6113bc565b348015610821575f80fd5b50600c5461054f906001600160a01b031681565b348015610840575f80fd5b506102da60115481565b348015610855575f80fd5b5061026f610864366004611e96565b6113fb565b60606003805461087890612034565b80601f01602080910402602001604051908101604052809291908181526020018280546108a490612034565b80156108ef5780601f106108c6576101008083540402835291602001916108ef565b820191905f5260205f20905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b5f3361090681858561145a565b60019150505b92915050565b600a546001600160a01b0316331480159061093857506005546001600160a01b03163314155b1561095657604051635dbca81160e11b815260040160405180910390fd5b6001600160a01b03811661097d57604051630d14b28d60e21b815260040160405180910390fd5b600a546040516001600160a01b038084169216907f923334f00a08147112838c5c41f68a92979493ae7af34177449883db57434277905f90a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6109e0611467565b6001600160a01b0382165f9081526009602052604090205460ff1615610a1957604051630d14b28d60e21b815260040160405180910390fd5b6001600160a01b0382165f81815260076020908152604091829020805460ff191685151590811790915591519182527f4a187de95f18bd0a9a020730b1d5a6fa3f909ec312c9c5d46f1e6b7db5dd52b891015b60405180910390a25050565b5f33610a85858285611494565b610a90858585611509565b506001949350505050565b610aa3611467565b5f829003610ac45760405163fb492d4b60e01b815260040160405180910390fd5b5f5b82811015610b93578160065f868685818110610ae457610ae461206c565b9050602002016020810190610af99190611e67565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055838382818110610b3257610b3261206c565b9050602002016020810190610b479190611e67565b6001600160a01b03167fee385e3edbe20b5bd36c0060389cdf1acf975758fa596713d6a4252751ab427583604051610b83911515815260200190565b60405180910390a2600101610ac6565b50505050565b610ba1611467565b60288160ff161115610bc657604051636e5504cd60e01b815260040160405180910390fd5b6012805467ff000000000000001916600160381b60ff8416908102919091179091556040519081527f2d16b529cd6f4d8d1af62fe74e0801442778f50967ec8b5994f628052c59c73a906020015b60405180910390a150565b610c27611467565b601254600160401b900460ff16600114610c54576040516370ef825360e11b815260040160405180910390fd5b305f90815260208190526040902054610c6c81611566565b50565b610c77611467565b610c8e6103e86a52b7d2dcc80cd2e4000000612094565b811180610cb15750610cae620186a06a52b7d2dcc80cd2e4000000612094565b81105b15610ccf57604051630d14b28d60e21b815260040160405180910390fd5b600e8190556040518181527fcfbc3e24bcdbf875f7af2b101605919fdbd3cb0b217ae54c372ae49417c58d0190602001610c14565b610d0c611467565b610d2260646a52b7d2dcc80cd2e4000000612094565b811015610d4257604051630d14b28d60e21b815260040160405180910390fd5b60118190556040518181527fdd4ef051c4c49233ec73abfc2ee1514725d2a818fbcde46ee5d34a49034922f990602001610c14565b610d7f611467565b60288160ff161115610da457604051636e5504cd60e01b815260040160405180910390fd5b6012805466ff0000000000001916600160301b60ff8416908102919091179091556040519081527f2d16b529cd6f4d8d1af62fe74e0801442778f50967ec8b5994f628052c59c73a90602001610c14565b610dfd611467565b610e065f6118f8565b565b610e10611467565b6001600160a01b0382165f81815260066020908152604091829020805460ff191685151590811790915591519182527fee385e3edbe20b5bd36c0060389cdf1acf975758fa596713d6a4252751ab42759101610a6c565b610e6f611467565b610e7981836120b3565b6012805465ffff00000000191664010000000061ffff938416810291909117918290559004165f03610ebe57604051630d14b28d60e21b815260040160405180910390fd5b6012805461ffff84811663ffffffff19909216821762010000918516918202179092556040805191825260208201929092527f788e163a6e2c7974d0448f44b040a08173549d0e37a8357a99907cf29a326dab910160405180910390a15050565b610f27611467565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610f6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8f91906120d5565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610fdf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b9391906120ec565b61100b611467565b806001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611047573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061106b9190612107565b6001600160a01b0316600c5f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e89190612107565b6001600160a01b03161461110f57604051630d14b28d60e21b815260040160405180910390fd5b600c80546001600160a01b0319166001600160a01b0383169081179091556040517fbdfcd0f1d13d7b7322d52a6a9a6a758ba8f47be4985ff2ff6fcf5c217c3e06fb905f90a250565b60606004805461087890612034565b5f33610906818585611509565b600b546001600160a01b0316331480159061119a57506005546001600160a01b03163314155b156111b857604051636a8ff08960e11b815260040160405180910390fd5b6001600160a01b0381166111df57604051630d14b28d60e21b815260040160405180910390fd5b600b546040516001600160a01b038084169216907facf03c50dcf01e53e2775267d12acd0158d87c2f20fb84226837142693b36ae7905f90a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b611242611467565b6112596101f46a52b7d2dcc80cd2e4000000612094565b81101561127957604051630d14b28d60e21b815260040160405180910390fd5b60108190556040518181527fcedd579bb16a110f8fc769828da3ec64f5b19963e8f71d7fb5214d37fdce2c4290602001610c14565b6112b6611467565b6001600160a01b0381166112dd57604051630d14b28d60e21b815260040160405180910390fd5b6001600160a01b0381165f8181526009602090815260408083208054600160ff1991821681179092556007909352818420805490931617909155517f43a9fee15527bb6ef23fe553fb1e6c1ea946a49cbeec8f294cb4a40eba739b819190a250565b611347611467565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611390576040519150601f19603f3d011682016040523d82523d5f602084013e611395565b606091505b50509050806113b757604051634923c2f960e11b815260040160405180910390fd5b505050565b6113c4611467565b6001600160a01b0381166113f257604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b610c6c816118f8565b611403611467565b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527fa42bbec6725edfd96851ed0b8cad40906864445d5b16b570ef3abc6c148b00bb9101610a6c565b6113b78383836001611949565b6005546001600160a01b03163314610e065760405163118cdaa760e01b81523360048201526024016113e9565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610b9357818110156114fb57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016113e9565b610b9384848484035f611949565b6001600160a01b03831661153257604051634b637e8f60e11b81525f60048201526024016113e9565b6001600160a01b03821661155b5760405163ec442f0560e01b81525f60048201526024016113e9565b6113b7838383611a1b565b6012805460ff60401b198116600160401b9182900460011b60fe169091021790555f8190036115a857604051636091f4cf60e11b815260040160405180910390fd5b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106115db576115db61206c565b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611632573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116569190612107565b816001815181106116695761166961206c565b6001600160a01b039283166020918202929092010152600c5460405163d06ca61f60e01b81525f92919091169063d06ca61f906116ac9086908690600401612179565b5f60405180830381865afa1580156116c6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526116ed9190810190612191565b6001815181106116ff576116ff61206c565b60200260200101519050600a816007611718919061224a565b6117229190612094565b600c5460405163791ac94760e01b81529192506001600160a01b03169063791ac9479061175b9086908590879030904290600401612261565b5f604051808303815f87803b158015611772575f80fd5b505af1158015611784573d5f803e3d5ffd5b5050601254479250640100000000900461ffff165f0390506117a65750505050565b6012545f9061ffff64010000000082048116916117c491168461224a565b6117ce9190612094565b90505f6117db828461229c565b9050811561185657600b546040515f916001600160a01b03169084908381818185875af1925050503d805f811461182d576040519150601f19603f3d011682016040523d82523d5f602084013e611832565b606091505b505090508061185457604051634923c2f960e11b815260040160405180910390fd5b505b80156118cf57600a546040515f916001600160a01b03169083908381818185875af1925050503d805f81146118a6576040519150601f19603f3d011682016040523d82523d5f602084013e6118ab565b606091505b50509050806118cd57604051634923c2f960e11b815260040160405180910390fd5b505b50506012805460ff60401b198116600160401b9182900460011c607f1690910217905550505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166119725760405163e602df0560e01b81525f60048201526024016113e9565b6001600160a01b03831661199b57604051634a1406b160e11b81525f60048201526024016113e9565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610b9357826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611a0d91815260200190565b60405180910390a350505050565b6001600160a01b038084165f81815260096020908152604080832054948716835280832054938352600690915281205460ff93841693928316921680611a7857506001600160a01b0385165f9081526006602052604090205460ff165b6001600160a01b0387165f9081526008602052604090205490915060ff16158015611abb57506001600160a01b0385165f9081526008602052604090205460ff16155b8015611ac8575060105484115b15611ae657604051632b8cb7f560e01b815260040160405180910390fd5b305f9081526020819052604090205483158015611b045750600e5481115b8015611b0e575081155b8015611b265750601254600160401b900460ff166001145b15611b3457611b3481611566565b5f82611b81575f611b458686611c1c565b90506064611b5660ff83168961224a565b611b609190612094565b91508115611b7f57611b72828861229c565b9650611b7f893084611cb7565b505b838015611b8e5750600f54155b15611b985742600f555b6001600160a01b0387165f9081526007602052604090205460ff16158015611be9575060115486611bdd896001600160a01b03165f9081526020819052604090205490565b611be791906122af565b115b15611c0757604051630124846360e21b815260040160405180910390fd5b611c12888888611cb7565b5050505050505050565b5f82158015611c29575081155b80611c345750600f54155b15611c4057505f61090c565b5f600f5442611c4f919061229c565b90506201ec308110611c98578315611c75575050601254600160301b900460ff1661090c565b8215611c8f575050601254600160381b900460ff1661090c565b5f91505061090c565b611ca4610e1082612094565b611caf90602861229c565b949350505050565b6001600160a01b038316611ce1578060025f828254611cd691906122af565b90915550611d519050565b6001600160a01b0383165f9081526020819052604090205481811015611d335760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016113e9565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216611d6d57600280548290039055611d8b565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611dd091815260200190565b60405180910390a3505050565b5f602080835283518060208501525f5b81811015611e0957858101830151858201604001528201611ded565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c6c575f80fd5b5f8060408385031215611e4e575f80fd5b8235611e5981611e29565b946020939093013593505050565b5f60208284031215611e77575f80fd5b8135611e8281611e29565b9392505050565b8015158114610c6c575f80fd5b5f8060408385031215611ea7575f80fd5b8235611eb281611e29565b91506020830135611ec281611e89565b809150509250929050565b5f805f60608486031215611edf575f80fd5b8335611eea81611e29565b92506020840135611efa81611e29565b929592945050506040919091013590565b5f805f60408486031215611f1d575f80fd5b833567ffffffffffffffff80821115611f34575f80fd5b818601915086601f830112611f47575f80fd5b813581811115611f55575f80fd5b8760208260051b8501011115611f69575f80fd5b60209283019550935050840135611f7f81611e89565b809150509250925092565b5f60208284031215611f9a575f80fd5b813560ff81168114611e82575f80fd5b5f60208284031215611fba575f80fd5b5035919050565b803561ffff81168114611fd2575f80fd5b919050565b5f8060408385031215611fe8575f80fd5b611ff183611fc1565b9150611fff60208401611fc1565b90509250929050565b5f8060408385031215612019575f80fd5b823561202481611e29565b91506020830135611ec281611e29565b600181811c9082168061204857607f821691505b60208210810361206657634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f826120ae57634e487b7160e01b5f52601260045260245ffd5b500490565b61ffff8181168382160190808211156120ce576120ce612080565b5092915050565b5f602082840312156120e5575f80fd5b5051919050565b5f602082840312156120fc575f80fd5b8151611e8281611e89565b5f60208284031215612117575f80fd5b8151611e8281611e29565b634e487b7160e01b5f52604160045260245ffd5b5f815180845260208085019450602084015f5b8381101561216e5781516001600160a01b031687529582019590820190600101612149565b509495945050505050565b828152604060208201525f611caf6040830184612136565b5f60208083850312156121a2575f80fd5b825167ffffffffffffffff808211156121b9575f80fd5b818501915085601f8301126121cc575f80fd5b8151818111156121de576121de612122565b8060051b604051601f19603f8301168101818110858211171561220357612203612122565b604052918252848201925083810185019188831115612220575f80fd5b938501935b8285101561223e57845184529385019392850192612225565b98975050505050505050565b808202811582820484141761090c5761090c612080565b85815284602082015260a060408201525f61227f60a0830186612136565b6001600160a01b0394909416606083015250608001529392505050565b8181038181111561090c5761090c612080565b8082018082111561090c5761090c61208056fea2646970667358221220a53954567113ca1d3720b81bb428a63683fb722b6537bcd23a73f02efae689d364736f6c63430008180033

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

0000000000000000000000003a360f843b7990789d2c6c614121cea3fff5743a0000000000000000000000003a360f843b7990789d2c6c614121cea3fff5743a0000000000000000000000003a360f843b7990789d2c6c614121cea3fff5743a

-----Decoded View---------------
Arg [0] : _devWallet (address): 0x3a360f843b7990789d2c6c614121cEA3FfF5743a
Arg [1] : _marketingWallet (address): 0x3a360f843b7990789d2c6c614121cEA3FfF5743a
Arg [2] : newOwner (address): 0x3a360f843b7990789d2c6c614121cEA3FfF5743a

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000003a360f843b7990789d2c6c614121cea3fff5743a
Arg [1] : 0000000000000000000000003a360f843b7990789d2c6c614121cea3fff5743a
Arg [2] : 0000000000000000000000003a360f843b7990789d2c6c614121cea3fff5743a


Deployed Bytecode Sourcemap

35441:17198:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13297:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15590:190;;;;;;;;;;-1:-1:-1;15590:190:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;15590:190:0;1023:187:1;14399:99:0;;;;;;;;;;-1:-1:-1;14478:12:0;;14399:99;;;1361:25:1;;;1349:2;1334:18;14399:99:0;1215:177:1;44651:323:0;;;;;;;;;;-1:-1:-1;44651:323:0;;;;;:::i;:::-;;:::i;43186:389::-;;;;;;;;;;-1:-1:-1;43186:389:0;;;;;:::i;:::-;;:::i;36290:51::-;;;;;;;;;;-1:-1:-1;36290:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;16358:249;;;;;;;;;;-1:-1:-1;16358:249:0;;;;;:::i;:::-;;:::i;36739:25::-;;;;;;;;;;;;;;;;41967:423;;;;;;;;;;-1:-1:-1;41967:423:0;;;;;:::i;:::-;;:::i;14250:84::-;;;;;;;;;;-1:-1:-1;14324:2:0;14250:84;;;3547:4:1;3535:17;;;3517:36;;3505:2;3490:18;14250:84:0;3375:184:1;40996:214:0;;;;;;;;;;-1:-1:-1;40996:214:0;;;;;:::i;:::-;;:::i;36967:23::-;;;;;;;;;;-1:-1:-1;36967:23:0;;;;-1:-1:-1;;;36967:23:0;;;;;;46419:195;;;;;;;;;;;;;:::i;45809:449::-;;;;;;;;;;-1:-1:-1;45809:449:0;;;;;:::i;:::-;;:::i;44207:217::-;;;;;;;;;;-1:-1:-1;44207:217:0;;;;;:::i;:::-;;:::i;40600:208::-;;;;;;;;;;-1:-1:-1;40600:208:0;;;;;:::i;:::-;;:::i;36856:28::-;;;;;;;;;;-1:-1:-1;36856:28:0;;;;;;;;;;;4197:6:1;4185:19;;;4167:38;;4155:2;4140:18;36856:28:0;4023:188:1;14561:118:0;;;;;;;;;;-1:-1:-1;14561:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14653:18:0;14626:7;14653:18;;;;;;;;;;;;14561:118;24972:103;;;;;;;;;;;;;:::i;36348:47::-;;;;;;;;;;-1:-1:-1;36348:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36802:17;;;;;;;;;;;;;;;;36537:30;;;;;;;;;;-1:-1:-1;36537:30:0;;;;-1:-1:-1;;;;;36537:30:0;;;;;;-1:-1:-1;;;;;4380:32:1;;;4362:51;;4350:2;4335:18;36537:30:0;4216:203:1;41459:222:0;;;;;;;;;;-1:-1:-1;41459:222:0;;;;;:::i;:::-;;:::i;47211:368::-;;;;;;;;;;-1:-1:-1;47211:368:0;;;;;:::i;:::-;;:::i;36574:88::-;;;;;;;;;;;;36620:42;36574:88;;48074:187;;;;;;;;;;-1:-1:-1;48074:187:0;;;;;:::i;:::-;;:::i;24297:87::-;;;;;;;;;;-1:-1:-1;24370:6:0;;-1:-1:-1;;;;;24370:6:0;24297:87;;36506:24;;;;;;;;;;-1:-1:-1;36506:24:0;;;;-1:-1:-1;;;;;36506:24:0;;;47587:268;;;;;;;;;;-1:-1:-1;47587:268:0;;;;;:::i;:::-;;:::i;13507:95::-;;;;;;;;;;;;;:::i;36706:24::-;;;;;;;;;;-1:-1:-1;36706:24:0;;;;-1:-1:-1;;;;;36706:24:0;;;14884:182;;;;;;;;;;-1:-1:-1;14884:182:0;;;;;:::i;:::-;;:::i;45229:377::-;;;;;;;;;;-1:-1:-1;45229:377:0;;;;;:::i;:::-;;:::i;36891:28::-;;;;;;;;;;-1:-1:-1;36891:28:0;;;;;;;;;;;43803:189;;;;;;;;;;-1:-1:-1;43803:189:0;;;;;:::i;:::-;;:::i;46773:230::-;;;;;;;;;;-1:-1:-1;46773:230:0;;;;;:::i;:::-;;:::i;36234:49::-;;;;;;;;;;-1:-1:-1;36234:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36997:24;;;;;;;;;;-1:-1:-1;36997:24:0;;;;-1:-1:-1;;;36997:24:0;;;;;;15129:142;;;;;;;;;;-1:-1:-1;15129:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;15236:18:0;;;15209:7;15236:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15129:142;36771:24;;;;;;;;;;;;;;;;36459:38;;;;;;;;;;-1:-1:-1;36459:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47863:203;;;;;;;;;;-1:-1:-1;47863:203:0;;;;;:::i;:::-;;:::i;25230:220::-;;;;;;;;;;-1:-1:-1;25230:220:0;;;;;:::i;:::-;;:::i;36669:30::-;;;;;;;;;;-1:-1:-1;36669:30:0;;;;-1:-1:-1;;;;;36669:30:0;;;36826:21;;;;;;;;;;;;;;;;42672:224;;;;;;;;;;-1:-1:-1;42672:224:0;;;;;:::i;:::-;;:::i;13297:91::-;13342:13;13375:5;13368:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13297:91;:::o;15590:190::-;15663:4;4382:10;15719:31;4382:10;15735:7;15744:5;15719:8;:31::i;:::-;15768:4;15761:11;;;15590:190;;;;;:::o;44651:323::-;44734:9;;-1:-1:-1;;;;;44734:9:0;44720:10;:23;;;;:48;;-1:-1:-1;24370:6:0;;-1:-1:-1;;;;;24370:6:0;44747:10;:21;;44720:48;44716:95;;;44790:21;;-1:-1:-1;;;44790:21:0;;;;;;;;;;;44716:95;-1:-1:-1;;;;;44826:24:0;;44822:57;;44859:20;;-1:-1:-1;;;44859:20:0;;;;;;;;;;;44822:57;44911:9;;44895:38;;-1:-1:-1;;;;;44895:38:0;;;;44911:9;;44895:38;;44911:9;;44895:38;44944:9;:22;;-1:-1:-1;;;;;;44944:22:0;-1:-1:-1;;;;;44944:22:0;;;;;;;;;;44651:323::o;43186:389::-;24183:13;:11;:13::i;:::-;-1:-1:-1;;;;;43407:16:0;::::1;;::::0;;;:6:::1;:16;::::0;;;;;::::1;;43403:49;;;43432:20;;-1:-1:-1::0;;;43432:20:0::1;;;;;;;;;;;43403:49;-1:-1:-1::0;;;;;43463:29:0;::::1;;::::0;;;:19:::1;:29;::::0;;;;;;;;:39;;-1:-1:-1;;43463:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43518:49;;1163:41:1;;;43518:49:0::1;::::0;1136:18:1;43518:49:0::1;;;;;;;;43186:389:::0;;:::o;16358:249::-;16445:4;4382:10;16503:37;16519:4;4382:10;16534:5;16503:15;:37::i;:::-;16551:26;16561:4;16567:2;16571:5;16551:9;:26::i;:::-;-1:-1:-1;16595:4:0;;16358:249;-1:-1:-1;;;;16358:249:0:o;41967:423::-;24183:13;:11;:13::i;:::-;42129:1:::1;42109:21:::0;;;42105:86:::1;;42154:25;;-1:-1:-1::0;;;42154:25:0::1;;;;;;;;;;;42105:86;42206:9;42201:182;42221:20:::0;;::::1;42201:182;;;42297:7;42263:17;:31;42281:9;;42291:1;42281:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42263:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42263:31:0;:41;;-1:-1:-1;;42263:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42349:9;;42359:1;42349:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42324:47:0::1;;42363:7;42324:47;;;;1188:14:1::0;1181:22;1163:41;;1151:2;1136:18;;1023:187;42324:47:0::1;;;;;;;;42243:3;;42201:182;;;;41967:423:::0;;;:::o;40996:214::-;24183:13;:11;:13::i;:::-;41077:2:::1;41066:8;:13;;;41062:74;;;41103:21;;-1:-1:-1::0;;;41103:21:0::1;;;;;;;;;;;41062:74;41146:7;:18:::0;;-1:-1:-1;;41146:18:0::1;-1:-1:-1::0;;;41146:18:0::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;41180:22:::1;::::0;3517:36:1;;;41180:22:0::1;::::0;3505:2:1;3490:18;41180:22:0::1;;;;;;;;40996:214:::0;:::o;46419:195::-;24183:13;:11;:13::i;:::-;46475:8:::1;::::0;-1:-1:-1;;;46475:8:0;::::1;;;46487:1;46475:13;46471:49;;46497:23;;-1:-1:-1::0;;;46497:23:0::1;;;;;;;;;;;46471:49;46564:4;46531:12;14653:18:::0;;;;;;;;;;;46581:25:::1;14653:18:::0;46581:16:::1;:25::i;:::-;46460:154;46419:195::o:0;45809:449::-;24183:13;:11;:13::i;:::-;46049:19:::1;46064:4;37214:17;46049:19;:::i;:::-;46032:14;:36;:91;;;-1:-1:-1::0;46102:21:0::1;46117:6;37214:17;46102:21;:::i;:::-;46085:14;:38;46032:91;46014:148;;;46142:20;;-1:-1:-1::0;;;46142:20:0::1;;;;;;;;;;;46014:148;46173:13;:30:::0;;;46219:31:::1;::::0;1361:25:1;;;46219:31:0::1;::::0;1349:2:1;1334:18;46219:31:0::1;1215:177:1::0;44207:217:0;24183:13;:11;:13::i;:::-;44293:18:::1;44308:3;37214:17;44293:18;:::i;:::-;44280:10;:31;44276:64;;;44320:20;;-1:-1:-1::0;;;44320:20:0::1;;;;;;;;;;;44276:64;44351:9;:22:::0;;;44389:27:::1;::::0;1361:25:1;;;44389:27:0::1;::::0;1349:2:1;1334:18;44389:27:0::1;1215:177:1::0;40600:208:0;24183:13;:11;:13::i;:::-;40678:2:::1;40668:7;:12;;;40664:73;;;40704:21;;-1:-1:-1::0;;;40704:21:0::1;;;;;;;;;;;40664:73;40747:6;:16:::0;;-1:-1:-1;;40747:16:0::1;-1:-1:-1::0;;;40747:16:0::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;40779:21:::1;::::0;3517:36:1;;;40779:21:0::1;::::0;3505:2:1;3490:18;40779:21:0::1;3375:184:1::0;24972:103:0;24183:13;:11;:13::i;:::-;25037:30:::1;25064:1;25037:18;:30::i;:::-;24972:103::o:0;41459:222::-;24183:13;:11;:13::i;:::-;-1:-1:-1;;;;;41577:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;;;;:37;;-1:-1:-1;;41577:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41630:43;;1163:41:1;;;41630:43:0::1;::::0;1136:18:1;41630:43:0::1;1023:187:1::0;47211:368:0;24183:13;:11;:13::i;:::-;47338:21:::1;47350:9:::0;47338;:21:::1;:::i;:::-;47324:11;:35:::0;;-1:-1:-1;;47324:35:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;47414:11;::::1;;-1:-1:-1::0;47414:16:0;47410:49:::1;;47439:20;;-1:-1:-1::0;;;47439:20:0::1;;;;;;;;;;;47410:49;47470:8;:20:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;47501:20:0;;;;;;;;::::1;::::0;;::::1;;::::0;;;47537:34:::1;::::0;;7134::1;;;7199:2;7184:18;;7177:43;;;;47537:34:0::1;::::0;7082:18:1;47537:34:0::1;;;;;;;47211:368:::0;;:::o;48074:187::-;24183:13;:11;:13::i;:::-;48169:38:::1;::::0;-1:-1:-1;;;48169:38:0;;48201:4:::1;48169:38;::::0;::::1;4362:51:1::0;48155:11:0::1;::::0;-1:-1:-1;;;;;48169:23:0;::::1;::::0;::::1;::::0;4335:18:1;;48169:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48218:35;::::0;-1:-1:-1;;;48218:35:0;;-1:-1:-1;;;;;7612:32:1;;;48218:35:0::1;::::0;::::1;7594:51:1::0;7661:18;;;7654:34;;;48155:52:0;;-1:-1:-1;48218:22:0;;::::1;::::0;::::1;::::0;7567:18:1;;48218:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;47587:268::-:0;24183:13;:11;:13::i;:::-;47701:7:::1;-1:-1:-1::0;;;;;47684:30:0::1;;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47667:49:0::1;:6;;;;;;;;;-1:-1:-1::0;;;;;47667:6:0::1;-1:-1:-1::0;;;;;47667:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47667:49:0::1;;47663:95;;47738:20;;-1:-1:-1::0;;;47738:20:0::1;;;;;;;;;;;47663:95;47769:6;:34:::0;;-1:-1:-1;;;;;;47769:34:0::1;-1:-1:-1::0;;;;;47769:34:0;::::1;::::0;;::::1;::::0;;;47819:28:::1;::::0;::::1;::::0;-1:-1:-1;;47819:28:0::1;47587:268:::0;:::o;13507:95::-;13554:13;13587:7;13580:14;;;;;:::i;14884:182::-;14953:4;4382:10;15009:27;4382:10;15026:2;15030:5;15009:9;:27::i;45229:377::-;45324:15;;-1:-1:-1;;;;;45324:15:0;45310:10;:29;;;;:54;;-1:-1:-1;24370:6:0;;-1:-1:-1;;;;;24370:6:0;45343:10;:21;;45310:54;45306:101;;;45386:21;;-1:-1:-1;;;45386:21:0;;;;;;;;;;;45306:101;-1:-1:-1;;;;;45422:30:0;;45418:63;;45461:20;;-1:-1:-1;;;45461:20:0;;;;;;;;;;;45418:63;45519:15;;45497:56;;-1:-1:-1;;;;;45497:56:0;;;;45519:15;;45497:56;;45519:15;;45497:56;45564:15;:34;;-1:-1:-1;;;;;;45564:34:0;-1:-1:-1;;;;;45564:34:0;;;;;;;;;;45229:377::o;43803:189::-;24183:13;:11;:13::i;:::-;43877:18:::1;43892:3;37214:17;43877:18;:::i;:::-;43868:6;:27;43864:60;;;43904:20;;-1:-1:-1::0;;;43904:20:0::1;;;;;;;;;;;43864:60;43935:5;:14:::0;;;43965:19:::1;::::0;1361:25:1;;;43965:19:0::1;::::0;1349:2:1;1334:18;43965:19:0::1;1215:177:1::0;46773:230:0;24183:13;:11;:13::i;:::-;-1:-1:-1;;;;;46839:19:0;::::1;46835:52;;46867:20;;-1:-1:-1::0;;;46867:20:0::1;;;;;;;;;;;46835:52;-1:-1:-1::0;;;;;46898:13:0;::::1;;::::0;;;:6:::1;:13;::::0;;;;;;;:20;;46914:4:::1;-1:-1:-1::0;;46898:20:0;;::::1;::::0;::::1;::::0;;;46929:19:::1;:26:::0;;;;;;:33;;;;::::1;;::::0;;;46978:17;::::1;::::0;46898:13;46978:17:::1;46773:230:::0;:::o;47863:203::-;24183:13;:11;:13::i;:::-;47944:12:::1;47970:3;-1:-1:-1::0;;;;;47962:17:0::1;47987:7;47962:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47943:56;;;48015:7;48010:48;;48031:27;;-1:-1:-1::0;;;48031:27:0::1;;;;;;;;;;;48010:48;47932:134;47863:203:::0;;:::o;25230:220::-;24183:13;:11;:13::i;:::-;-1:-1:-1;;;;;25315:22:0;::::1;25311:93;;25361:31;::::0;-1:-1:-1;;;25361:31:0;;25389:1:::1;25361:31;::::0;::::1;4362:51:1::0;4335:18;;25361:31:0::1;;;;;;;;25311:93;25414:28;25433:8;25414:18;:28::i;42672:224::-:0;24183:13;:11;:13::i;:::-;-1:-1:-1;;;;;42792:25:0;::::1;;::::0;;;:15:::1;:25;::::0;;;;;;;;:35;;-1:-1:-1;;42792:35:0::1;::::0;::::1;;::::0;;::::1;::::0;;;42843:45;;1163:41:1;;;42843:45:0::1;::::0;1136:18:1;42843:45:0::1;1023:187:1::0;20417:130:0;20502:37;20511:5;20518:7;20527:5;20534:4;20502:8;:37::i;24462:166::-;24370:6;;-1:-1:-1;;;;;24370:6:0;4382:10;24522:23;24518:103;;24569:40;;-1:-1:-1;;;24569:40:0;;4382:10;24569:40;;;4362:51:1;4335:18;;24569:40:0;4216:203:1;22133:487:0;-1:-1:-1;;;;;15236:18:0;;;22233:24;15236:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22300:37:0;;22296:317;;22377:5;22358:16;:24;22354:132;;;22410:60;;-1:-1:-1;;;22410:60:0;;-1:-1:-1;;;;;8635:32:1;;22410:60:0;;;8617:51:1;8684:18;;;8677:34;;;8727:18;;;8720:34;;;8590:18;;22410:60:0;8415:345:1;22354:132:0;22529:57;22538:5;22545:7;22573:5;22554:16;:24;22580:5;22529:8;:57::i;16992:308::-;-1:-1:-1;;;;;17076:18:0;;17072:88;;17118:30;;-1:-1:-1;;;17118:30:0;;17145:1;17118:30;;;4362:51:1;4335:18;;17118:30:0;4216:203:1;17072:88:0;-1:-1:-1;;;;;17174:16:0;;17170:88;;17214:32;;-1:-1:-1;;;17214:32:0;;17243:1;17214:32;;;4362:51:1;4335:18;;17214:32:0;4216:203:1;17170:88:0;17268:24;17276:4;17282:2;17286:5;17268:7;:24::i;50325:1337::-;50384:8;:14;;-1:-1:-1;;;;50384:14:0;;-1:-1:-1;;;50384:14:0;;;;50397:1;50384:14;;;;;;;;;-1:-1:-1;50413:12:0;;;50409:42;;50434:17;;-1:-1:-1;;;50434:17:0;;;;;;;;;;;50409:42;50528:16;;;50542:1;50528:16;;;;;;;;50504:21;;50528:16;;;;;;;;;;-1:-1:-1;50528:16:0;50504:40;;50573:4;50555;50560:1;50555:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50555:23:0;;;:7;;;;;;;;;;:23;;;;50599:6;;:13;;;-1:-1:-1;;;50599:13:0;;;;:6;;;;;:11;;:13;;;;;50555:7;;50599:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50589:4;50594:1;50589:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50589:23:0;;;:7;;;;;;;;;:23;50642:6;;:35;;-1:-1:-1;;;50642:35:0;;50625:14;;50642:6;;;;;:20;;:35;;50663:7;;50672:4;;50642:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50642:35:0;;;;;;;;;;;;:::i;:::-;50678:1;50642:38;;;;;;;;:::i;:::-;;;;;;;50625:55;;50721:2;50704:9;50716:1;50704:13;;;;:::i;:::-;50703:20;;;;:::i;:::-;50756:6;;:191;;-1:-1:-1;;;50756:191:0;;50691:32;;-1:-1:-1;;;;;;50756:6:0;;:57;;:191;;50828:7;;50691:32;;50874:4;;50901;;50921:15;;50756:191;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51046:11:0;;51010:21;;-1:-1:-1;51046:11:0;;;;;50989:18;51046:16;;-1:-1:-1;51042:29:0;;51064:7;;;50325:1337;:::o;51042:29::-;51127:11;;51081:14;;51127:11;;;;;;;51099:24;;51115:8;51099:13;:24;:::i;:::-;51098:40;;;;:::i;:::-;51081:57;-1:-1:-1;51149:14:0;51166:25;51081:57;51166:13;:25;:::i;:::-;51149:42;-1:-1:-1;51238:13:0;;51234:211;;51295:15;;51287:83;;51269:12;;-1:-1:-1;;;;;51295:15:0;;51324:9;;51269:12;51287:83;51269:12;51287:83;51324:9;51295:15;51287:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51268:102;;;51390:7;51385:48;;51406:27;;-1:-1:-1;;;51406:27:0;;;;;;;;;;;51385:48;51253:192;51234:211;51459:13;;51455:173;;51516:9;;51508:45;;51490:12;;-1:-1:-1;;;;;51516:9:0;;51539;;51490:12;51508:45;51490:12;51508:45;51539:9;51516;51508:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51489:64;;;51573:7;51568:48;;51589:27;;-1:-1:-1;;;51589:27:0;;;;;;;;;;;51568:48;51474:154;51455:173;-1:-1:-1;;51640:8:0;:14;;-1:-1:-1;;;;51640:14:0;;-1:-1:-1;;;51640:14:0;;;;51653:1;51640:14;;;;;;;;;-1:-1:-1;;;;50325:1337:0:o;25610:191::-;25703:6;;;-1:-1:-1;;;;;25720:17:0;;;-1:-1:-1;;;;;;25720:17:0;;;;;;;25753:40;;25703:6;;;25720:17;25703:6;;25753:40;;25684:16;;25753:40;25673:128;25610:191;:::o;21398:443::-;-1:-1:-1;;;;;21511:19:0;;21507:91;;21554:32;;-1:-1:-1;;;21554:32:0;;21583:1;21554:32;;;4362:51:1;4335:18;;21554:32:0;4216:203:1;21507:91:0;-1:-1:-1;;;;;21612:21:0;;21608:92;;21657:31;;-1:-1:-1;;;21657:31:0;;21685:1;21657:31;;;4362:51:1;4335:18;;21657:31:0;4216:203:1;21608:92:0;-1:-1:-1;;;;;21710:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21756:78;;;;21807:7;-1:-1:-1;;;;;21791:31:0;21800:5;-1:-1:-1;;;;;21791:31:0;;21816:5;21791:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;21791:31:0;;;;;;;;21398:443;;;;:::o;48975:1342::-;-1:-1:-1;;;;;49073:12:0;;;49060:10;49073:12;;;:6;:12;;;;;;;;;49110:10;;;;;;;;;49150:23;;;:17;:23;;;;;;49073:12;;;;;49110:10;;;;49150:23;;:48;;-1:-1:-1;;;;;;49177:21:0;;;;;;:17;:21;;;;;;;;49150:48;-1:-1:-1;;;;;49310:21:0;;;;;;:15;:21;;;;;;49131:67;;-1:-1:-1;49310:21:0;;49309:22;:46;;;;-1:-1:-1;;;;;;49336:19:0;;;;;;:15;:19;;;;;;;;49335:20;49309:46;:64;;;;;49368:5;;49359:6;:14;49309:64;49305:111;;;49395:21;;-1:-1:-1;;;49395:21:0;;;;;;;;;;;49305:111;49469:4;49429:19;14653:18;;;;;;;;;;;49504:6;;:53;;;;;49544:13;;49527:14;:30;49504:53;:82;;;;;49575:11;49574:12;49504:82;:112;;;;-1:-1:-1;49603:8:0;;-1:-1:-1;;;49603:8:0;;;;49615:1;49603:13;49504:112;49486:201;;;49643:32;49660:14;49643:16;:32::i;:::-;49699:8;49727:11;49722:265;;49755:9;49767:27;49780:5;49787:6;49767:12;:27::i;:::-;49755:39;-1:-1:-1;37276:3:0;49816:12;;;;:6;:12;:::i;:::-;49815:27;;;;:::i;:::-;49809:33;-1:-1:-1;49861:7:0;;49857:119;;49889:13;49899:3;49889:13;;:::i;:::-;;;49921:39;49935:4;49949;49956:3;49921:13;:39::i;:::-;49740:247;49722:265;50001:6;:27;;;;-1:-1:-1;50011:12:0;;:17;50001:27;49997:90;;;50060:15;50045:12;:30;49997:90;-1:-1:-1;;;;;50131:23:0;;;;;;:19;:23;;;;;;;;50130:24;:62;;;;;50183:9;;50174:6;50158:13;50168:2;-1:-1:-1;;;;;14653:18:0;14626:7;14653:18;;;;;;;;;;;;14561:118;50158:13;:22;;;;:::i;:::-;:34;50130:62;50126:113;;;50214:25;;-1:-1:-1;;;50214:25:0;;;;;;;;;;;50126:113;50278:31;50292:4;50298:2;50302:6;50278:13;:31::i;:::-;49049:1268;;;;;48975:1342;;;:::o;51992:644::-;52086:5;52194;52193:6;:17;;;;;52204:6;52203:7;52193:17;52192:40;;;-1:-1:-1;52215:12:0;;:17;52192:40;52188:54;;;-1:-1:-1;52241:1:0;52234:8;;52188:54;52255:15;52291:12;;52273:15;:30;;;;:::i;:::-;52255:48;;37155:12;52376:10;:26;52372:147;;52423:5;52419:24;;;-1:-1:-1;;52437:6:0;;-1:-1:-1;;;52437:6:0;;;;52430:13;;52419:24;52462:6;52458:26;;;-1:-1:-1;;52477:7:0;;-1:-1:-1;;;52477:7:0;;;;52470:14;;52458:26;52506:1;52499:8;;;;;52372:147;52599:26;37101:10;52599;:26;:::i;:::-;52592:35;;:2;:35;:::i;:::-;52579:49;51992:644;-1:-1:-1;;;;51992:644:0:o;17624:1135::-;-1:-1:-1;;;;;17714:18:0;;17710:552;;17868:5;17852:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17710:552:0;;-1:-1:-1;17710:552:0;;-1:-1:-1;;;;;17928:15:0;;17906:19;17928:15;;;;;;;;;;;17962:19;;;17958:117;;;18009:50;;-1:-1:-1;;;18009:50:0;;-1:-1:-1;;;;;8635:32:1;;18009:50:0;;;8617:51:1;8684:18;;;8677:34;;;8727:18;;;8720:34;;;8590:18;;18009:50:0;8415:345:1;17958:117:0;-1:-1:-1;;;;;18198:15:0;;:9;:15;;;;;;;;;;18216:19;;;;18198:37;;17710:552;-1:-1:-1;;;;;18278:16:0;;18274:435;;18444:12;:21;;;;;;;18274:435;;;-1:-1:-1;;;;;18660:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18274:435;18741:2;-1:-1:-1;;;;;18726:25:0;18735:4;-1:-1:-1;;;;;18726:25:0;;18745:5;18726:25;;;;1361::1;;1349:2;1334:18;;1215:177;18726:25:0;;;;;;;;17624:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;:::-;1633:5;1397:247;-1:-1:-1;;;1397:247:1:o;1649:118::-;1735:5;1728:13;1721:21;1714:5;1711:32;1701:60;;1757:1;1754;1747:12;1772:382;1837:6;1845;1898:2;1886:9;1877:7;1873:23;1869:32;1866:52;;;1914:1;1911;1904:12;1866:52;1953:9;1940:23;1972:31;1997:5;1972:31;:::i;:::-;2022:5;-1:-1:-1;2079:2:1;2064:18;;2051:32;2092:30;2051:32;2092:30;:::i;:::-;2141:7;2131:17;;;1772:382;;;;;:::o;2159:456::-;2236:6;2244;2252;2305:2;2293:9;2284:7;2280:23;2276:32;2273:52;;;2321:1;2318;2311:12;2273:52;2360:9;2347:23;2379:31;2404:5;2379:31;:::i;:::-;2429:5;-1:-1:-1;2486:2:1;2471:18;;2458:32;2499:33;2458:32;2499:33;:::i;:::-;2159:456;;2551:7;;-1:-1:-1;;;2605:2:1;2590:18;;;;2577:32;;2159:456::o;2620:750::-;2712:6;2720;2728;2781:2;2769:9;2760:7;2756:23;2752:32;2749:52;;;2797:1;2794;2787:12;2749:52;2837:9;2824:23;2866:18;2907:2;2899:6;2896:14;2893:34;;;2923:1;2920;2913:12;2893:34;2961:6;2950:9;2946:22;2936:32;;3006:7;2999:4;2995:2;2991:13;2987:27;2977:55;;3028:1;3025;3018:12;2977:55;3068:2;3055:16;3094:2;3086:6;3083:14;3080:34;;;3110:1;3107;3100:12;3080:34;3165:7;3158:4;3148:6;3145:1;3141:14;3137:2;3133:23;3129:34;3126:47;3123:67;;;3186:1;3183;3176:12;3123:67;3217:4;3209:13;;;;-1:-1:-1;3241:6:1;-1:-1:-1;;3282:20:1;;3269:34;3312:28;3269:34;3312:28;:::i;:::-;3359:5;3349:15;;;2620:750;;;;;:::o;3564:269::-;3621:6;3674:2;3662:9;3653:7;3649:23;3645:32;3642:52;;;3690:1;3687;3680:12;3642:52;3729:9;3716:23;3779:4;3772:5;3768:16;3761:5;3758:27;3748:55;;3799:1;3796;3789:12;3838:180;3897:6;3950:2;3938:9;3929:7;3925:23;3921:32;3918:52;;;3966:1;3963;3956:12;3918:52;-1:-1:-1;3989:23:1;;3838:180;-1:-1:-1;3838:180:1:o;4424:159::-;4491:20;;4551:6;4540:18;;4530:29;;4520:57;;4573:1;4570;4563:12;4520:57;4424:159;;;:::o;4588:256::-;4654:6;4662;4715:2;4703:9;4694:7;4690:23;4686:32;4683:52;;;4731:1;4728;4721:12;4683:52;4754:28;4772:9;4754:28;:::i;:::-;4744:38;;4801:37;4834:2;4823:9;4819:18;4801:37;:::i;:::-;4791:47;;4588:256;;;;;:::o;4849:388::-;4917:6;4925;4978:2;4966:9;4957:7;4953:23;4949:32;4946:52;;;4994:1;4991;4984:12;4946:52;5033:9;5020:23;5052:31;5077:5;5052:31;:::i;:::-;5102:5;-1:-1:-1;5159:2:1;5144:18;;5131:32;5172:33;5131:32;5172:33;:::i;5704:380::-;5783:1;5779:12;;;;5826;;;5847:61;;5901:4;5893:6;5889:17;5879:27;;5847:61;5954:2;5946:6;5943:14;5923:18;5920:38;5917:161;;6000:10;5995:3;5991:20;5988:1;5981:31;6035:4;6032:1;6025:15;6063:4;6060:1;6053:15;5917:161;;5704:380;;;:::o;6089:127::-;6150:10;6145:3;6141:20;6138:1;6131:31;6181:4;6178:1;6171:15;6205:4;6202:1;6195:15;6412:127;6473:10;6468:3;6464:20;6461:1;6454:31;6504:4;6501:1;6494:15;6528:4;6525:1;6518:15;6544:217;6584:1;6610;6600:132;;6654:10;6649:3;6645:20;6642:1;6635:31;6689:4;6686:1;6679:15;6717:4;6714:1;6707:15;6600:132;-1:-1:-1;6746:9:1;;6544:217::o;6766:168::-;6833:6;6859:10;;;6871;;;6855:27;;6894:11;;;6891:37;;;6908:18;;:::i;:::-;6891:37;6766:168;;;;:::o;7231:184::-;7301:6;7354:2;7342:9;7333:7;7329:23;7325:32;7322:52;;;7370:1;7367;7360:12;7322:52;-1:-1:-1;7393:16:1;;7231:184;-1:-1:-1;7231:184:1:o;7699:245::-;7766:6;7819:2;7807:9;7798:7;7794:23;7790:32;7787:52;;;7835:1;7832;7825:12;7787:52;7867:9;7861:16;7886:28;7908:5;7886:28;:::i;7949:251::-;8019:6;8072:2;8060:9;8051:7;8047:23;8043:32;8040:52;;;8088:1;8085;8078:12;8040:52;8120:9;8114:16;8139:31;8164:5;8139:31;:::i;8765:127::-;8826:10;8821:3;8817:20;8814:1;8807:31;8857:4;8854:1;8847:15;8881:4;8878:1;8871:15;8897:465;8950:3;8988:5;8982:12;9015:6;9010:3;9003:19;9041:4;9070;9065:3;9061:14;9054:21;;9109:4;9102:5;9098:16;9132:1;9142:195;9156:6;9153:1;9150:13;9142:195;;;9221:13;;-1:-1:-1;;;;;9217:39:1;9205:52;;9277:12;;;;9312:15;;;;9253:1;9171:9;9142:195;;;-1:-1:-1;9353:3:1;;8897:465;-1:-1:-1;;;;;8897:465:1:o;9367:332::-;9574:6;9563:9;9556:25;9617:2;9612;9601:9;9597:18;9590:30;9537:4;9637:56;9689:2;9678:9;9674:18;9666:6;9637:56;:::i;9704:1105::-;9799:6;9830:2;9873;9861:9;9852:7;9848:23;9844:32;9841:52;;;9889:1;9886;9879:12;9841:52;9922:9;9916:16;9951:18;9992:2;9984:6;9981:14;9978:34;;;10008:1;10005;9998:12;9978:34;10046:6;10035:9;10031:22;10021:32;;10091:7;10084:4;10080:2;10076:13;10072:27;10062:55;;10113:1;10110;10103:12;10062:55;10142:2;10136:9;10164:2;10160;10157:10;10154:36;;;10170:18;;:::i;:::-;10216:2;10213:1;10209:10;10248:2;10242:9;10311:2;10307:7;10302:2;10298;10294:11;10290:25;10282:6;10278:38;10366:6;10354:10;10351:22;10346:2;10334:10;10331:18;10328:46;10325:72;;;10377:18;;:::i;:::-;10413:2;10406:22;10463:18;;;10497:15;;;;-1:-1:-1;10539:11:1;;;10535:20;;;10567:19;;;10564:39;;;10599:1;10596;10589:12;10564:39;10623:11;;;;10643:135;10659:6;10654:3;10651:15;10643:135;;;10725:10;;10713:23;;10676:12;;;;10756;;;;10643:135;;;10797:6;9704:1105;-1:-1:-1;;;;;;;;9704:1105:1:o;10814:168::-;10887:9;;;10918;;10935:15;;;10929:22;;10915:37;10905:71;;10956:18;;:::i;10987:574::-;11278:6;11267:9;11260:25;11321:6;11316:2;11305:9;11301:18;11294:34;11364:3;11359:2;11348:9;11344:18;11337:31;11241:4;11385:57;11437:3;11426:9;11422:19;11414:6;11385:57;:::i;:::-;-1:-1:-1;;;;;11478:32:1;;;;11473:2;11458:18;;11451:60;-1:-1:-1;11542:3:1;11527:19;11520:35;11377:65;10987:574;-1:-1:-1;;;10987:574:1:o;11566:128::-;11633:9;;;11654:11;;;11651:37;;;11668:18;;:::i;11699:125::-;11764:9;;;11785:10;;;11782:36;;;11798:18;;:::i

Swarm Source

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