ETH Price: $3,491.65 (+0.10%)
Gas: 2 Gwei

Token

Changpeng Zhao (CZ)
 

Overview

Max Total Supply

69,420,000 CZ

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
510,557.884508078481278338 CZ

Value
$0.00
0x4312d8230d9c286ec870989e71d1ccbd95910e2e
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:
MetadropERC20

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 1000 runs

Other Settings:
paris EvmVersion, BSL 1.1 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-30
*/

//
//
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@                                                                                                @@
// @@   This token was launched using software provided by Metadrop. To learn more or to launch      @@
// @@   your own token, visit: https://metadrop.com. See legal info at the end of this file.         @@
// @@                                                                                                @@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//
// SPDX-License-Identifier: BUSL-1.1
// Metadrop Contracts (v2.1.0)
//
// Sources flattened with hardhat v2.20.1 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// 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/access/[email protected]

// 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 @openzeppelin/contracts/interfaces/[email protected]

// 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/[email protected]

// 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/[email protected]

// 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/token/ERC20/[email protected]

// 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/token/ERC20/extensions/[email protected]

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

pragma solidity ^0.8.20;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, deducting from
     * the caller's allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

// File @openzeppelin/contracts/token/ERC20/utils/[email protected]

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

pragma solidity ^0.8.20;

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

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

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

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

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

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

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

// File contracts/erc20/deploy/IMetadropERC20.sol

pragma solidity 0.8.24;

interface IMetadropERC20 is IERC20, IERC20Metadata {
  error LimitCannotBeChanged();
  error LimitMustBeHigherOrUnchanged();
  error LimitTooHigh();
  error InitialLiquidityNotYetAdded();
  error TransferFailed();
  error MaxTokensPerWalletExceeded();
  error IncorrectETHValueProvided();
  error DeductionsOnBuyExceedOrEqualOneHundredPercent();
  error AutoswapThresholdTooLow();
  error TotalSupplyNotMinted();
  error RecipientsAndAmountsMismatch();
  error CannotPerformDuringAutoswap();
  error NoETHForLiquidityPair();
  error InitialLiquidityAlreadyAdded();
  error InsufficientLockupPeriod();
  error InsufficientTokensForInitialLiquidity();
  error LPTokensBalanceMismatch();
  error LiquidityPoolCannotBeAddressZero();
  error CanOnlyReduce();
  error MaxBuysPerBlockExceeded();
  error MaxTokensPerTransactionExceeded();
  error CannotWithdrawThisToken();
  error AmountExceedsAvailable();
  error PlatformFeeAlreadyDistributed();

  event AutoswapThresholdUpdated(uint256 oldThreshold, uint256 newThreshold);
  event ExternalCallError(uint256 identifier);
  event InitialLiquidityAdded(uint256 tokenA, uint256 tokenB, uint256 lpToken);

  event MaxTokensPerWalletLimitUpdated(uint256 previousLimit, uint256 newLimit);
  event MaxTokensPerTransactionLimitUpdated(
    uint256 previousLimit,
    uint256 newLimit
  );
  event LiquidityLocked(
    uint256 lpTokens,
    uint256 lpLockupInDays,
    uint256 streamId
  );
  event LiquidityBurned(uint256 lpTokens);
  event LiquidityPoolCreated(address addedPool);
  event LiquidityPoolAddressUpdated(address account, bool isLiquidityPool);
  event TaxExemptAddressUpdated(address account, bool isTaxExempt);
  event MetadropTaxBasisPointsChanged(
    uint256 oldBuyBasisPoints,
    uint256 newBuyBasisPoints,
    uint256 oldSellBasisPoints,
    uint256 newSellBasisPoints
  );
  event ProjectTaxBasisPointsChanged(
    uint256 oldBuyBasisPoints,
    uint256 newBuyBasisPoints,
    uint256 oldSellBasisPoints,
    uint256 newSellBasisPoints
  );
  event ProjectTaxRecipientUpdated(address treasury);
  event UnlimitedAddressUpdated(address account, bool isUnlimited);
  event PlatformFeeDistributed();

  struct ERC20BaseParams {
    string name;
    string symbol;
    address metadropTreasury;
    address initialOwner;
    address uniswapV2Router;
    address tokenVault;
    uint256 totalSupply;
    uint256 deploymentFee;
    address[] supplyRecipients;
    uint256[] supplyAmounts;
  }

  struct ERC20LiquidityParams {
    address lpOwner;
  }

  struct ERC20AutoburnParams {
    uint256 autoBurnDurationInBlocks;
    uint256 autoBurnBasisPoints;
  }

  struct ERC20LaunchPoolParams {
    address launchPoolFactory;
    uint256 launchPoolSupply;
  }

  struct ERC20LimitParams {
    uint256 limitProtectionDurationInSeconds;
    uint256 maxTokensPerTransaction;
    uint256 maxTokensPerWallet;
  }

  struct ERC20TaxParams {
    uint256 projectBuyTaxBasisPoints;
    uint256 projectSellTaxBasisPoints;
    uint256 autoswapThresholdBasisPoints;
    uint256 metadropBuyTaxBasisPoints;
    uint256 metadropSellTaxBasisPoints;
    uint256 metadropTaxPeriodInDays;
    address projectTaxRecipient;
    address metadropTaxRecipient;
    uint256 metadropMinBuyTaxBasisPoints;
    uint256 metadropMinSellTaxBasisPoints;
    uint256 metadropBuyTaxProportionBasisPoints;
    uint256 metadropSellTaxProportionBasisPoints;
  }

  function addInitialLiquidity(
    uint256 lpLockupInDaysOverride_,
    bool burnLPTokensOverride_
  ) external payable;
  function isLiquidityPool(address address_) external view returns (bool);
  function isUnlimited(address address_) external view returns (bool);
  function isTaxExempt(address address_) external view returns (bool);
  function setIsLiquidityPool(address address_, bool isLiquidityPool_) external;
  function setIsUnlimited(address address_, bool isUnlimited_) external;
  function setIsTaxExempt(address address_, bool isTaxExempt_) external;
  function setProjectTaxRecipient(address projectTaxRecipient_) external;
  function setAutoswapThresholdBasisPoints(
    uint256 swapThresholdBasisPoints_
  ) external;
  function setProjectTaxRates(
    uint256 newProjectBuyTaxBasisPoints_,
    uint256 newProjectSellTaxBasisPoints_
  ) external;
  function setLimits(
    uint256 newMaxTokensPerTransaction_,
    uint256 newMaxTokensPerWallet_
  ) external;
  function limitsEnforced() external view returns (bool);
  function getMetadropBuyTaxBasisPoints() external view returns (uint256);
  function getMetadropSellTaxBasisPoints() external view returns (uint256);
  function totalBuyTaxBasisPoints() external view returns (uint256);
  function totalSellTaxBasisPoints() external view returns (uint256);
  function burn(uint256 value) external;
  function burnFrom(address account, uint256 value) external;

  function lpSupply() external returns (uint256);
  function limitProtectionDurationInSeconds() external returns (uint256);
  function metadropTaxPeriodInDays() external returns (uint256);
  function metadropBuyTaxProportionBasisPoints() external returns (uint256);
  function metadropSellTaxProportionBasisPoints() external returns (uint256);
  function metadropMinBuyTaxBasisPoints() external returns (uint256);
  function metadropMinSellTaxBasisPoints() external returns (uint256);
  function autoBurnDurationInBlocks() external returns (uint256);
  function autoBurnBasisPoints() external returns (uint256);
  function metadropTaxRecipient() external returns (address);
  function uniswapV2Pair() external returns (address);
  // function launchPool() external returns (address);
  function lpOwner() external returns (address);
  function distributePlatformFee() external;
}

// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

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

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

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

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

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

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

interface IWETH {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}

// File contracts/vendor/sablier/ISablierV2LockupLinear.sol

pragma solidity >=0.8.19;

type UD60x18 is uint256;

struct Broker {
  address account;
  UD60x18 fee;
}

library LockupLinear {
  struct CreateWithDurations {
    address sender;
    address recipient;
    uint128 totalAmount;
    IERC20 asset;
    bool cancelable;
    bool transferable;
    Durations durations;
    Broker broker;
  }

  /// @notice Struct encapsulating the cliff duration and the total duration.
  /// @param cliff The cliff duration in seconds.
  /// @param total The total duration in seconds.
  struct Durations {
    uint40 cliff;
    uint40 total;
  }
}

interface ISablierV2LockupLinear {
  function createWithDurations(
    LockupLinear.CreateWithDurations calldata params
  ) external returns (uint256 streamId);
}

// File contracts/erc20/deploy/MetadropERC20.sol

pragma solidity 0.8.24;

// OpenZeppelin

// Uniswap V2

// Metadrop

contract MetadropERC20 is ERC20, ERC20Burnable, IMetadropERC20, Ownable {
  using SafeERC20 for IERC20;

  bytes32 public constant x_META_ID_HASH =
    0x4B48179FF6B22ADA391290DBE08627BBB5273D4968A19DA2E5C9797C34D52DC6;

  uint256 internal constant BP_DENOM = 10_000;
  uint256 internal constant ROUND_DEC = 100_000_000_000;
  uint256 internal constant CALL_GAS_LIMIT = 50_000;
  uint256 internal constant MAX_AUTOSWAP_THRESHOLD_MULTIPLE = 20;
  uint256 internal constant MIN_AUTOSWAP_THRESHOLD_BASIS_POINTS = 1;
  uint256 internal constant MAX_AUTOSWAPS_PER_BLOCK = 1;
  uint256 internal constant MAX_BUYS_PER_ORIGIN_PER_BLOCK = 1;

  // Metadrop
  uint256 internal immutable _platformFee;
  address public immutable metadropTreasury;
  // Liquidity
  address public immutable lpOwner;
  uint256 public immutable lpSupply;
  // Limits
  uint256 public immutable limitProtectionDurationInSeconds;
  // Taxes
  // We use the immutable var {_tokenHasTax} to avoid unneccesary storage writes and reads.
  bool internal immutable _tokenHasTax;
  uint256 public immutable metadropTaxPeriodInDays;
  uint256 public immutable metadropBuyTaxProportionBasisPoints;
  uint256 public immutable metadropSellTaxProportionBasisPoints;
  uint256 public immutable metadropMinBuyTaxBasisPoints;
  uint256 public immutable metadropMinSellTaxBasisPoints;
  address public immutable metadropTaxRecipient;
  // External addresses.
  address public uniswapV2Pair;
  // address immutable public launchPool;
  address public immutable tokenVault;
  address public immutable uniswapV2Router;
  // Auto-burn config.
  uint256 public immutable autoBurnDurationInBlocks;
  uint256 public immutable autoBurnBasisPoints;

  bool public platformFeeDistributed;
  bool public burnLPTokens;
  bool private _autoSwapInProgress;
  uint256 public lpLockupInDays;
  uint256 public fundedDate;
  uint256 public fundedBlock;
  uint256 public projectBuyTaxBasisPoints;
  uint256 public projectSellTaxBasisPoints;
  uint256 public metadropBuyTaxBasisPoints;
  uint256 public metadropSellTaxBasisPoints;
  uint256 public maxTokensPerWallet;
  uint256 public maxTokensPerTransaction;
  uint256 public autoswapThresholdBasisPoints;
  address public projectTaxRecipient;
  uint256 public projectTaxPendingSwap;
  uint256 public metadropTaxPendingSwap;

  /** @dev {_autoswapForBlock} Limit autoswaps per block */
  mapping(uint256 => uint256) private _autoswapForBlock;

  /** @dev {_originBuysPerBlock} Number of buys from this txn.origin by block */
  mapping(address => mapping(uint256 => uint256)) private _originBuysPerBlock;

  // Mapping for liquidity pool addresses
  mapping(address => bool) public isLiquidityPool;

  // Mapping for addresses where limits do not apply
  mapping(address => bool) public isUnlimited;

  // Mapping for addresses where taxes do not apply
  mapping(address => bool) public isTaxExempt;

  /**
   * @dev {constructor}
   */
  constructor(
    ERC20BaseParams memory baseParams_,
    ERC20LiquidityParams memory liquidityParams_,
    ERC20AutoburnParams memory autoburnParams_,
    ERC20LimitParams memory limitParams_,
    ERC20TaxParams memory taxParams_
  )
    payable
    ERC20(baseParams_.name, baseParams_.symbol)
    Ownable(baseParams_.initialOwner)
  {
    _platformFee = baseParams_.deploymentFee;

    _checkFee(_platformFee);
    // Process base params.
    uniswapV2Router = baseParams_.uniswapV2Router;
    tokenVault = baseParams_.tokenVault;
    metadropTreasury = baseParams_.metadropTreasury;

    // Mint initial supply
    _distributeInitialSupply(
      baseParams_.totalSupply,
      baseParams_.supplyRecipients,
      baseParams_.supplyAmounts
    );

    // Process autoburn params.
    autoBurnDurationInBlocks = autoburnParams_.autoBurnDurationInBlocks;
    autoBurnBasisPoints = autoburnParams_.autoBurnBasisPoints;

    // Process tax params.
    if (
      taxParams_.projectBuyTaxBasisPoints == 0 &&
      taxParams_.projectSellTaxBasisPoints == 0 &&
      taxParams_.metadropBuyTaxBasisPoints == 0 &&
      taxParams_.metadropSellTaxBasisPoints == 0
    ) {
      _tokenHasTax = false;
    } else {
      _tokenHasTax = true;
      // Validate that the sum of all buy deductions does not equal or exceed
      // 10_000 basis points (i.e. 100%).
      if (
        (taxParams_.projectBuyTaxBasisPoints +
          taxParams_.metadropBuyTaxBasisPoints +
          autoburnParams_.autoBurnBasisPoints) >= BP_DENOM
      ) {
        revert DeductionsOnBuyExceedOrEqualOneHundredPercent();
      }

      projectBuyTaxBasisPoints = taxParams_.projectBuyTaxBasisPoints;
      projectSellTaxBasisPoints = taxParams_.projectSellTaxBasisPoints;
      metadropBuyTaxBasisPoints = taxParams_.metadropBuyTaxBasisPoints;
      metadropSellTaxBasisPoints = taxParams_.metadropSellTaxBasisPoints;

      if (
        taxParams_.autoswapThresholdBasisPoints <
        MIN_AUTOSWAP_THRESHOLD_BASIS_POINTS
      ) {
        revert AutoswapThresholdTooLow();
      }

      autoswapThresholdBasisPoints = taxParams_.autoswapThresholdBasisPoints;
      metadropTaxPeriodInDays = taxParams_.metadropTaxPeriodInDays;
      metadropTaxRecipient = taxParams_.metadropTaxRecipient;
      projectTaxRecipient = taxParams_.projectTaxRecipient;
      metadropBuyTaxProportionBasisPoints = taxParams_
        .metadropBuyTaxProportionBasisPoints;
      metadropSellTaxProportionBasisPoints = taxParams_
        .metadropSellTaxProportionBasisPoints;
      metadropMinBuyTaxBasisPoints = taxParams_.metadropMinBuyTaxBasisPoints;
      metadropMinSellTaxBasisPoints = taxParams_.metadropMinSellTaxBasisPoints;
    }

    // Process liquidity params.
    lpOwner = liquidityParams_.lpOwner;

    // Process limit params.
    limitProtectionDurationInSeconds = limitParams_
      .limitProtectionDurationInSeconds;
    maxTokensPerWallet = limitParams_.maxTokensPerWallet;
    maxTokensPerTransaction = limitParams_.maxTokensPerTransaction;

    if (
      maxTokensPerTransaction == type(uint256).max ||
      maxTokensPerWallet == type(uint256).max
    ) {
      revert LimitTooHigh();
    }
    // Add some addresses to the unlimited set.
    isUnlimited[address(this)] = true;
    isUnlimited[address(0)] = true;
    isUnlimited[uniswapV2Router] = true;
    isUnlimited[tokenVault] = true;

    // At this point all tokens have been minted and distributed. The total supply should equal the expected total supply.
    if (totalSupply() != baseParams_.totalSupply) {
      revert TotalSupplyNotMinted();
    }
  }

  /**
   * @dev function {_checkFee}
   *
   * Verify that user paid exactly the expected fee
   *
   * @param platformFee_ The fee to be paid to the platform
   *
   */
  function _checkFee(uint256 platformFee_) internal view virtual {
    if (msg.value != platformFee_) {
      revert IncorrectETHValueProvided();
    }
  }
  /**
   * @dev function {_distributeInitialSupply}
   *
   * Mints and set unlimited to the initial mint recipients
   *
   * @param totalSupply_ The total supply
   * @param recipients_ The distribution addresses
   * @param amounts_ The distribution amounts
   *
   */
  function _distributeInitialSupply(
    uint256 totalSupply_,
    address[] memory recipients_,
    uint256[] memory amounts_
  ) internal returns (uint256 distributedSupply) {
    if (recipients_.length != amounts_.length) {
      revert RecipientsAndAmountsMismatch();
    }
    distributedSupply = 0;
    for (uint256 i = 0; i < recipients_.length; i++) {
      isUnlimited[recipients_[i]] = true;
      _mint(recipients_[i], amounts_[i]);
      distributedSupply += amounts_[i];
    }
    // mint the rest of the supply to this contract so that it can be used
    // to fund the lp in addInitialLiquidity
    // save gas by not checking that we're distributing less than the total supply
    // as this will revert on underflow anyways and we're in the constructor
    _mint(address(this), (totalSupply_ - distributedSupply));
    return distributedSupply;
  }

  /**
   * @dev {notDuringAutoswap}
   *
   * Throws if called during an autoswap
   */
  modifier notDuringAutoswap() {
    if (_autoSwapInProgress) {
      revert CannotPerformDuringAutoswap();
    }
    _;
  }

  /**
   * @dev function {addInitialLiquidity}
   *
   * Add initial liquidity to the uniswap pair
   *
   * @param lpLockupInDays_ The number of days to lock liquidity.
   * @param burnLPTokens_ If the LP tokens should be burned (otherwise they are locked).
   */
  function addInitialLiquidity(
    uint256 lpLockupInDays_,
    bool burnLPTokens_
  ) public payable virtual onlyOwner {
    if (msg.value == 0) {
      revert NoETHForLiquidityPair();
    }

    // Allow the user to override whether to burn LP tokens.
    burnLPTokens = burnLPTokens_;

    if (!burnLPTokens_ && lpLockupInDays_ < 30) {
      revert InsufficientLockupPeriod();
    }
    // Allow the user to set the lockup period.
    lpLockupInDays = lpLockupInDays_;

    _addInitialLiquidity(msg.value);
  }

  /**
   * @dev function {_addInitialLiquidity}
   *
   * Add initial liquidity to the uniswap pair (internal function that does processing)
   *
   * @param ethAmount_ The amount of ETH passed into the call
   *
   */
  function _addInitialLiquidity(uint256 ethAmount_) internal {
    // Funded date is the date of first funding. We can only add initial liquidity once. If this date is set, we cannot proceed.
    if (fundedDate != 0) {
      revert InitialLiquidityAlreadyAdded();
    }

    fundedDate = block.timestamp;
    fundedBlock = block.number;

    // Approve the Uniswap V2 router for an inifinite amount (max uint256).
    // This means that we don't need to worry about later incrememtal approvals on tax swaps, as the uniswap router allowance will never be decreased.
    _approve(address(this), uniswapV2Router, type(uint256).max);

    // Add the liquidity.
    (uint256 amountA, uint256 amountB, uint256 lpTokens) = IUniswapV2Router02(
      uniswapV2Router
    ).addLiquidityETH{value: ethAmount_}(
      address(this),
      balanceOf(address(this)),
      0,
      0,
      address(this),
      block.timestamp
    );

    uniswapV2Pair = IUniswapV2Factory(
      IUniswapV2Router02(uniswapV2Router).factory()
    ).getPair(address(this), IUniswapV2Router02(uniswapV2Router).WETH());

    // Add the Uniswap V2 pair to the unlimited set.
    isUnlimited[uniswapV2Pair] = true;

    // Add the Uniswap V2 pair to the liquidity pools set.
    isLiquidityPool[uniswapV2Pair] = true;

    _approve(address(this), uniswapV2Router, type(uint256).max);

    emit InitialLiquidityAdded(amountA, amountB, lpTokens);

    // The LP token amount to lock should be equal to the LP token balance in the contract. If it's not, something is wrong.
    if (lpTokens != IERC20(uniswapV2Pair).balanceOf(address(this))) {
      revert LPTokensBalanceMismatch();
    }

    // Are we locking, or burning?
    if (burnLPTokens) {
      _burnLiquidity(lpTokens);
    } else {
      _lockLiquidity(lpTokens);
    }
  }

  /**
   * @dev function {_lockLiquidity}
   *
   * Lock initial liquidity on vault contract
   *
   * @param lpTokens_ The amount of LP tokens to be locked
   */
  function _lockLiquidity(uint256 lpTokens_) internal {
    // Approve the vault contract to spend the LP tokens.
    IERC20(uniswapV2Pair).approve(tokenVault, lpTokens_);

    uint256 streamId = _createWithDurations(
      lpOwner,
      uniswapV2Pair,
      tokenVault,
      lpTokens_,
      uint40(lpLockupInDays * 1 days)
    );

    emit LiquidityLocked(lpTokens_, lpLockupInDays * 1 days, streamId);
  }

  /**
   * @dev function {_burnLiquidity}
   *
   * Burn LP tokens
   *
   * @param lpTokens_ The amount of LP tokens to be locked
   */
  function _burnLiquidity(uint256 lpTokens_) internal {
    IERC20(uniswapV2Pair).transfer(address(0), lpTokens_);
    emit LiquidityBurned(lpTokens_);
  }

  function setIsLiquidityPool(
    address address_,
    bool isLiquidityPool_
  ) public onlyOwner {
    // Don't allow calls that didn't pass an address.
    if (address_ == address(0)) {
      revert LiquidityPoolCannotBeAddressZero();
    }

    isLiquidityPool[address_] = isLiquidityPool_;
    emit LiquidityPoolAddressUpdated(address_, isLiquidityPool_);
  }

  function setIsUnlimited(
    address address_,
    bool isUnlimited_
  ) external onlyOwner {
    isUnlimited[address_] = isUnlimited_;
    emit UnlimitedAddressUpdated(address_, isUnlimited_);
  }

  function setIsTaxExempt(
    address address_,
    bool isTaxExempt_
  ) external onlyOwner {
    isTaxExempt[address_] = isTaxExempt_;
    emit TaxExemptAddressUpdated(address_, isTaxExempt_);
  }

  /**
   * @dev function {setProjectTaxRecipient} onlyOwner
   *
   * Allows the manager to set the project tax recipient address
   *
   * @param projectTaxRecipient_ New recipient address
   */
  function setProjectTaxRecipient(
    address projectTaxRecipient_
  ) external onlyOwner {
    projectTaxRecipient = projectTaxRecipient_;
    emit ProjectTaxRecipientUpdated(projectTaxRecipient_);
  }

  /**
   * @dev function {setAutoswapThresholdBasisPoints} onlyOwner
   *
   * Allows the manager to set the autoswap threshold
   *
   * @param autoswapThresholdBasisPoints_ New swap threshold in basis points
   */
  function setAutoswapThresholdBasisPoints(
    uint256 autoswapThresholdBasisPoints_
  ) external onlyOwner {
    if (autoswapThresholdBasisPoints < MIN_AUTOSWAP_THRESHOLD_BASIS_POINTS) {
      revert AutoswapThresholdTooLow();
    }
    uint256 oldAutoswapThresholdBasisPoints = autoswapThresholdBasisPoints;
    autoswapThresholdBasisPoints = autoswapThresholdBasisPoints_;
    emit AutoswapThresholdUpdated(
      oldAutoswapThresholdBasisPoints,
      autoswapThresholdBasisPoints_
    );
  }

  /**
   * @dev function {setProjectTaxRates} onlyOwner
   *
   * Change the tax rates, subject to only ever decreasing
   *
   * @param newProjectBuyTaxBasisPoints_ The new buy tax rate
   * @param newProjectSellTaxBasisPoints_ The new sell tax rate
   */
  function setProjectTaxRates(
    uint256 newProjectBuyTaxBasisPoints_,
    uint256 newProjectSellTaxBasisPoints_
  ) external onlyOwner {
    uint256 oldBuyTaxBasisPoints = projectBuyTaxBasisPoints;
    uint256 oldSellTaxBasisPoints = projectSellTaxBasisPoints;
    // Cannot increase, down only
    if (newProjectBuyTaxBasisPoints_ > oldBuyTaxBasisPoints) {
      revert CanOnlyReduce();
    }
    // Cannot increase, down only
    if (newProjectSellTaxBasisPoints_ > oldSellTaxBasisPoints) {
      revert CanOnlyReduce();
    }
    projectBuyTaxBasisPoints = newProjectBuyTaxBasisPoints_;
    projectSellTaxBasisPoints = newProjectSellTaxBasisPoints_;

    // We set the metadrop tax rates off of the project tax rates:
    //
    // 1) If the project tax rate is zero then the metadrop tax rate is zero
    // 2) If the project tax rate is not zero the metadrop tax rate is the
    //    greater of:
    //    a) The metadrop tax proportion basis points of the project rate
    //    b) the base metadrop tax rate.
    //
    // Examples:
    //
    // A) The project buy tax rate is zero and the sell tax rate is 3%. The metadrop
    // tax proportion basis points is 1000, meaning the metadrop proportion is 10% of the
    // project tax rate. The base metadrop tax rate is 50 basis points i.e. 0.5%.
    //
    // * Metadrop buy tax = 0% (as the project buy tax is zero)
    // * Metadrop sell tax = 0.5%. 10% of the project sell tax is 0.3%. As this is below
    // the base level of 0.5% we set the metadrop tax to 0.5%
    //
    // B) The project buy tax rate is 4% and the sell tax rate is 20%. The metadrop tax
    // proportion basis points is 1000, meaning the metadrop proportion is 10% of the
    // project tax rate. The base metadrop tax rate is 50 basis points i.e. 0.5%.
    //
    // * Metadrop buy tax = 0.5%. 10% of the project rate would be 0.4%, so we use the base rate)
    // * Metadrop sell tax = 2%. 10% of the project rate is 2%, which is higher than the
    //   base rate of 0.5%.

    uint256 oldMetadropBuyTaxBasisPoints = metadropBuyTaxBasisPoints;
    uint256 oldMetadropSellTaxBasisPoints = metadropSellTaxBasisPoints;

    // Process the buy tax rate first:
    if (newProjectBuyTaxBasisPoints_ == 0) {
      metadropBuyTaxBasisPoints = 0;
    } else {
      uint256 derivedMetadropBuyTaxRate = (newProjectBuyTaxBasisPoints_ *
        metadropBuyTaxProportionBasisPoints) / BP_DENOM;
      if (derivedMetadropBuyTaxRate < metadropMinBuyTaxBasisPoints) {
        metadropBuyTaxBasisPoints = metadropMinBuyTaxBasisPoints;
      } else {
        metadropBuyTaxBasisPoints = derivedMetadropBuyTaxRate;
      }
    }

    // And now the sell tax rate:
    if (newProjectSellTaxBasisPoints_ == 0) {
      metadropSellTaxBasisPoints = 0;
    } else {
      uint256 derivedMetadropSellTaxRate = (newProjectSellTaxBasisPoints_ *
        metadropSellTaxProportionBasisPoints) / BP_DENOM;
      if (derivedMetadropSellTaxRate < metadropMinSellTaxBasisPoints) {
        metadropSellTaxBasisPoints = metadropMinSellTaxBasisPoints;
      } else {
        metadropSellTaxBasisPoints = derivedMetadropSellTaxRate;
      }
    }

    // Emit a message if there has been a change:
    if (
      oldMetadropBuyTaxBasisPoints != metadropBuyTaxBasisPoints ||
      oldMetadropSellTaxBasisPoints != metadropSellTaxBasisPoints
    ) {
      emit MetadropTaxBasisPointsChanged(
        oldMetadropBuyTaxBasisPoints,
        metadropBuyTaxBasisPoints,
        oldMetadropSellTaxBasisPoints,
        metadropSellTaxBasisPoints
      );
    }

    emit ProjectTaxBasisPointsChanged(
      oldBuyTaxBasisPoints,
      newProjectBuyTaxBasisPoints_,
      oldSellTaxBasisPoints,
      newProjectSellTaxBasisPoints_
    );
  }

  /**
   * @dev function {setLimits} onlyOwner
   *
   * Change the limits on transactions and holdings
   *
   * @param newMaxTokensPerTransaction_ The new per txn limit
   * @param newMaxTokensPerWallet_ The new tokens per wallet limit
   */
  function setLimits(
    uint256 newMaxTokensPerTransaction_,
    uint256 newMaxTokensPerWallet_
  ) external onlyOwner {
    if (maxTokensPerTransaction == 0 && newMaxTokensPerTransaction_ != 0) {
      revert LimitCannotBeChanged();
    }

    if (maxTokensPerWallet == 0 && newMaxTokensPerWallet_ != 0) {
      revert LimitCannotBeChanged();
    }

    if (
      newMaxTokensPerTransaction_ != 0 &&
      newMaxTokensPerTransaction_ < maxTokensPerTransaction
    ) {
      revert LimitMustBeHigherOrUnchanged();
    }

    if (
      newMaxTokensPerWallet_ != 0 && newMaxTokensPerWallet_ < maxTokensPerWallet
    ) {
      revert LimitMustBeHigherOrUnchanged();
    }

    if (
      newMaxTokensPerTransaction_ == type(uint256).max ||
      newMaxTokensPerWallet_ == type(uint256).max
    ) {
      revert LimitTooHigh();
    }

    if (newMaxTokensPerTransaction_ != maxTokensPerTransaction) {
      emit MaxTokensPerTransactionLimitUpdated(
        maxTokensPerTransaction,
        newMaxTokensPerTransaction_
      );
      maxTokensPerTransaction = newMaxTokensPerTransaction_;
    }

    if (newMaxTokensPerWallet_ != maxTokensPerWallet) {
      emit MaxTokensPerWalletLimitUpdated(
        maxTokensPerWallet,
        newMaxTokensPerWallet_
      );
      maxTokensPerWallet = newMaxTokensPerWallet_;
    }
  }

  /**
   * @dev function {limitsEnforced}
   *
   * Return if limits are enforced on this contract
   *
   * @return bool : they are / aren't
   */
  function limitsEnforced() public view returns (bool) {
    // Limits are not enforced if:
    // the contract is renounced AND after the protection end date
    // OR prior to LP funding:
    // The second clause of !initialLiquidityAdded() isn't strictly needed, since with a funded
    // date of 0 we would always expect the block.timestamp to be less than 0 plus
    // the limitProtectionDurationInSeconds. But, to cover the miniscule chance of a user
    // selecting a truly enormous limit protection period, such that when added to 0 it
    // is more than the current block.timestamp, we have included this second clause. There
    // is no permanent gas overhead (the logic will be returning from the first clause after
    // the limit protection period has expired). During the limit protection period there is a minor
    // gas overhead from evaluating the initialLiquidityAdded() (which will be true), but this is minimal.
    if (
      (owner() == address(0) &&
        block.timestamp > fundedDate + limitProtectionDurationInSeconds) ||
      !initialLiquidityAdded()
    ) {
      return false;
    } else {
      // LP has been funded AND we are within the protection period:
      return true;
    }
  }

  /**
   * @dev getMetadropBuyTaxBasisPoints
   *
   * Return the metadrop buy tax basis points given the timed expiry.
   */
  function getMetadropBuyTaxBasisPoints() public view returns (uint256) {
    // If we are outside the metadrop tax period this is ZERO
    if (_isOutsideMetadropTaxPeriod()) {
      return 0;
    } else {
      return metadropBuyTaxBasisPoints;
    }
  }

  /**
   * @dev getMetadropSellTaxBasisPoints
   *
   * Return the metadrop sell tax basis points given the timed expiry
   */
  function getMetadropSellTaxBasisPoints() public view returns (uint256) {
    // If we are outside the metadrop tax period this is ZERO
    if (_isOutsideMetadropTaxPeriod()) {
      return 0;
    } else {
      return metadropSellTaxBasisPoints;
    }
  }

  function _isOutsideMetadropTaxPeriod() internal view returns (bool) {
    return block.timestamp > (fundedDate + (metadropTaxPeriodInDays * 1 days));
  }

  /**
   * @dev totalBuyTaxBasisPoints
   *
   * Provide easy to view tax total:
   */
  function totalBuyTaxBasisPoints() public view returns (uint256) {
    return projectBuyTaxBasisPoints + getMetadropBuyTaxBasisPoints();
  }

  /**
   * @dev totalSellTaxBasisPoints
   *
   * Provide easy to view tax total:
   */
  function totalSellTaxBasisPoints() public view returns (uint256) {
    return projectSellTaxBasisPoints + getMetadropSellTaxBasisPoints();
  }

  function _update(
    address from_,
    address to_,
    uint256 amount_
  ) internal virtual override {
    // This amount will be updated as we go through the process. It starts as the amount passed in, and is reduced as we apply tax, autoburn, etc.
    uint256 amountMinusDeductions = amount_;

    // Limits, autoburn, taxes, and autoswap are only applied after the initial liquidity has been added.
    if (!initialLiquidityAdded()) {
      // Prior to the initial liquidity being added, we need to prevent all transfers to liquidity pools, UNLESS the `from` address is this contract.
      // This ensures that the initial LP funding transaction is from this contract using the supply of tokens designated for the LP pool, and therefore the initial price in the pool is being set as expected.
      // This protects from, for example, tokens from a team minted supply being paired with ETH and added to the pool, setting the initial price, BEFORE the initial liquidity is added through this contract.
      if (to_ == _getPairAddress() && from_ != address(this)) {
        revert InitialLiquidityNotYetAdded();
      }
    } else {
      // At this point, initial liquidity has been added.
      // The initial buy must be unlimited, tax-free, etc.
      // Limits, autoburn, taxes, autoswap, etc can't apply until the launch pool has completed.

      // Before calculating tax and autoburn, we need to check the max tokens per transaction limit.
      _checkMaxTokensPerTxLimit(from_, to_, amount_);

      // Perform autoswap if eligible.
      _autoSwap(from_, to_);

      // Limit the number of buys per tx.origin per block as an anti-limit measure.
      _limitBuysPerBlock(from_);

      // Determine the amount to charge as a tax.
      uint256 taxAmount = _calculateTax(to_, from_, amount_);

      // If the tax amount is greater than zero, we need to perform the tax transfer.
      if (taxAmount > 0) {
        // Deduct the tax from_ the amount from_ the running total.
        amountMinusDeductions -= taxAmount;
        // Perform the tax transfer.
        super._update(from_, address(this), taxAmount);
      }

      // Process autoburn.
      uint256 autoburnAmount = _calculateAutoburn(from_, to_, amount_);

      // If the autoburn amount is greater than zero, we need to perform the autoburn.
      if (autoburnAmount > 0) {
        // Deduct the autoburn from_ the amount from_ the running total.
        amountMinusDeductions -= autoburnAmount;
        // Perform the autoburn.
        super._update(from_, address(0), autoburnAmount);
      }

      // After all deductions, we need to check the max tokens per wallet limit of the recipient.
      _checkMaxTokensPerWalletLimit(from_, to_, amountMinusDeductions);
    }

    super._update(from_, to_, amountMinusDeductions);
  }

  function _getPairAddress() private view returns (address pair) {
    address weth = IUniswapV2Router02(uniswapV2Router).WETH();
    (address token0, address token1) = address(this) < weth
      ? (address(this), weth)
      : (weth, address(this));
    pair = address(
      uint160(
        uint(
          keccak256(
            abi.encodePacked(
              hex"ff",
              IUniswapV2Router02(uniswapV2Router).factory(),
              keccak256(abi.encodePacked(token0, token1)),
              hex"96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" // init code hash
            )
          )
        )
      )
    );
  }

  /**
   * @dev function {_blockMaxBuysPerOriginExceeded}
   *
   * Check if the max buy per origin per block been exceeded. If it has, revert. Otherwise, increment the count.
   */
  function _limitBuysPerBlock(address from) internal virtual {
    if (isLiquidityPool[from]) {
      if (
        _originBuysPerBlock[tx.origin][block.number] >=
        MAX_BUYS_PER_ORIGIN_PER_BLOCK
      ) {
        revert MaxBuysPerBlockExceeded();
      }
      _originBuysPerBlock[tx.origin][block.number]++;
    }
  }

  function initialLiquidityAdded() public view returns (bool) {
    return fundedDate != 0;
  }

  /**
   * @dev function {_checkMaxTokensPerTxLimit}
   *
   * Check the max tokens per transaction limit on buys from liquidity pools.
   *
   * @param from_ From address for the transaction
   * @param to_ To address for the transaction
   * @param amount_ Amount of the transaction
   */
  function _checkMaxTokensPerTxLimit(
    address from_,
    address to_,
    uint256 amount_
  ) internal view {
    if (
      limitsEnforced() &&
      maxTokensPerTransaction != 0 &&
      ((isLiquidityPool[from_] && !isUnlimited[to_]) ||
        (isLiquidityPool[to_] && !isUnlimited[from_]))
    ) {
      if (amount_ > _getBufferedLimit(maxTokensPerTransaction)) {
        revert MaxTokensPerTransactionExceeded();
      }
    }
  }

  /**
   * @dev function {_checkMaxTokensPerWalletLimit}
   *
   * Check the max tokens per wallet limit on buys from liquidity pools.
   *
   * @param from_ From address for the transaction
   * @param to_ To address for the transaction
   * @param amount_ Amount of the transaction
   */
  function _checkMaxTokensPerWalletLimit(
    address from_,
    address to_,
    uint256 amount_
  ) internal view {
    if (
      limitsEnforced() &&
      maxTokensPerWallet != 0 &&
      !isUnlimited[to_] &&
      isLiquidityPool[from_]
    ) {
      if ((amount_ + balanceOf(to_) > _getBufferedLimit(maxTokensPerWallet))) {
        revert MaxTokensPerWalletExceeded();
      }
    }
  }

  /**
  * Liquidity pools aren't always going to round cleanly. This can (and does)
  mean that a limit of 5,000 tokens (for example) will trigger on a max holding
  of 5,000 tokens, as the transfer to achieve that is actually for
  5,000.00000000000000213.
  * While 4,999 will work fine, it isn't hugely user friendly.
  * So we buffer the limit with rounding decimals, which in all cases are considerably
  less than one whole token:
  */
  function _getBufferedLimit(uint256 limit_) internal pure returns (uint256) {
    return limit_ + ROUND_DEC;
  }

  /**
   * @dev function {_calculateTax}
   *
   * Perform tax processing
   *
   * @param to_ The reciever of the token
   * @param from_ The sender of the token
   * @param sentAmount_ The amount being transferred from which to take the tax.
   * @return totalTax The amount that should be transferred as a tax.
   */
  function _calculateTax(
    address to_,
    address from_,
    uint256 sentAmount_
  ) internal returns (uint256 totalTax) {
    if (_tokenHasTax && !_autoSwapInProgress) {
      // On sells, if the seller is not tax exempt and there is a sell tax, we apply the tax.
      if (
        isLiquidityPool[to_] &&
        totalSellTaxBasisPoints() > 0 &&
        !isTaxExempt[from_]
      ) {
        if (projectSellTaxBasisPoints > 0) {
          uint256 projectTax = ((sentAmount_ * projectSellTaxBasisPoints) /
            BP_DENOM);
          projectTaxPendingSwap += projectTax;
          totalTax += projectTax;
        }
        uint256 metadropSellTax = getMetadropSellTaxBasisPoints();
        if (metadropSellTax > 0) {
          uint256 metadropTax = ((sentAmount_ * metadropSellTax) / BP_DENOM);
          metadropTaxPendingSwap += metadropTax;
          totalTax += metadropTax;
        }
      }
      // On buys, if the buyer is not tax exempt and there is a buy tax, we apply the tax.
      else if (
        isLiquidityPool[from_] &&
        totalBuyTaxBasisPoints() > 0 &&
        !isTaxExempt[to_]
      ) {
        if (projectBuyTaxBasisPoints > 0) {
          uint256 projectTax = ((sentAmount_ * projectBuyTaxBasisPoints) /
            BP_DENOM);
          projectTaxPendingSwap += projectTax;
          totalTax += projectTax;
        }
        uint256 metadropBuyTax = getMetadropBuyTaxBasisPoints();
        if (metadropBuyTax > 0) {
          uint256 metadropTax = ((sentAmount_ * metadropBuyTax) / BP_DENOM);
          metadropTaxPendingSwap += metadropTax;
          totalTax += metadropTax;
        }
      }
    }
  }

  /**
   * @dev function {_calculateAutoburn}
   *
   * Perform autoburn processing
   *
   * @param from_ The sender of the token
   * @param to_ The recipient of the token
   * @param originalSentAmount_ The original amount being sent, before any deductions (if appropriate)
   * @return amountToBurn The amount that should be burned.
   */
  function _calculateAutoburn(
    address from_,
    address to_,
    uint256 originalSentAmount_
  ) internal view virtual returns (uint256 amountToBurn) {
    // Perform autoburn processing, if appropriate:
    if (
      autoBurnDurationInBlocks != 0 &&
      autoBurnBasisPoints != 0 &&
      !_autoSwapInProgress &&
      isLiquidityPool[from_] &&
      // we leave out tax exempt addresses cause if they're bots
      // they're probably part of the launch mechanism
      !isTaxExempt[to_]
    ) {
      uint256 blocksElapsed = block.number - fundedBlock;
      if (blocksElapsed < autoBurnDurationInBlocks) {
        // Get the blocks remaining in the autoburn period. The more blocks
        // remaining, the higher the proportion of the burn we apply:
        uint256 burnBlocksRemaining = autoBurnDurationInBlocks - blocksElapsed;
        // Calculate the linear burn basis point per remaining block. For example, if our
        // burn basis points = 1500 (15%) and we are burning for three blocks then this
        // will be 1500 / 3 = 500 (5%):
        uint256 linearBurnPerRemainingBlock = autoBurnBasisPoints /
          autoBurnDurationInBlocks;
        // Finally, determine the burn basis points for this block by multiplying the per remaining
        // block burn % by the number of blocks remaining. To follow our example, in the 0th
        // block since funding there are three blocks remaining in the burn period, therefore
        // 500 * 3 = 1500 (15%). Two blocks after funding we have one block remaining in the burn
        // period, and therefore are burning 500 * 1 = 500 (5%). Three blocks after funding we do not
        // reach this point in the logic, as the blocksElapsed is 3 and needs to be UNDER 3 to enter
        // this code.
        uint256 burnBasisPointsForThisBlock = burnBlocksRemaining *
          linearBurnPerRemainingBlock;

        // This is eligible for burn. Send the basis points amount of
        // the originalSentAmount_ to the zero address:
        amountToBurn = ((originalSentAmount_ * burnBasisPointsForThisBlock) /
          BP_DENOM);
      }
    }
    return amountToBurn;
  }

  /**
   * @dev totalTaxPendingSwap
   *
   * Return the total tax awaiting swap:
   */
  function totalTaxPendingSwap() public view returns (uint256) {
    return projectTaxPendingSwap + metadropTaxPendingSwap;
  }

  /**
   * @dev function {_autoSwap}
   *
   * Automate the swap of accumulated tax fees to native token
   *
   * @param from_ The sender of the token
   * @param to_ The recipient of the token
   */
  function _autoSwap(address from_, address to_) internal {
    if (_tokenHasTax) {
      uint256 totalTaxBalance = totalTaxPendingSwap();
      uint256 swapBalance = totalTaxBalance;

      uint256 swapThresholdInTokens = (totalSupply() *
        autoswapThresholdBasisPoints) / BP_DENOM;

      if (
        _eligibleForAutoswap(from_, to_, swapBalance, swapThresholdInTokens)
      ) {
        // Store that a swap back is in progress:
        _autoSwapInProgress = true;
        // Increment the swaps per block counter:
        _autoswapForBlock[block.number] += 1;
        // Check if we need to reduce the amount of tokens for this swap:
        if (
          swapBalance > swapThresholdInTokens * MAX_AUTOSWAP_THRESHOLD_MULTIPLE
        ) {
          swapBalance = swapThresholdInTokens * MAX_AUTOSWAP_THRESHOLD_MULTIPLE;
        }
        // Perform the auto swap to native token.
        _swapTaxForNative(swapBalance, totalTaxBalance);

        // Flag that the autoswap is complete.
        _autoSwapInProgress = false;
      }
    }
  }

  /**
   * @dev function {_swapTaxForNative}
   *
   * Swap tokens taken as tax for native token
   *
   * @param swapBalance_ The current accumulated tax balance to swap
   * @param totalTaxBalance_ The current accumulated total tax balance
   */
  function _swapTaxForNative(
    uint256 swapBalance_,
    uint256 totalTaxBalance_
  ) internal {
    uint256 preSwapBalance = address(this).balance;

    address[] memory path = new address[](2);
    path[0] = address(this);
    path[1] = IUniswapV2Router02(uniswapV2Router).WETH();

    // Wrap external calls in try / catch to handle errors
    try
      IUniswapV2Router02(uniswapV2Router)
        .swapExactTokensForETHSupportingFeeOnTransferTokens(
          swapBalance_,
          0,
          path,
          address(this),
          block.timestamp + 600
        )
    {
      uint256 postSwapBalance = address(this).balance;

      uint256 balanceToDistribute = postSwapBalance - preSwapBalance;

      uint256 projectBalanceToDistribute = (balanceToDistribute *
        projectTaxPendingSwap) / totalTaxBalance_;

      uint256 metadropBalanceToDistribute = (balanceToDistribute *
        metadropTaxPendingSwap) / totalTaxBalance_;

      // We will not have swapped all tax tokens IF the amount was greater than the max auto swap.
      // We therefore cannot just set the pending swap counters to 0. Instead, in this scenario,
      // we must reduce them in proportion to the swap amount vs the remaining balance + swap
      // amount.
      //
      // For example:
      //  * swap Balance is 250
      //  * contract balance is 385.
      //  * projectTaxPendingSwap is 300
      //  * metadropTaxPendingSwap is 85.
      //
      // The new total for the projectTaxPendingSwap is:
      //   = 300 - ((300 * 250) / 385)
      //   = 300 - 194
      //   = 106
      // The new total for the metadropTaxPendingSwap is:
      //   = 85 - ((85 * 250) / 385)
      //   = 85 - 55
      //   = 30
      //

      if (swapBalance_ < totalTaxBalance_) {
        // Calculate the project tax spending swap reduction amount:
        uint256 projectTaxPendingSwapReduction = (projectTaxPendingSwap *
          swapBalance_) / totalTaxBalance_;
        projectTaxPendingSwap -= projectTaxPendingSwapReduction;

        // The metadrop tax pending swap reduction is therefore the total swap amount minus the
        // project tax spending swap reduction:
        metadropTaxPendingSwap -= swapBalance_ - projectTaxPendingSwapReduction;
      } else {
        (projectTaxPendingSwap, metadropTaxPendingSwap) = (0, 0);
      }

      // Distribute tax proceeds to the project recipient.
      if (projectBalanceToDistribute > 0) {
        _processTaxProceedsPayment(
          projectTaxRecipient,
          projectBalanceToDistribute,
          false
        );
      }

      // Distribute tax proceeds to Metadrop.
      if (metadropBalanceToDistribute > 0) {
        _processTaxProceedsPayment(
          metadropTaxRecipient,
          metadropBalanceToDistribute,
          true
        );
      }
    } catch {
      // Dont allow a failed external call (in this case to uniswap) to stop a transfer.
      // Emit that this has occured and continue.
      emit ExternalCallError(5);
    }
  }

  function _processTaxProceedsPayment(
    address recipient_,
    uint256 amount_,
    bool isMetadrop_
  ) internal {
    IWETH weth = IWETH(IUniswapV2Router02(uniswapV2Router).WETH());
    // If no gas limit was provided or provided gas limit greater than gas left, just use the remaining gas.
    uint256 gas = (CALL_GAS_LIMIT == 0 || CALL_GAS_LIMIT > gasleft())
      ? gasleft()
      : CALL_GAS_LIMIT;

    (bool success, ) = recipient_.call{value: amount_, gas: gas}("");

    // If the ETH transfer fails, wrap the ETH and send it as WETH. We do this so that a called
    // address cannot cause this transfer to fail, either intentionally or by mistake:
    if (!success) {
      try IWETH(weth).deposit{value: amount_}() {
        try IERC20(address(weth)).transfer(recipient_, amount_) {} catch {
          // Dont allow a failed external call (in this case to WETH) to stop a transfer.
          // Emit that this has occured and continue.
          emit ExternalCallError(isMetadrop_ ? 3 : 1);
        }
      } catch {
        // Dont allow a failed external call (in this case to WETH) to stop a transfer.
        // Emit that this has occured and continue.
        emit ExternalCallError(isMetadrop_ ? 4 : 2);
      }
    }
  }

  /**
   * @dev function {_eligibleForAutoswap}
   *
   * Is the current transfer eligible for autoswap
   *
   * @param from_ The sender of the token
   * @param to_ The recipient of the token
   * @param taxBalance_ The current accumulated tax balance
   * @param autoswapThresholdInTokens_ The swap threshold as a token amount
   */
  function _eligibleForAutoswap(
    address from_,
    address to_,
    uint256 taxBalance_,
    uint256 autoswapThresholdInTokens_
  ) internal view returns (bool) {
    return (// Ensure the tax balance is above the threshold.
    taxBalance_ >= autoswapThresholdInTokens_ &&
      // Ensure we are not in the middle of an autoswap.
      !_autoSwapInProgress &&
      // Ensure this is not a buy from a liquidity pool. It however can be a sell, or just a simple transfer.
      !isLiquidityPool[from_] &&
      // Ensure the from_ and to_ addresses are not the uniswap router.
      from_ != uniswapV2Router &&
      to_ != uniswapV2Router &&
      // Ensure we haven't already performed the maximum number of autoswaps for this block.
      _autoswapForBlock[block.number] < MAX_AUTOSWAPS_PER_BLOCK);
  }

  function burn(
    uint256 amount_
  ) public virtual override(ERC20Burnable, IMetadropERC20) {
    super.burn(amount_);
  }

  function burnFrom(
    address from_,
    uint256 amount_
  ) public virtual override(ERC20Burnable, IMetadropERC20) {
    super.burnFrom(from_, amount_);
  }

  function _createWithDurations(
    address lpOwner_,
    address uniswapV2PairAddress_,
    address tokenVault_,
    uint256 lpTokenAmount_,
    uint40 lpTokenLockupDuration_
  ) private returns (uint256 streamId) {
    // Setup lock Params.
    LockupLinear.CreateWithDurations memory params;
    // The sender will be able to cancel the stream
    params.sender = msg.sender;
    // The recipient of the streamed assets
    params.recipient = lpOwner_;
    // Total amount is the amount inclusive of all fees.
    params.totalAmount = uint128(lpTokenAmount_);
    // The streaming asset. Sablier requires casting as IERC20 from OZ v4.
    params.asset = IERC20(uniswapV2PairAddress_);
    // Whether the stream will be cancelable or not.
    params.cancelable = false;
    params.durations = LockupLinear.Durations({
      // Cliff duration (must be less than total duration or will revert).
      cliff: lpTokenLockupDuration_ - 1,
      // Total duration.
      total: lpTokenLockupDuration_
    });
    // Optional parameter for charging a variable fee.
    // params.broker = Broker(address(0), ud(0));

    // Create the LockupLinear stream using a function that sets the start time to `block.timestamp`
    streamId = ISablierV2LockupLinear(tokenVault_).createWithDurations(params);
  }
  /**
   * Anyone can call this.
   * For tokens that aren't using a launch pool, it can be called by any address at any time.
   * For tokens with a launch pool, it will be called automatically during contract creation.
   */
  function distributePlatformFee() public {
    if (!platformFeeDistributed) {
      platformFeeDistributed = true;
      (bool success, ) = metadropTreasury.call{value: _platformFee}("");
      if (!success) {
        revert TransferFailed();
      }
      emit PlatformFeeDistributed();
    } else {
      revert PlatformFeeAlreadyDistributed();
    }
  }

  receive() external payable {}
}

// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@                                                                                                @@
// @@   Metadrop has no affiliation with and does not endorse this token or its creators in any      @@
// @@   way, unless otherwise stated. For all terms and conditions associated with tokens launched   @@
// @@   using Metadrop software, refer to the terms published at metadrop[dot]com/legal.             @@
// @@                                                                                                @@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

Contract Security Audit

Contract ABI

[{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"metadropTreasury","type":"address"},{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"address","name":"uniswapV2Router","type":"address"},{"internalType":"address","name":"tokenVault","type":"address"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"deploymentFee","type":"uint256"},{"internalType":"address[]","name":"supplyRecipients","type":"address[]"},{"internalType":"uint256[]","name":"supplyAmounts","type":"uint256[]"}],"internalType":"struct IMetadropERC20.ERC20BaseParams","name":"baseParams_","type":"tuple"},{"components":[{"internalType":"address","name":"lpOwner","type":"address"}],"internalType":"struct IMetadropERC20.ERC20LiquidityParams","name":"liquidityParams_","type":"tuple"},{"components":[{"internalType":"uint256","name":"autoBurnDurationInBlocks","type":"uint256"},{"internalType":"uint256","name":"autoBurnBasisPoints","type":"uint256"}],"internalType":"struct IMetadropERC20.ERC20AutoburnParams","name":"autoburnParams_","type":"tuple"},{"components":[{"internalType":"uint256","name":"limitProtectionDurationInSeconds","type":"uint256"},{"internalType":"uint256","name":"maxTokensPerTransaction","type":"uint256"},{"internalType":"uint256","name":"maxTokensPerWallet","type":"uint256"}],"internalType":"struct IMetadropERC20.ERC20LimitParams","name":"limitParams_","type":"tuple"},{"components":[{"internalType":"uint256","name":"projectBuyTaxBasisPoints","type":"uint256"},{"internalType":"uint256","name":"projectSellTaxBasisPoints","type":"uint256"},{"internalType":"uint256","name":"autoswapThresholdBasisPoints","type":"uint256"},{"internalType":"uint256","name":"metadropBuyTaxBasisPoints","type":"uint256"},{"internalType":"uint256","name":"metadropSellTaxBasisPoints","type":"uint256"},{"internalType":"uint256","name":"metadropTaxPeriodInDays","type":"uint256"},{"internalType":"address","name":"projectTaxRecipient","type":"address"},{"internalType":"address","name":"metadropTaxRecipient","type":"address"},{"internalType":"uint256","name":"metadropMinBuyTaxBasisPoints","type":"uint256"},{"internalType":"uint256","name":"metadropMinSellTaxBasisPoints","type":"uint256"},{"internalType":"uint256","name":"metadropBuyTaxProportionBasisPoints","type":"uint256"},{"internalType":"uint256","name":"metadropSellTaxProportionBasisPoints","type":"uint256"}],"internalType":"struct IMetadropERC20.ERC20TaxParams","name":"taxParams_","type":"tuple"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"AmountExceedsAvailable","type":"error"},{"inputs":[],"name":"AutoswapThresholdTooLow","type":"error"},{"inputs":[],"name":"CanOnlyReduce","type":"error"},{"inputs":[],"name":"CannotPerformDuringAutoswap","type":"error"},{"inputs":[],"name":"CannotWithdrawThisToken","type":"error"},{"inputs":[],"name":"DeductionsOnBuyExceedOrEqualOneHundredPercent","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"IncorrectETHValueProvided","type":"error"},{"inputs":[],"name":"InitialLiquidityAlreadyAdded","type":"error"},{"inputs":[],"name":"InitialLiquidityNotYetAdded","type":"error"},{"inputs":[],"name":"InsufficientLockupPeriod","type":"error"},{"inputs":[],"name":"InsufficientTokensForInitialLiquidity","type":"error"},{"inputs":[],"name":"LPTokensBalanceMismatch","type":"error"},{"inputs":[],"name":"LimitCannotBeChanged","type":"error"},{"inputs":[],"name":"LimitMustBeHigherOrUnchanged","type":"error"},{"inputs":[],"name":"LimitTooHigh","type":"error"},{"inputs":[],"name":"LiquidityPoolCannotBeAddressZero","type":"error"},{"inputs":[],"name":"MaxBuysPerBlockExceeded","type":"error"},{"inputs":[],"name":"MaxTokensPerTransactionExceeded","type":"error"},{"inputs":[],"name":"MaxTokensPerWalletExceeded","type":"error"},{"inputs":[],"name":"NoETHForLiquidityPair","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"PlatformFeeAlreadyDistributed","type":"error"},{"inputs":[],"name":"RecipientsAndAmountsMismatch","type":"error"},{"inputs":[],"name":"TotalSupplyNotMinted","type":"error"},{"inputs":[],"name":"TransferFailed","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":false,"internalType":"uint256","name":"oldThreshold","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"AutoswapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"identifier","type":"uint256"}],"name":"ExternalCallError","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenA","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenB","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lpToken","type":"uint256"}],"name":"InitialLiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lpTokens","type":"uint256"}],"name":"LiquidityBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lpTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lpLockupInDays","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"streamId","type":"uint256"}],"name":"LiquidityLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isLiquidityPool","type":"bool"}],"name":"LiquidityPoolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addedPool","type":"address"}],"name":"LiquidityPoolCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"MaxTokensPerTransactionLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"MaxTokensPerWalletLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldBuyBasisPoints","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBuyBasisPoints","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldSellBasisPoints","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellBasisPoints","type":"uint256"}],"name":"MetadropTaxBasisPointsChanged","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":[],"name":"PlatformFeeDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldBuyBasisPoints","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBuyBasisPoints","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldSellBasisPoints","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellBasisPoints","type":"uint256"}],"name":"ProjectTaxBasisPointsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"treasury","type":"address"}],"name":"ProjectTaxRecipientUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isTaxExempt","type":"bool"}],"name":"TaxExemptAddressUpdated","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":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isUnlimited","type":"bool"}],"name":"UnlimitedAddressUpdated","type":"event"},{"inputs":[{"internalType":"uint256","name":"lpLockupInDays_","type":"uint256"},{"internalType":"bool","name":"burnLPTokens_","type":"bool"}],"name":"addInitialLiquidity","outputs":[],"stateMutability":"payable","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":[],"name":"autoBurnBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"autoBurnDurationInBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"autoswapThresholdBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnLPTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distributePlatformFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundedBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundedDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMetadropBuyTaxBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMetadropSellTaxBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialLiquidityAdded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isLiquidityPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTaxExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isUnlimited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitProtectionDurationInSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnforced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpLockupInDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadropBuyTaxBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadropBuyTaxProportionBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadropMinBuyTaxBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadropMinSellTaxBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadropSellTaxBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadropSellTaxProportionBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadropTaxPendingSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadropTaxPeriodInDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadropTaxRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadropTreasury","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"platformFeeDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectBuyTaxBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectSellTaxBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectTaxPendingSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectTaxRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"autoswapThresholdBasisPoints_","type":"uint256"}],"name":"setAutoswapThresholdBasisPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bool","name":"isLiquidityPool_","type":"bool"}],"name":"setIsLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bool","name":"isTaxExempt_","type":"bool"}],"name":"setIsTaxExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bool","name":"isUnlimited_","type":"bool"}],"name":"setIsUnlimited","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTokensPerTransaction_","type":"uint256"},{"internalType":"uint256","name":"newMaxTokensPerWallet_","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newProjectBuyTaxBasisPoints_","type":"uint256"},{"internalType":"uint256","name":"newProjectSellTaxBasisPoints_","type":"uint256"}],"name":"setProjectTaxRates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"projectTaxRecipient_","type":"address"}],"name":"setProjectTaxRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyTaxBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTaxBasisPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTaxPendingSwap","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"x_META_ID_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

610280604052604051620059b9380380620059b9833981016040819052620000279162001a30565b606085015185516020870151600362000041838262001c58565b50600462000050828262001c58565b5050506001600160a01b0381166200008357604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6200008e816200033f565b5060e08501516080819052620000a49062000391565b60808501516001600160a01b039081166102205260a0808701518216610200526040870151909116905260c0850151610100860151610120870151620000ec929190620003b5565b5082516102405260208301516102605280511580156200010e57506020810151155b80156200011d57506060810151155b80156200012c57506080810151155b156200013e5760006101205262000235565b6001610120526020830151606082015182516127109291620001609162001d3a565b6200016c919062001d3a565b106200018b5760405163e410db6160e01b815260040160405180910390fd5b8051600a556020810151600b556060810151600c556080810151600d55604081015160011115620001cf57604051630310435760e31b815260040160405180910390fd5b604081015160105560a081015161014090815260e08201516001600160a01b039081166101e05260c0830151601180546001600160a01b03191691909216179055810151610160908152810151610180526101008101516101a0526101208101516101c0525b83516001600160a01b031660c0528151610100526040820151600e556020820151600f81905560001914806200026e5750600019600e54145b156200028d576040516342027b1360e11b815260040160405180910390fd5b306000908152601760205260408082208054600160ff1991821681179092557fd840e16649f6b9a295d95876f4633d3a6b10b55e8162971cf78afd886d5ec89b8054821683179055610220516001600160a01b039081168552838520805483168417905561020051168452919092208054909116909117905560c08501516200031560025490565b1462000334576040516307a0bc6160e11b815260040160405180910390fd5b505050505062001e8c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b803414620003b25760405163d676ec1760e01b815260040160405180910390fd5b50565b60008151835114620003da576040516366d5293b60e11b815260040160405180910390fd5b506000805b8351811015620004c25760016017600086848151811062000404576200040462001d50565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506200048d8482815181106200045c576200045c62001d50565b602002602001015184838151811062000479576200047962001d50565b6020026020010151620004e160201b60201c565b828181518110620004a257620004a262001d50565b602002602001015182620004b7919062001d3a565b9150600101620003df565b50620004da30620004d4838762001d66565b620004e1565b9392505050565b6001600160a01b0382166200050d5760405163ec442f0560e01b8152600060048201526024016200007a565b6200051b600083836200051f565b5050565b806200052c600854151590565b6200058a576200053b62000638565b6001600160a01b0316836001600160a01b03161480156200056557506001600160a01b0384163014155b156200058457604051630d970b4560e21b815260040160405180910390fd5b62000625565b6200059784848462000801565b620005a38484620008e6565b620005ae84620009bd565b6000620005bd84868562000a4b565b90508015620005e157620005d2818362001d66565b9150620005e185308362000ca1565b6000620005f086868662000dd4565b90508015620006155762000605818462001d66565b9250620006158660008362000ca1565b6200062286868562000ed9565b50505b6200063284848362000ca1565b50505050565b600080610220516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200067d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006a3919062001d7c565b90506000806001600160a01b0383163010620006c1578230620006c4565b30835b91509150610220516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200070a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000730919062001d7c565b6040516001600160601b0319606085811b8216602084015284901b16603482015260480160405160208183030381529060405280519060200120604051602001620007e09291907fff00000000000000000000000000000000000000000000000000000000000000815260609290921b6001600160601b031916600183015260158201527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f603582015260550190565b6040516020818303038152906040528051906020012060001c935050505090565b6200080b62000f95565b8015620008195750600f5415155b8015620008ac57506001600160a01b03831660009081526016602052604090205460ff1680156200086357506001600160a01b03821660009081526017602052604090205460ff16155b80620008ac57506001600160a01b03821660009081526016602052604090205460ff168015620008ac57506001600160a01b03831660009081526017602052604090205460ff16155b15620008e157600f54620008c09062000ff1565b811115620008e157604051637f4b310960e01b815260040160405180910390fd5b505050565b61012051156200051b576000620008fc6200100a565b6010546002549192508291600091612710916200091a919062001d9a565b62000926919062001db4565b9050620009368585848462001023565b15620009b6576006805460ff60b01b1916600160b01b1790554360009081526014602052604081208054600192906200097190849062001d3a565b9091555062000984905060148262001d9a565b8211156200099c576200099960148262001d9a565b91505b620009a88284620010cf565b6006805460ff60b01b191690555b5050505050565b6001600160a01b03811660009081526016602052604090205460ff1615620003b25732600090815260156020908152604080832043845290915290205460011162000a1b576040516301ae70bf60e01b815260040160405180910390fd5b326000908152601560209081526040808320438452909152812080549162000a438362001dd7565b919050555050565b600061012051801562000a685750600654600160b01b900460ff16155b15620004da576001600160a01b03841660009081526016602052604090205460ff16801562000aa05750600062000a9e6200136b565b115b801562000ac657506001600160a01b03831660009081526018602052604090205460ff16155b1562000b8757600b541562000b22576000612710600b548462000aea919062001d9a565b62000af6919062001db4565b9050806012600082825462000b0c919062001d3a565b9091555062000b1e9050818362001d3a565b9150505b600062000b2e62001386565b9050801562000b8057600061271062000b48838662001d9a565b62000b54919062001db4565b9050806013600082825462000b6a919062001d3a565b9091555062000b7c9050818462001d3a565b9250505b50620004da565b6001600160a01b03831660009081526016602052604090205460ff16801562000bb95750600062000bb7620013a5565b115b801562000bdf57506001600160a01b03841660009081526018602052604090205460ff16155b15620004da57600a541562000c3b576000612710600a548462000c03919062001d9a565b62000c0f919062001db4565b9050806012600082825462000c25919062001d3a565b9091555062000c379050818362001d3a565b9150505b600062000c47620013c0565b9050801562000c9957600061271062000c61838662001d9a565b62000c6d919062001db4565b9050806013600082825462000c83919062001d3a565b9091555062000c959050818462001d3a565b9250505b509392505050565b6001600160a01b03831662000cd057806002600082825462000cc4919062001d3a565b9091555062000d449050565b6001600160a01b0383166000908152602081905260409020548181101562000d255760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200007a565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000d625760028054829003905562000d81565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000dc791815260200190565b60405180910390a3505050565b60006102405160001415801562000ded57506102605115155b801562000e045750600654600160b01b900460ff16155b801562000e2957506001600160a01b03841660009081526016602052604090205460ff165b801562000e4f57506001600160a01b03831660009081526018602052604090205460ff16155b15620004da5760006009544362000e67919062001d66565b90506102405181101562000c99576000816102405162000e88919062001d66565b90506000610240516102605162000ea0919062001db4565b9050600062000eb0828462001d9a565b905061271062000ec1828862001d9a565b62000ecd919062001db4565b98975050505050505050565b62000ee362000f95565b801562000ef15750600e5415155b801562000f1757506001600160a01b03821660009081526017602052604090205460ff16155b801562000f3c57506001600160a01b03831660009081526016602052604090205460ff165b15620008e157600e5462000f509062000ff1565b6001600160a01b03831660009081526020819052604090205462000f75908362001d3a565b1115620008e157604051633b016a6d60e11b815260040160405180910390fd5b60008062000fab6005546001600160a01b031690565b6001600160a01b031614801562000fd357506101005160085462000fd0919062001d3a565b42115b8062000fdf5750600854155b1562000feb5750600090565b50600190565b60006200100464174876e8008362001d3a565b92915050565b60006013546012546200101e919062001d3a565b905090565b6000818310158015620010405750600654600160b01b900460ff16155b80156200106657506001600160a01b03851660009081526016602052604090205460ff16155b8015620010885750610220516001600160a01b0316856001600160a01b031614155b8015620010aa5750610220516001600160a01b0316846001600160a01b031614155b8015620010c65750436000908152601460205260409020546001115b95945050505050565b6040805160028082526060820183524792600092919060208301908036833701905050905030816000815181106200110b576200110b62001d50565b60200260200101906001600160a01b031690816001600160a01b031681525050610220516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200116d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001193919062001d7c565b81600181518110620011a957620011a962001d50565b6001600160a01b039283166020918202929092010152610220511663791ac9478560008430620011dc4261025862001d3a565b6040518663ffffffff1660e01b8152600401620011fe95949392919062001df3565b600060405180830381600087803b1580156200121957600080fd5b505af19250505080156200122b575060015b620012595760405160058152600080516020620059998339815191529060200160405180910390a162000632565b47600062001268848362001d66565b9050600085601254836200127d919062001d9a565b62001289919062001db4565b9050600086601354846200129e919062001d9a565b620012aa919062001db4565b9050868810156200131c5760008789601254620012c8919062001d9a565b620012d4919062001db4565b90508060126000828254620012ea919062001d66565b90915550620012fc9050818a62001d66565b601360008282546200130f919062001d66565b9091555062001327915050565b600060138190556012555b8115620013485760115462001348906001600160a01b0316836000620013df565b801562001361576101e0516200136190826001620013df565b5050505050505050565b60006200137762001386565b600b546200101e919062001d3a565b60006200139262001601565b156200139e5750600090565b50600d5490565b6000620013b1620013c0565b600a546200101e919062001d3a565b6000620013cc62001601565b15620013d85750600090565b50600c5490565b6000610220516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001423573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001449919062001d7c565b905060005a61c35011620014605761c35062001462565b5a5b90506000856001600160a01b0316858390604051600060405180830381858888f193505050503d8060008114620014b6576040519150601f19603f3d011682016040523d82523d6000602084013e620014bb565b606091505b5050905080620015f957826001600160a01b031663d0e30db0866040518263ffffffff1660e01b81526004016000604051808303818588803b1580156200150157600080fd5b505af19350505050801562001514575060015b62001556576000805160206200599983398151915284620015375760026200153a565b60045b60405160ff90911681526020015b60405180910390a1620015f9565b60405163a9059cbb60e01b81526001600160a01b0387811660048301526024820187905284169063a9059cbb906044016020604051808303816000875af1925050508015620015c4575060408051601f3d908101601f19168201909252620015c19181019062001e68565b60015b620015f7576000805160206200599983398151915284620015e75760016200153a565b6040516003815260200162001548565b505b505050505050565b6000610140516201518062001617919062001d9a565b60085462001626919062001d3a565b4211905090565b634e487b7160e01b600052604160045260246000fd5b60405161018081016001600160401b03811182821017156200166957620016696200162d565b60405290565b60405161014081016001600160401b03811182821017156200166957620016696200162d565b604051601f8201601f191681016001600160401b0381118282101715620016c057620016c06200162d565b604052919050565b600082601f830112620016da57600080fd5b81516001600160401b03811115620016f657620016f66200162d565b60206200170c601f8301601f1916820162001695565b82815285828487010111156200172157600080fd5b60005b838110156200174157858101830151828201840152820162001724565b506000928101909101919091529392505050565b80516001600160a01b03811681146200176d57600080fd5b919050565b60006001600160401b038211156200178e576200178e6200162d565b5060051b60200190565b600082601f830112620017aa57600080fd5b81516020620017c3620017bd8362001772565b62001695565b8083825260208201915060208460051b870101935086841115620017e657600080fd5b602086015b848110156200180d57620017ff8162001755565b8352918301918301620017eb565b509695505050505050565b600082601f8301126200182a57600080fd5b815160206200183d620017bd8362001772565b8083825260208201915060208460051b8701019350868411156200186057600080fd5b602086015b848110156200180d578051835291830191830162001865565b6000602082840312156200189157600080fd5b604051602081016001600160401b0381118282101715620018b657620018b66200162d565b604052905080620018c78362001755565b905292915050565b600060408284031215620018e257600080fd5b604080519081016001600160401b03811182821017156200190757620019076200162d565b604052825181526020928301519281019290925250919050565b6000606082840312156200193457600080fd5b604051606081016001600160401b03811182821017156200195957620019596200162d565b80604052508091508251815260208301516020820152604083015160408201525092915050565b600061018082840312156200199457600080fd5b6200199e62001643565b9050815181526020820151602082015260408201516040820152606082015160608201526080820151608082015260a082015160a0820152620019e460c0830162001755565b60c0820152620019f760e0830162001755565b60e08201526101008281015190820152610120808301519082015261014080830151908201526101609182015191810191909152919050565b6000806000806000610260868803121562001a4a57600080fd5b85516001600160401b038082111562001a6257600080fd5b90870190610140828a03121562001a7857600080fd5b62001a826200166f565b82518281111562001a9257600080fd5b62001aa08b828601620016c8565b82525060208301518281111562001ab657600080fd5b62001ac48b828601620016c8565b60208301525062001ad86040840162001755565b604082015262001aeb6060840162001755565b606082015262001afe6080840162001755565b608082015262001b1160a0840162001755565b60a082015260c083015160c082015260e083015160e0820152610100808401518381111562001b3f57600080fd5b62001b4d8c82870162001798565b828401525050610120808401518381111562001b6857600080fd5b62001b768c82870162001818565b82840152505080975050505062001b9187602088016200187e565b935062001ba28760408801620018cf565b925062001bb3876080880162001921565b915062001bc48760e0880162001980565b90509295509295909350565b600181811c9082168062001be557607f821691505b60208210810362001c0657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620008e1576000816000526020600020601f850160051c8101602086101562001c375750805b601f850160051c820191505b81811015620015f95782815560010162001c43565b81516001600160401b0381111562001c745762001c746200162d565b62001c8c8162001c85845462001bd0565b8462001c0c565b602080601f83116001811462001cc4576000841562001cab5750858301515b600019600386901b1c1916600185901b178555620015f9565b600085815260208120601f198616915b8281101562001cf55788860151825594840194600190910190840162001cd4565b508582101562001d145787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111562001004576200100462001d24565b634e487b7160e01b600052603260045260246000fd5b8181038181111562001004576200100462001d24565b60006020828403121562001d8f57600080fd5b620004da8262001755565b808202811582820484141762001004576200100462001d24565b60008262001dd257634e487b7160e01b600052601260045260246000fd5b500490565b60006001820162001dec5762001dec62001d24565b5060010190565b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b8181101562001e475784516001600160a01b03168352938301939183019160010162001e20565b50506001600160a01b03969096166060850152505050608001529392505050565b60006020828403121562001e7b57600080fd5b81518015158114620004da57600080fd5b60805160a05160c05160e05161010051610120516101405161016051610180516101a0516101c0516101e0516102005161022051610240516102605161396f6200202a6000396000818161067401528181612b130152612c2901526000818161053a01528181612ae901528181612bad01528181612bdb0152612c080152600081816104c101528181611a1201528181611a4001528181611b3701528181611bc801528181611d39015281816122ee0152818161239301528181612f0501528181612f4301528181612ff7015281816130a2015261327601526000818161079d015281816121ab01526122640152600081816107690152613241015260008181610a7e0152818161167a01526116a2015260008181610ad3015281816115d401526115fc0152600081816105c2015261164701526000818161095101526115a1015260008181610a37015261191a0152600081816125dc01526127680152600081816108740152610dc0015260006106a8015260008181610c3d015261223801526000818161045f01526113180152600061133b015261396f6000f3fe6080604052600436106103c75760003560e01c806375220b9f116101f2578063b92306111161010d578063ea8b2424116100a0578063f444324b1161006f578063f444324b14610c2b578063f85aff9414610c5f578063fe4522b014610c75578063fe6a0bbf14610c9557600080fd5b8063ea8b242414610bc0578063eb95ca7014610be0578063eeae0f9714610bf6578063f2fde38b14610c0b57600080fd5b8063dd604f1e116100dc578063dd604f1e14610b15578063dd62ed3e14610b2a578063e3ab3b1414610b70578063e85455d714610b9057600080fd5b8063b923061114610a6c578063bb88603c14610aa0578063be841baa14610ac1578063c4590d3f14610af557600080fd5b8063a35b4cef11610185578063b0d7509711610154578063b0d75097146109f9578063b2c5c9eb14610a0f578063b2e9cb3814610a25578063b6585dc614610a5957600080fd5b8063a35b4cef14610973578063a45cae02146109a3578063a9059cbb146109b9578063ad5f5d80146109d957600080fd5b80638da5cb5b116101c15780638da5cb5b146108ec57806395d89b411461090a5780639808751d1461091f578063a0aaf2481461093f57600080fd5b806375220b9f14610862578063780850b91461089657806379cc6790146108b65780638c804321146108d657600080fd5b8063374a4a70116102e25780635b8e7979116102755780636edb9a91116102445780636edb9a91146107ea57806370a0823114610800578063715018a61461083657806373bd699a1461084b57600080fd5b80635b8e7979146107575780635bc789d91461078b57806360f47d5f146107bf57806363854565146107d557600080fd5b806342966c68116102b157806342966c68146106df578063469132ce1461070157806349bd5a5e146107175780635b4f638d1461073757600080fd5b8063374a4a7014610641578063390a168f146106625780633b22fc03146106965780633e4e9e5d146106ca57600080fd5b806318f490cf1161035a57806329c6b3481161032957806329c6b348146105e4578063313ce567146105f9578063320589991461061557806336520ace1461062b57600080fd5b806318f490cf146105285780631b5e609b1461055c57806323b872dd1461059057806325100bd4146105b057600080fd5b806310b828c91161039657806310b828c9146104995780631694505e146104af57806316c2be6b146104e357806318160ddd1461051357600080fd5b8063038272b6146103d357806306fdde03146103fb578063095ea7b31461041d5780630e03f4141461044d57600080fd5b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610caa565b6040519081526020015b60405180910390f35b34801561040757600080fd5b50610410610cc6565b6040516103f291906134be565b34801561042957600080fd5b5061043d610438366004613522565b610d58565b60405190151581526020016103f2565b34801561045957600080fd5b506104817f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103f2565b3480156104a557600080fd5b506103e860085481565b3480156104bb57600080fd5b506104817f000000000000000000000000000000000000000000000000000000000000000081565b3480156104ef57600080fd5b5061043d6104fe36600461354e565b60186020526000908152604090205460ff1681565b34801561051f57600080fd5b506002546103e8565b34801561053457600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000000081565b34801561056857600080fd5b506103e87f4b48179ff6b22ada391290dbe08627bbb5273d4968a19da2e5c9797c34d52dc681565b34801561059c57600080fd5b5061043d6105ab36600461356b565b610d72565b3480156105bc57600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000000081565b3480156105f057600080fd5b5061043d610d98565b34801561060557600080fd5b50604051601281526020016103f2565b34801561062157600080fd5b506103e860105481565b34801561063757600080fd5b506103e8600d5481565b34801561064d57600080fd5b5060065461043d90600160a01b900460ff1681565b34801561066e57600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000000081565b3480156106a257600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000000081565b3480156106d657600080fd5b506103e8610e0b565b3480156106eb57600080fd5b506106ff6106fa3660046135ac565b610e1d565b005b34801561070d57600080fd5b506103e8600e5481565b34801561072357600080fd5b50600654610481906001600160a01b031681565b34801561074357600080fd5b506106ff6107523660046135d3565b610e29565b34801561076357600080fd5b506104817f000000000000000000000000000000000000000000000000000000000000000081565b34801561079757600080fd5b506104817f000000000000000000000000000000000000000000000000000000000000000081565b3480156107cb57600080fd5b506103e860095481565b3480156107e157600080fd5b506103e8610e95565b3480156107f657600080fd5b506103e860135481565b34801561080c57600080fd5b506103e861081b36600461354e565b6001600160a01b031660009081526020819052604090205490565b34801561084257600080fd5b506106ff610eb1565b34801561085757600080fd5b50600854151561043d565b34801561086e57600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000000081565b3480156108a257600080fd5b506106ff6108b13660046135d3565b610ec5565b3480156108c257600080fd5b506106ff6108d1366004613522565b610f29565b3480156108e257600080fd5b506103e8600c5481565b3480156108f857600080fd5b506005546001600160a01b0316610481565b34801561091657600080fd5b50610410610f37565b34801561092b57600080fd5b506106ff61093a36600461354e565b610f46565b34801561094b57600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000000081565b34801561097f57600080fd5b5061043d61098e36600461354e565b60176020526000908152604090205460ff1681565b3480156109af57600080fd5b506103e8600a5481565b3480156109c557600080fd5b5061043d6109d4366004613522565b610fb0565b3480156109e557600080fd5b506106ff6109f43660046135d3565b610fbe565b348015610a0557600080fd5b506103e860125481565b348015610a1b57600080fd5b506103e8600b5481565b348015610a3157600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000000081565b6106ff610a6736600461360c565b611062565b348015610a7857600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000000081565b348015610aac57600080fd5b5060065461043d90600160a81b900460ff1681565b348015610acd57600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000000081565b348015610b0157600080fd5b506106ff610b10366004613631565b61112d565b348015610b2157600080fd5b506106ff6112c9565b348015610b3657600080fd5b506103e8610b45366004613653565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b7c57600080fd5b506106ff610b8b3660046135ac565b611431565b348015610b9c57600080fd5b5061043d610bab36600461354e565b60166020526000908152604090205460ff1681565b348015610bcc57600080fd5b50601154610481906001600160a01b031681565b348015610bec57600080fd5b506103e860075481565b348015610c0257600080fd5b506103e86114b4565b348015610c1757600080fd5b506106ff610c2636600461354e565b6114cb565b348015610c3757600080fd5b506104817f000000000000000000000000000000000000000000000000000000000000000081565b348015610c6b57600080fd5b506103e8600f5481565b348015610c8157600080fd5b506106ff610c90366004613631565b611524565b348015610ca157600080fd5b506103e8611786565b6000610cb4611786565b600b54610cc19190613697565b905090565b606060038054610cd5906136aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610d01906136aa565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b5050505050905090565b600033610d668185856117a2565b60019150505b92915050565b600033610d808582856117b4565b610d8b85858561184b565b60019150505b9392505050565b600080610dad6005546001600160a01b031690565b6001600160a01b0316148015610def57507f0000000000000000000000000000000000000000000000000000000000000000600854610dec9190613697565b42115b80610dfa5750600854155b15610e055750600090565b50600190565b6000601354601254610cc19190613697565b610e26816118c3565b50565b610e316118cd565b6001600160a01b038216600081815260186020908152604091829020805460ff19168515159081179091558251938452908301527f306dcbe443e8f026f074a7e1e96de23ceb598ba75c3de88d8b087b84ce328bfc91015b60405180910390a15050565b6000610e9f611913565b15610eaa5750600090565b50600c5490565b610eb96118cd565b610ec36000611956565b565b610ecd6118cd565b6001600160a01b038216600081815260176020908152604091829020805460ff19168515159081179091558251938452908301527f08cb8fbd3f235844cb0931281a83bc6772ccdf59629c8920d782e44b90cd36a09101610e89565b610f3382826119b5565b5050565b606060048054610cd5906136aa565b610f4e6118cd565b6011805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fa4eea51cd2f21eac6612ba054a363ae2fd59698fc258ab414313cd73f69f2b85906020015b60405180910390a150565b600033610d6681858561184b565b610fc66118cd565b6001600160a01b038216611006576040517fb47cdee500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff19168515159081179091558251938452908301527f014ddeafe46f4124c4af768b48de643f90eab06bb0cbb87a5d7ce35f91c66dea9101610e89565b61106a6118cd565b346000036110a4576040517f796017ae00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006805482158015600160a81b81027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909316929092179092556110e85750601e82105b1561111f576040517f310795d100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007829055610f33346119ca565b6111356118cd565b600f5415801561114457508115155b156111625760405163c827c15f60e01b815260040160405180910390fd5b600e5415801561117157508015155b1561118f5760405163c827c15f60e01b815260040160405180910390fd5b811580159061119f5750600f5482105b156111bd57604051635fffe54760e01b815260040160405180910390fd5b80158015906111cd5750600e5481105b156111eb57604051635fffe54760e01b815260040160405180910390fd5b6000198214806111fc575060001981145b15611233576040517f8404f62600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f54821461127e57600f5460408051918252602082018490527f4378b25ac563a9cfb725b694a8178c787794b33b21d51fc2437d11599ca36eb2910160405180910390a1600f8290555b600e548114610f3357600e5460408051918252602082018390527f3c28c7b8d78a063d97428fb0828d666b45766c68f1f6703a16d1af5ed43f786f910160405180910390a1600e5550565b600654600160a01b900460ff166113ff57600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b1790556040516000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016907f0000000000000000000000000000000000000000000000000000000000000000908381818185875af1925050503d8060008114611393576040519150601f19603f3d011682016040523d82523d6000602084013e611398565b606091505b50509050806113d3576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f398e4c9450dda484d0641a82d59daaea35f17ee8ea3f6a2a2c3bc1461b5fc2cb90600090a150565b6040517fb615d53500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114396118cd565b60016010541015611476576040517f18821ab800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601080549082905560408051828152602081018490527f70bb2dea47325890ad4c56e9cea510be76761453061ad71ac5525167228d04999101610e89565b60006114be610e95565b600a54610cc19190613697565b6114d36118cd565b6001600160a01b03811661151b576040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b610e2681611956565b61152c6118cd565b600a54600b548184111561155357604051637924ff4760e11b815260040160405180910390fd5b8083111561157457604051637924ff4760e11b815260040160405180910390fd5b600a849055600b839055600c54600d546000869003611597576000600c5561162b565b60006127106115c67f0000000000000000000000000000000000000000000000000000000000000000896136e4565b6115d091906136fb565b90507f0000000000000000000000000000000000000000000000000000000000000000811015611623577f0000000000000000000000000000000000000000000000000000000000000000600c55611629565b600c8190555b505b8460000361163d576000600d556116d1565b600061271061166c7f0000000000000000000000000000000000000000000000000000000000000000886136e4565b61167691906136fb565b90507f00000000000000000000000000000000000000000000000000000000000000008110156116c9577f0000000000000000000000000000000000000000000000000000000000000000600d556116cf565b600d8190555b505b600c54821415806116e45750600d548114155b1561173657600c54600d54604080518581526020810193909352820183905260608201527fc62aec06e6c0bd9801f57464e310b42dd2d884cbfaf006c84a761b622aea4f089060800160405180910390a15b6040805185815260208101889052908101849052606081018690527f8da1f77a22734510b762a9625e69e737d7c0cc48984e810e5802fb341eb80a3e9060800160405180910390a1505050505050565b6000611790611913565b1561179b5750600090565b50600d5490565b6117af8383836001611e87565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146118455781811015611836576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b03841660048201526024810182905260448101839052606401611512565b61184584848484036000611e87565b50505050565b6001600160a01b03831661187557604051634b637e8f60e11b815260006004820152602401611512565b6001600160a01b0382166118b8576040517fec442f0500000000000000000000000000000000000000000000000000000000815260006004820152602401611512565b6117af838383611f8e565b610e26338261209b565b6005546001600160a01b03163314610ec3576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401611512565b60006119427f0000000000000000000000000000000000000000000000000000000000000000620151806136e4565b60085461194f9190613697565b4211905090565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119c08233836117b4565b610f33828261209b565b60085415611a04576040517fb1f3376700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b4260085543600955611a39307f00000000000000000000000000000000000000000000000000000000000000006000196117a2565b60008060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198530611a8e306001600160a01b031660009081526020819052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523060848201524260a482015260c40160606040518083038185885af1158015611b0a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611b2f919061371d565b9250925092507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bb7919061374b565b6001600160a01b031663e6a43905307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c48919061374b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611cab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ccf919061374b565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392831690811782556000908152601760209081526040808320805460ff199081166001908117909255945490951683526016909152902080549091169091179055611d60307f00000000000000000000000000000000000000000000000000000000000000006000196117a2565b60408051848152602081018490529081018290527fbf59dda00152e02f20e18cab7307c8afe0714e7f69cf24a1377cbbddcb40f9bb9060600160405180910390a16006546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611e02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e269190613768565b8114611e5e576040517fe150afc000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600654600160a81b900460ff1615611e7e57611e79816120d1565b611845565b61184581612178565b6001600160a01b038416611eca576040517fe602df0500000000000000000000000000000000000000000000000000000000815260006004820152602401611512565b6001600160a01b038316611f0d576040517f94280d6200000000000000000000000000000000000000000000000000000000815260006004820152602401611512565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561184557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611f8091815260200190565b60405180910390a350505050565b80611f9a600854151590565b61200b57611fa66122e9565b6001600160a01b0316836001600160a01b0316148015611fcf57506001600160a01b0384163014155b15612006576040517f365c2d1400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612090565b6120168484846124ed565b61202084846125da565b612029846126c1565b6000612036848685612764565b90508015612055576120488183613781565b91506120558530836129a2565b6000612062868686612ae5565b90508015612082576120748184613781565b9250612082866000836129a2565b61208d868685612c80565b50505b6118458484836129a2565b6001600160a01b0382166120c557604051634b637e8f60e11b815260006004820152602401611512565b610f3382600083611f8e565b60065460405163a9059cbb60e01b815260006004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015612123573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121479190613794565b506040518181527f781a9d251db551fc7922f7facbbe49bc3fd61d3e236a8dafa34afd0539ebfa7290602001610fa5565b6006546040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018490529091169063095ea7b3906044016020604051808303816000875af1158015612204573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122289190613794565b50600654600754600091612298917f0000000000000000000000000000000000000000000000000000000000000000916001600160a01b0316907f000000000000000000000000000000000000000000000000000000000000000090869061229390620151806136e4565b612d49565b90507fc5ee8f43592edc71599ac13d277d2800a8c3a613a7ea15e3f8566057e1922b9e82600754620151806122cd91906136e4565b6040805192835260208301919091528101839052606001610e89565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561234a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061236e919061374b565b90506000806001600160a01b038316301061238a57823061238d565b30835b915091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612413919061374b565b6040516bffffffffffffffffffffffff19606085811b8216602084015284901b166034820152604801604051602081830303815290604052805190602001206040516020016124cc9291907fff00000000000000000000000000000000000000000000000000000000000000815260609290921b6bffffffffffffffffffffffff1916600183015260158201527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f603582015260550190565b6040516020818303038152906040528051906020012060001c935050505090565b6124f5610d98565b80156125025750600f5415155b801561259157506001600160a01b03831660009081526016602052604090205460ff16801561254a57506001600160a01b03821660009081526017602052604090205460ff16155b8061259157506001600160a01b03821660009081526016602052604090205460ff16801561259157506001600160a01b03831660009081526017602052604090205460ff16155b156117af576125a1600f54612eaa565b8111156117af576040517f7f4b310900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000015610f3357600061260a610e0b565b90506000819050600061271060105461262260025490565b61262c91906136e4565b61263691906136fb565b905061264485858484612ebb565b156126ba576006805460ff60b01b1916600160b01b17905543600090815260146020526040812080546001929061267c908490613697565b9091555061268d90506014826136e4565b8211156126a25761269f6014826136e4565b91505b6126ac8284612f9c565b6006805460ff60b01b191690555b5050505050565b6001600160a01b03811660009081526016602052604090205460ff1615610e2657326000908152601560209081526040808320438452909152902054600111612736576040517f01ae70bf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b326000908152601560209081526040808320438452909152812080549161275c836137b1565b919050555050565b60007f0000000000000000000000000000000000000000000000000000000000000000801561279d5750600654600160b01b900460ff16155b15610d91576001600160a01b03841660009081526016602052604090205460ff1680156127d1575060006127cf610caa565b115b80156127f657506001600160a01b03831660009081526018602052604090205460ff16155b156128a157600b5415612848576000612710600b548461281691906136e4565b61282091906136fb565b905080601260008282546128349190613697565b9091555061284490508183613697565b9150505b6000612852611786565b9050801561289b57600061271061286983866136e4565b61287391906136fb565b905080601360008282546128879190613697565b9091555061289790508184613697565b9250505b50610d91565b6001600160a01b03831660009081526016602052604090205460ff1680156128d0575060006128ce6114b4565b115b80156128f557506001600160a01b03841660009081526018602052604090205460ff16155b15610d9157600a5415612947576000612710600a548461291591906136e4565b61291f91906136fb565b905080601260008282546129339190613697565b9091555061294390508183613697565b9150505b6000612951610e95565b9050801561299a57600061271061296883866136e4565b61297291906136fb565b905080601360008282546129869190613697565b9091555061299690508184613697565b9250505b509392505050565b6001600160a01b0383166129cd5780600260008282546129c29190613697565b90915550612a589050565b6001600160a01b03831660009081526020819052604090205481811015612a39576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024810182905260448101839052606401611512565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216612a7457600280548290039055612a93565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612ad891815260200190565b60405180910390a3505050565b60007f000000000000000000000000000000000000000000000000000000000000000015801590612b3557507f000000000000000000000000000000000000000000000000000000000000000015155b8015612b4b5750600654600160b01b900460ff16155b8015612b6f57506001600160a01b03841660009081526016602052604090205460ff165b8015612b9457506001600160a01b03831660009081526018602052604090205460ff16155b15610d9157600060095443612ba99190613781565b90507f000000000000000000000000000000000000000000000000000000000000000081101561299a576000612bff827f0000000000000000000000000000000000000000000000000000000000000000613781565b90506000612c4d7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006136fb565b90506000612c5b82846136e4565b9050612710612c6a82886136e4565b612c7491906136fb565b98975050505050505050565b612c88610d98565b8015612c955750600e5415155b8015612cba57506001600160a01b03821660009081526017602052604090205460ff16155b8015612cde57506001600160a01b03831660009081526016602052604090205460ff165b156117af57612cee600e54612eaa565b6001600160a01b038316600090815260208190526040902054612d119083613697565b11156117af576040517f7602d4da00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612dad604080516101008101825260008082526020808301829052828401829052606083018290526080830182905260a083018290528351808501855282815280820183905260c084015283518085019094528184528301529060e082015290565b3381526001600160a01b0387811660208301526fffffffffffffffffffffffffffffffff8516604080840191909152908716606083015260006080830152805180820190915280612dff6001866137ca565b64ffffffffff9081168252851660209091015260c08201526040517fab167ccc0000000000000000000000000000000000000000000000000000000081526001600160a01b0386169063ab167ccc90612e5c9084906004016137ef565b6020604051808303816000875af1158015612e7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9f9190613768565b979650505050505050565b6000610d6c64174876e80083613697565b6000818310158015612ed75750600654600160b01b900460ff16155b8015612efc57506001600160a01b03851660009081526016602052604090205460ff16155b8015612f3a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015612f7857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614155b8015612f935750436000908152601460205260409020546001115b95945050505050565b604080516002808252606082018352479260009291906020830190803683370190505090503081600081518110612fd557612fd56138b0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613053573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613077919061374b565b8160018151811061308a5761308a6138b0565b6001600160a01b0392831660209182029290920101527f00000000000000000000000000000000000000000000000000000000000000001663791ac94785600084306130d842610258613697565b6040518663ffffffff1660e01b81526004016130f89594939291906138c6565b600060405180830381600087803b15801561311257600080fd5b505af1925050508015613123575060015b61316057604051600581527f60dc41faad9fe4f70f304dcef26d96d71e98ec8e21e4a340921d94dfe46307dc9060200160405180910390a1611845565b47600061316d8483613781565b90506000856012548361318091906136e4565b61318a91906136fb565b90506000866013548461319d91906136e4565b6131a791906136fb565b90508688101561320d57600087896012546131c291906136e4565b6131cc91906136fb565b905080601260008282546131e09190613781565b909155506131f09050818a613781565b601360008282546132019190613781565b90915550613218915050565b600060138190556012555b811561323657601154613236906001600160a01b0316836000613272565b8015613268576132687f0000000000000000000000000000000000000000000000000000000000000000826001613272565b5050505050505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f6919061374b565b905060005a61c3501161330b5761c35061330d565b5a5b90506000856001600160a01b0316858390604051600060405180830381858888f193505050503d806000811461335f576040519150601f19603f3d011682016040523d82523d6000602084013e613364565b606091505b50509050806134b657826001600160a01b031663d0e30db0866040518263ffffffff1660e01b81526004016000604051808303818588803b1580156133a857600080fd5b505af1935050505080156133ba575060015b613409577f60dc41faad9fe4f70f304dcef26d96d71e98ec8e21e4a340921d94dfe46307dc846133eb5760026133ee565b60045b60405160ff90911681526020015b60405180910390a16134b6565b60405163a9059cbb60e01b81526001600160a01b0387811660048301526024820187905284169063a9059cbb906044016020604051808303816000875af1925050508015613474575060408051601f3d908101601f1916820190925261347191810190613794565b60015b6134b4577f60dc41faad9fe4f70f304dcef26d96d71e98ec8e21e4a340921d94dfe46307dc846134a55760016133ee565b604051600381526020016133fc565b505b505050505050565b60006020808352835180602085015260005b818110156134ec578581018301518582016040015282016134d0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e2657600080fd5b6000806040838503121561353557600080fd5b82356135408161350d565b946020939093013593505050565b60006020828403121561356057600080fd5b8135610d918161350d565b60008060006060848603121561358057600080fd5b833561358b8161350d565b9250602084013561359b8161350d565b929592945050506040919091013590565b6000602082840312156135be57600080fd5b5035919050565b8015158114610e2657600080fd5b600080604083850312156135e657600080fd5b82356135f18161350d565b91506020830135613601816135c5565b809150509250929050565b6000806040838503121561361f57600080fd5b823591506020830135613601816135c5565b6000806040838503121561364457600080fd5b50508035926020909101359150565b6000806040838503121561366657600080fd5b82356136718161350d565b915060208301356136018161350d565b634e487b7160e01b600052601160045260246000fd5b80820180821115610d6c57610d6c613681565b600181811c908216806136be57607f821691505b6020821081036136de57634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610d6c57610d6c613681565b60008261371857634e487b7160e01b600052601260045260246000fd5b500490565b60008060006060848603121561373257600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561375d57600080fd5b8151610d918161350d565b60006020828403121561377a57600080fd5b5051919050565b81810381811115610d6c57610d6c613681565b6000602082840312156137a657600080fd5b8151610d91816135c5565b6000600182016137c3576137c3613681565b5060010190565b64ffffffffff8281168282160390808211156137e8576137e8613681565b5092915050565b6000610140820190506001600160a01b038084511683528060208501511660208401526fffffffffffffffffffffffffffffffff604085015116604084015280606085015116606084015250608083015161384e608084018215159052565b5060a083015161386260a084018215159052565b5060c083015161388960c0840182805164ffffffffff908116835260209182015116910152565b5060e083015180516001600160a01b031661010084015260208101516101208401526137e8565b634e487b7160e01b600052603260045260246000fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b818110156139185784516001600160a01b0316835293830193918301916001016138f3565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212207de77bc02518ea62cf4561534a90bba5fd5a72a57e4bf75be311757ac774aac764736f6c6343000818003360dc41faad9fe4f70f304dcef26d96d71e98ec8e21e4a340921d94dfe46307dc00000000000000000000000000000000000000000000000000000000000002600000000000000000000000004aaa81079bcbda945b5e15d17eb26e134319a0c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bbf81e00000000000000000000000000000000000000000000009300a84bd2c44be00000000000000000000000000000000000000000000000009300a84bd2c44be0000000000000000000000000000000000000000000000000000000000000000009c400000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000008e0ecbec184d51981cfbc3a2ee19c26a979242eb000000000000000000000000de3ff2a50bd1ba1bd6a608ea0138946dddf595bc0000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000de3ff2a50bd1ba1bd6a608ea0138946dddf595bc0000000000000000000000004aaa81079bcbda945b5e15d17eb26e134319a0c0000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f983000000000000000000000000afb979d9afad1ad27c5eff4e27226e3ab9e5dcc9000000000000000000000000000000000000000000396c41bd9e54ada380000000000000000000000000000000000000000000000000000002c68af0bb14000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000e4368616e6770656e67205a68616f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002435a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f3c39abd3de22f2b53028acf1fa51fb289f8a21d000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000005be0692f63baaf6c00000

Deployed Bytecode

0x6080604052600436106103c75760003560e01c806375220b9f116101f2578063b92306111161010d578063ea8b2424116100a0578063f444324b1161006f578063f444324b14610c2b578063f85aff9414610c5f578063fe4522b014610c75578063fe6a0bbf14610c9557600080fd5b8063ea8b242414610bc0578063eb95ca7014610be0578063eeae0f9714610bf6578063f2fde38b14610c0b57600080fd5b8063dd604f1e116100dc578063dd604f1e14610b15578063dd62ed3e14610b2a578063e3ab3b1414610b70578063e85455d714610b9057600080fd5b8063b923061114610a6c578063bb88603c14610aa0578063be841baa14610ac1578063c4590d3f14610af557600080fd5b8063a35b4cef11610185578063b0d7509711610154578063b0d75097146109f9578063b2c5c9eb14610a0f578063b2e9cb3814610a25578063b6585dc614610a5957600080fd5b8063a35b4cef14610973578063a45cae02146109a3578063a9059cbb146109b9578063ad5f5d80146109d957600080fd5b80638da5cb5b116101c15780638da5cb5b146108ec57806395d89b411461090a5780639808751d1461091f578063a0aaf2481461093f57600080fd5b806375220b9f14610862578063780850b91461089657806379cc6790146108b65780638c804321146108d657600080fd5b8063374a4a70116102e25780635b8e7979116102755780636edb9a91116102445780636edb9a91146107ea57806370a0823114610800578063715018a61461083657806373bd699a1461084b57600080fd5b80635b8e7979146107575780635bc789d91461078b57806360f47d5f146107bf57806363854565146107d557600080fd5b806342966c68116102b157806342966c68146106df578063469132ce1461070157806349bd5a5e146107175780635b4f638d1461073757600080fd5b8063374a4a7014610641578063390a168f146106625780633b22fc03146106965780633e4e9e5d146106ca57600080fd5b806318f490cf1161035a57806329c6b3481161032957806329c6b348146105e4578063313ce567146105f9578063320589991461061557806336520ace1461062b57600080fd5b806318f490cf146105285780631b5e609b1461055c57806323b872dd1461059057806325100bd4146105b057600080fd5b806310b828c91161039657806310b828c9146104995780631694505e146104af57806316c2be6b146104e357806318160ddd1461051357600080fd5b8063038272b6146103d357806306fdde03146103fb578063095ea7b31461041d5780630e03f4141461044d57600080fd5b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610caa565b6040519081526020015b60405180910390f35b34801561040757600080fd5b50610410610cc6565b6040516103f291906134be565b34801561042957600080fd5b5061043d610438366004613522565b610d58565b60405190151581526020016103f2565b34801561045957600080fd5b506104817f000000000000000000000000de3ff2a50bd1ba1bd6a608ea0138946dddf595bc81565b6040516001600160a01b0390911681526020016103f2565b3480156104a557600080fd5b506103e860085481565b3480156104bb57600080fd5b506104817f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f98381565b3480156104ef57600080fd5b5061043d6104fe36600461354e565b60186020526000908152604090205460ff1681565b34801561051f57600080fd5b506002546103e8565b34801561053457600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000000081565b34801561056857600080fd5b506103e87f4b48179ff6b22ada391290dbe08627bbb5273d4968a19da2e5c9797c34d52dc681565b34801561059c57600080fd5b5061043d6105ab36600461356b565b610d72565b3480156105bc57600080fd5b506103e87f00000000000000000000000000000000000000000000000000000000000003e881565b3480156105f057600080fd5b5061043d610d98565b34801561060557600080fd5b50604051601281526020016103f2565b34801561062157600080fd5b506103e860105481565b34801561063757600080fd5b506103e8600d5481565b34801561064d57600080fd5b5060065461043d90600160a01b900460ff1681565b34801561066e57600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000000081565b3480156106a257600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000000081565b3480156106d657600080fd5b506103e8610e0b565b3480156106eb57600080fd5b506106ff6106fa3660046135ac565b610e1d565b005b34801561070d57600080fd5b506103e8600e5481565b34801561072357600080fd5b50600654610481906001600160a01b031681565b34801561074357600080fd5b506106ff6107523660046135d3565b610e29565b34801561076357600080fd5b506104817f000000000000000000000000de3ff2a50bd1ba1bd6a608ea0138946dddf595bc81565b34801561079757600080fd5b506104817f000000000000000000000000afb979d9afad1ad27c5eff4e27226e3ab9e5dcc981565b3480156107cb57600080fd5b506103e860095481565b3480156107e157600080fd5b506103e8610e95565b3480156107f657600080fd5b506103e860135481565b34801561080c57600080fd5b506103e861081b36600461354e565b6001600160a01b031660009081526020819052604090205490565b34801561084257600080fd5b506106ff610eb1565b34801561085757600080fd5b50600854151561043d565b34801561086e57600080fd5b506103e87f00000000000000000000000000000000000000000000000000000000bbf81e0081565b3480156108a257600080fd5b506106ff6108b13660046135d3565b610ec5565b3480156108c257600080fd5b506106ff6108d1366004613522565b610f29565b3480156108e257600080fd5b506103e8600c5481565b3480156108f857600080fd5b506005546001600160a01b0316610481565b34801561091657600080fd5b50610410610f37565b34801561092b57600080fd5b506106ff61093a36600461354e565b610f46565b34801561094b57600080fd5b506103e87f00000000000000000000000000000000000000000000000000000000000003e881565b34801561097f57600080fd5b5061043d61098e36600461354e565b60176020526000908152604090205460ff1681565b3480156109af57600080fd5b506103e8600a5481565b3480156109c557600080fd5b5061043d6109d4366004613522565b610fb0565b3480156109e557600080fd5b506106ff6109f43660046135d3565b610fbe565b348015610a0557600080fd5b506103e860125481565b348015610a1b57600080fd5b506103e8600b5481565b348015610a3157600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000001e81565b6106ff610a6736600461360c565b611062565b348015610a7857600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000003281565b348015610aac57600080fd5b5060065461043d90600160a81b900460ff1681565b348015610acd57600080fd5b506103e87f000000000000000000000000000000000000000000000000000000000000003281565b348015610b0157600080fd5b506106ff610b10366004613631565b61112d565b348015610b2157600080fd5b506106ff6112c9565b348015610b3657600080fd5b506103e8610b45366004613653565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b7c57600080fd5b506106ff610b8b3660046135ac565b611431565b348015610b9c57600080fd5b5061043d610bab36600461354e565b60166020526000908152604090205460ff1681565b348015610bcc57600080fd5b50601154610481906001600160a01b031681565b348015610bec57600080fd5b506103e860075481565b348015610c0257600080fd5b506103e86114b4565b348015610c1757600080fd5b506106ff610c2636600461354e565b6114cb565b348015610c3757600080fd5b506104817f0000000000000000000000004aaa81079bcbda945b5e15d17eb26e134319a0c081565b348015610c6b57600080fd5b506103e8600f5481565b348015610c8157600080fd5b506106ff610c90366004613631565b611524565b348015610ca157600080fd5b506103e8611786565b6000610cb4611786565b600b54610cc19190613697565b905090565b606060038054610cd5906136aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610d01906136aa565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b5050505050905090565b600033610d668185856117a2565b60019150505b92915050565b600033610d808582856117b4565b610d8b85858561184b565b60019150505b9392505050565b600080610dad6005546001600160a01b031690565b6001600160a01b0316148015610def57507f00000000000000000000000000000000000000000000000000000000bbf81e00600854610dec9190613697565b42115b80610dfa5750600854155b15610e055750600090565b50600190565b6000601354601254610cc19190613697565b610e26816118c3565b50565b610e316118cd565b6001600160a01b038216600081815260186020908152604091829020805460ff19168515159081179091558251938452908301527f306dcbe443e8f026f074a7e1e96de23ceb598ba75c3de88d8b087b84ce328bfc91015b60405180910390a15050565b6000610e9f611913565b15610eaa5750600090565b50600c5490565b610eb96118cd565b610ec36000611956565b565b610ecd6118cd565b6001600160a01b038216600081815260176020908152604091829020805460ff19168515159081179091558251938452908301527f08cb8fbd3f235844cb0931281a83bc6772ccdf59629c8920d782e44b90cd36a09101610e89565b610f3382826119b5565b5050565b606060048054610cd5906136aa565b610f4e6118cd565b6011805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fa4eea51cd2f21eac6612ba054a363ae2fd59698fc258ab414313cd73f69f2b85906020015b60405180910390a150565b600033610d6681858561184b565b610fc66118cd565b6001600160a01b038216611006576040517fb47cdee500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff19168515159081179091558251938452908301527f014ddeafe46f4124c4af768b48de643f90eab06bb0cbb87a5d7ce35f91c66dea9101610e89565b61106a6118cd565b346000036110a4576040517f796017ae00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006805482158015600160a81b81027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909316929092179092556110e85750601e82105b1561111f576040517f310795d100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007829055610f33346119ca565b6111356118cd565b600f5415801561114457508115155b156111625760405163c827c15f60e01b815260040160405180910390fd5b600e5415801561117157508015155b1561118f5760405163c827c15f60e01b815260040160405180910390fd5b811580159061119f5750600f5482105b156111bd57604051635fffe54760e01b815260040160405180910390fd5b80158015906111cd5750600e5481105b156111eb57604051635fffe54760e01b815260040160405180910390fd5b6000198214806111fc575060001981145b15611233576040517f8404f62600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f54821461127e57600f5460408051918252602082018490527f4378b25ac563a9cfb725b694a8178c787794b33b21d51fc2437d11599ca36eb2910160405180910390a1600f8290555b600e548114610f3357600e5460408051918252602082018390527f3c28c7b8d78a063d97428fb0828d666b45766c68f1f6703a16d1af5ed43f786f910160405180910390a1600e5550565b600654600160a01b900460ff166113ff57600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b1790556040516000906001600160a01b037f000000000000000000000000de3ff2a50bd1ba1bd6a608ea0138946dddf595bc16907f00000000000000000000000000000000000000000000000002c68af0bb140000908381818185875af1925050503d8060008114611393576040519150601f19603f3d011682016040523d82523d6000602084013e611398565b606091505b50509050806113d3576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f398e4c9450dda484d0641a82d59daaea35f17ee8ea3f6a2a2c3bc1461b5fc2cb90600090a150565b6040517fb615d53500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114396118cd565b60016010541015611476576040517f18821ab800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601080549082905560408051828152602081018490527f70bb2dea47325890ad4c56e9cea510be76761453061ad71ac5525167228d04999101610e89565b60006114be610e95565b600a54610cc19190613697565b6114d36118cd565b6001600160a01b03811661151b576040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b610e2681611956565b61152c6118cd565b600a54600b548184111561155357604051637924ff4760e11b815260040160405180910390fd5b8083111561157457604051637924ff4760e11b815260040160405180910390fd5b600a849055600b839055600c54600d546000869003611597576000600c5561162b565b60006127106115c67f00000000000000000000000000000000000000000000000000000000000003e8896136e4565b6115d091906136fb565b90507f0000000000000000000000000000000000000000000000000000000000000032811015611623577f0000000000000000000000000000000000000000000000000000000000000032600c55611629565b600c8190555b505b8460000361163d576000600d556116d1565b600061271061166c7f00000000000000000000000000000000000000000000000000000000000003e8886136e4565b61167691906136fb565b90507f00000000000000000000000000000000000000000000000000000000000000328110156116c9577f0000000000000000000000000000000000000000000000000000000000000032600d556116cf565b600d8190555b505b600c54821415806116e45750600d548114155b1561173657600c54600d54604080518581526020810193909352820183905260608201527fc62aec06e6c0bd9801f57464e310b42dd2d884cbfaf006c84a761b622aea4f089060800160405180910390a15b6040805185815260208101889052908101849052606081018690527f8da1f77a22734510b762a9625e69e737d7c0cc48984e810e5802fb341eb80a3e9060800160405180910390a1505050505050565b6000611790611913565b1561179b5750600090565b50600d5490565b6117af8383836001611e87565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146118455781811015611836576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b03841660048201526024810182905260448101839052606401611512565b61184584848484036000611e87565b50505050565b6001600160a01b03831661187557604051634b637e8f60e11b815260006004820152602401611512565b6001600160a01b0382166118b8576040517fec442f0500000000000000000000000000000000000000000000000000000000815260006004820152602401611512565b6117af838383611f8e565b610e26338261209b565b6005546001600160a01b03163314610ec3576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401611512565b60006119427f000000000000000000000000000000000000000000000000000000000000001e620151806136e4565b60085461194f9190613697565b4211905090565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119c08233836117b4565b610f33828261209b565b60085415611a04576040517fb1f3376700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b4260085543600955611a39307f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f9836000196117a2565b60008060007f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f9836001600160a01b031663f305d7198530611a8e306001600160a01b031660009081526020819052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523060848201524260a482015260c40160606040518083038185885af1158015611b0a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611b2f919061371d565b9250925092507f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f9836001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bb7919061374b565b6001600160a01b031663e6a43905307f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f9836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c48919061374b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611cab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ccf919061374b565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392831690811782556000908152601760209081526040808320805460ff199081166001908117909255945490951683526016909152902080549091169091179055611d60307f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f9836000196117a2565b60408051848152602081018490529081018290527fbf59dda00152e02f20e18cab7307c8afe0714e7f69cf24a1377cbbddcb40f9bb9060600160405180910390a16006546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611e02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e269190613768565b8114611e5e576040517fe150afc000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600654600160a81b900460ff1615611e7e57611e79816120d1565b611845565b61184581612178565b6001600160a01b038416611eca576040517fe602df0500000000000000000000000000000000000000000000000000000000815260006004820152602401611512565b6001600160a01b038316611f0d576040517f94280d6200000000000000000000000000000000000000000000000000000000815260006004820152602401611512565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561184557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611f8091815260200190565b60405180910390a350505050565b80611f9a600854151590565b61200b57611fa66122e9565b6001600160a01b0316836001600160a01b0316148015611fcf57506001600160a01b0384163014155b15612006576040517f365c2d1400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612090565b6120168484846124ed565b61202084846125da565b612029846126c1565b6000612036848685612764565b90508015612055576120488183613781565b91506120558530836129a2565b6000612062868686612ae5565b90508015612082576120748184613781565b9250612082866000836129a2565b61208d868685612c80565b50505b6118458484836129a2565b6001600160a01b0382166120c557604051634b637e8f60e11b815260006004820152602401611512565b610f3382600083611f8e565b60065460405163a9059cbb60e01b815260006004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015612123573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121479190613794565b506040518181527f781a9d251db551fc7922f7facbbe49bc3fd61d3e236a8dafa34afd0539ebfa7290602001610fa5565b6006546040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b037f000000000000000000000000afb979d9afad1ad27c5eff4e27226e3ab9e5dcc981166004830152602482018490529091169063095ea7b3906044016020604051808303816000875af1158015612204573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122289190613794565b50600654600754600091612298917f0000000000000000000000004aaa81079bcbda945b5e15d17eb26e134319a0c0916001600160a01b0316907f000000000000000000000000afb979d9afad1ad27c5eff4e27226e3ab9e5dcc990869061229390620151806136e4565b612d49565b90507fc5ee8f43592edc71599ac13d277d2800a8c3a613a7ea15e3f8566057e1922b9e82600754620151806122cd91906136e4565b6040805192835260208301919091528101839052606001610e89565b6000807f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f9836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561234a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061236e919061374b565b90506000806001600160a01b038316301061238a57823061238d565b30835b915091507f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f9836001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612413919061374b565b6040516bffffffffffffffffffffffff19606085811b8216602084015284901b166034820152604801604051602081830303815290604052805190602001206040516020016124cc9291907fff00000000000000000000000000000000000000000000000000000000000000815260609290921b6bffffffffffffffffffffffff1916600183015260158201527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f603582015260550190565b6040516020818303038152906040528051906020012060001c935050505090565b6124f5610d98565b80156125025750600f5415155b801561259157506001600160a01b03831660009081526016602052604090205460ff16801561254a57506001600160a01b03821660009081526017602052604090205460ff16155b8061259157506001600160a01b03821660009081526016602052604090205460ff16801561259157506001600160a01b03831660009081526017602052604090205460ff16155b156117af576125a1600f54612eaa565b8111156117af576040517f7f4b310900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000115610f3357600061260a610e0b565b90506000819050600061271060105461262260025490565b61262c91906136e4565b61263691906136fb565b905061264485858484612ebb565b156126ba576006805460ff60b01b1916600160b01b17905543600090815260146020526040812080546001929061267c908490613697565b9091555061268d90506014826136e4565b8211156126a25761269f6014826136e4565b91505b6126ac8284612f9c565b6006805460ff60b01b191690555b5050505050565b6001600160a01b03811660009081526016602052604090205460ff1615610e2657326000908152601560209081526040808320438452909152902054600111612736576040517f01ae70bf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b326000908152601560209081526040808320438452909152812080549161275c836137b1565b919050555050565b60007f0000000000000000000000000000000000000000000000000000000000000001801561279d5750600654600160b01b900460ff16155b15610d91576001600160a01b03841660009081526016602052604090205460ff1680156127d1575060006127cf610caa565b115b80156127f657506001600160a01b03831660009081526018602052604090205460ff16155b156128a157600b5415612848576000612710600b548461281691906136e4565b61282091906136fb565b905080601260008282546128349190613697565b9091555061284490508183613697565b9150505b6000612852611786565b9050801561289b57600061271061286983866136e4565b61287391906136fb565b905080601360008282546128879190613697565b9091555061289790508184613697565b9250505b50610d91565b6001600160a01b03831660009081526016602052604090205460ff1680156128d0575060006128ce6114b4565b115b80156128f557506001600160a01b03841660009081526018602052604090205460ff16155b15610d9157600a5415612947576000612710600a548461291591906136e4565b61291f91906136fb565b905080601260008282546129339190613697565b9091555061294390508183613697565b9150505b6000612951610e95565b9050801561299a57600061271061296883866136e4565b61297291906136fb565b905080601360008282546129869190613697565b9091555061299690508184613697565b9250505b509392505050565b6001600160a01b0383166129cd5780600260008282546129c29190613697565b90915550612a589050565b6001600160a01b03831660009081526020819052604090205481811015612a39576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024810182905260448101839052606401611512565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216612a7457600280548290039055612a93565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612ad891815260200190565b60405180910390a3505050565b60007f000000000000000000000000000000000000000000000000000000000000000015801590612b3557507f000000000000000000000000000000000000000000000000000000000000000015155b8015612b4b5750600654600160b01b900460ff16155b8015612b6f57506001600160a01b03841660009081526016602052604090205460ff165b8015612b9457506001600160a01b03831660009081526018602052604090205460ff16155b15610d9157600060095443612ba99190613781565b90507f000000000000000000000000000000000000000000000000000000000000000081101561299a576000612bff827f0000000000000000000000000000000000000000000000000000000000000000613781565b90506000612c4d7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006136fb565b90506000612c5b82846136e4565b9050612710612c6a82886136e4565b612c7491906136fb565b98975050505050505050565b612c88610d98565b8015612c955750600e5415155b8015612cba57506001600160a01b03821660009081526017602052604090205460ff16155b8015612cde57506001600160a01b03831660009081526016602052604090205460ff165b156117af57612cee600e54612eaa565b6001600160a01b038316600090815260208190526040902054612d119083613697565b11156117af576040517f7602d4da00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612dad604080516101008101825260008082526020808301829052828401829052606083018290526080830182905260a083018290528351808501855282815280820183905260c084015283518085019094528184528301529060e082015290565b3381526001600160a01b0387811660208301526fffffffffffffffffffffffffffffffff8516604080840191909152908716606083015260006080830152805180820190915280612dff6001866137ca565b64ffffffffff9081168252851660209091015260c08201526040517fab167ccc0000000000000000000000000000000000000000000000000000000081526001600160a01b0386169063ab167ccc90612e5c9084906004016137ef565b6020604051808303816000875af1158015612e7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9f9190613768565b979650505050505050565b6000610d6c64174876e80083613697565b6000818310158015612ed75750600654600160b01b900460ff16155b8015612efc57506001600160a01b03851660009081526016602052604090205460ff16155b8015612f3a57507f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f9836001600160a01b0316856001600160a01b031614155b8015612f7857507f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f9836001600160a01b0316846001600160a01b031614155b8015612f935750436000908152601460205260409020546001115b95945050505050565b604080516002808252606082018352479260009291906020830190803683370190505090503081600081518110612fd557612fd56138b0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f9836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613053573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613077919061374b565b8160018151811061308a5761308a6138b0565b6001600160a01b0392831660209182029290920101527f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f9831663791ac94785600084306130d842610258613697565b6040518663ffffffff1660e01b81526004016130f89594939291906138c6565b600060405180830381600087803b15801561311257600080fd5b505af1925050508015613123575060015b61316057604051600581527f60dc41faad9fe4f70f304dcef26d96d71e98ec8e21e4a340921d94dfe46307dc9060200160405180910390a1611845565b47600061316d8483613781565b90506000856012548361318091906136e4565b61318a91906136fb565b90506000866013548461319d91906136e4565b6131a791906136fb565b90508688101561320d57600087896012546131c291906136e4565b6131cc91906136fb565b905080601260008282546131e09190613781565b909155506131f09050818a613781565b601360008282546132019190613781565b90915550613218915050565b600060138190556012555b811561323657601154613236906001600160a01b0316836000613272565b8015613268576132687f000000000000000000000000de3ff2a50bd1ba1bd6a608ea0138946dddf595bc826001613272565b5050505050505050565b60007f000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f9836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f6919061374b565b905060005a61c3501161330b5761c35061330d565b5a5b90506000856001600160a01b0316858390604051600060405180830381858888f193505050503d806000811461335f576040519150601f19603f3d011682016040523d82523d6000602084013e613364565b606091505b50509050806134b657826001600160a01b031663d0e30db0866040518263ffffffff1660e01b81526004016000604051808303818588803b1580156133a857600080fd5b505af1935050505080156133ba575060015b613409577f60dc41faad9fe4f70f304dcef26d96d71e98ec8e21e4a340921d94dfe46307dc846133eb5760026133ee565b60045b60405160ff90911681526020015b60405180910390a16134b6565b60405163a9059cbb60e01b81526001600160a01b0387811660048301526024820187905284169063a9059cbb906044016020604051808303816000875af1925050508015613474575060408051601f3d908101601f1916820190925261347191810190613794565b60015b6134b4577f60dc41faad9fe4f70f304dcef26d96d71e98ec8e21e4a340921d94dfe46307dc846134a55760016133ee565b604051600381526020016133fc565b505b505050505050565b60006020808352835180602085015260005b818110156134ec578581018301518582016040015282016134d0565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e2657600080fd5b6000806040838503121561353557600080fd5b82356135408161350d565b946020939093013593505050565b60006020828403121561356057600080fd5b8135610d918161350d565b60008060006060848603121561358057600080fd5b833561358b8161350d565b9250602084013561359b8161350d565b929592945050506040919091013590565b6000602082840312156135be57600080fd5b5035919050565b8015158114610e2657600080fd5b600080604083850312156135e657600080fd5b82356135f18161350d565b91506020830135613601816135c5565b809150509250929050565b6000806040838503121561361f57600080fd5b823591506020830135613601816135c5565b6000806040838503121561364457600080fd5b50508035926020909101359150565b6000806040838503121561366657600080fd5b82356136718161350d565b915060208301356136018161350d565b634e487b7160e01b600052601160045260246000fd5b80820180821115610d6c57610d6c613681565b600181811c908216806136be57607f821691505b6020821081036136de57634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610d6c57610d6c613681565b60008261371857634e487b7160e01b600052601260045260246000fd5b500490565b60008060006060848603121561373257600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561375d57600080fd5b8151610d918161350d565b60006020828403121561377a57600080fd5b5051919050565b81810381811115610d6c57610d6c613681565b6000602082840312156137a657600080fd5b8151610d91816135c5565b6000600182016137c3576137c3613681565b5060010190565b64ffffffffff8281168282160390808211156137e8576137e8613681565b5092915050565b6000610140820190506001600160a01b038084511683528060208501511660208401526fffffffffffffffffffffffffffffffff604085015116604084015280606085015116606084015250608083015161384e608084018215159052565b5060a083015161386260a084018215159052565b5060c083015161388960c0840182805164ffffffffff908116835260209182015116910152565b5060e083015180516001600160a01b031661010084015260208101516101208401526137e8565b634e487b7160e01b600052603260045260246000fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b818110156139185784516001600160a01b0316835293830193918301916001016138f3565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212207de77bc02518ea62cf4561534a90bba5fd5a72a57e4bf75be311757ac774aac764736f6c63430008180033

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

00000000000000000000000000000000000000000000000000000000000002600000000000000000000000004aaa81079bcbda945b5e15d17eb26e134319a0c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bbf81e00000000000000000000000000000000000000000000009300a84bd2c44be00000000000000000000000000000000000000000000000009300a84bd2c44be0000000000000000000000000000000000000000000000000000000000000000009c400000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000008e0ecbec184d51981cfbc3a2ee19c26a979242eb000000000000000000000000de3ff2a50bd1ba1bd6a608ea0138946dddf595bc0000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000de3ff2a50bd1ba1bd6a608ea0138946dddf595bc0000000000000000000000004aaa81079bcbda945b5e15d17eb26e134319a0c0000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f983000000000000000000000000afb979d9afad1ad27c5eff4e27226e3ab9e5dcc9000000000000000000000000000000000000000000396c41bd9e54ada380000000000000000000000000000000000000000000000000000002c68af0bb14000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000e4368616e6770656e67205a68616f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002435a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f3c39abd3de22f2b53028acf1fa51fb289f8a21d000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000005be0692f63baaf6c00000

-----Decoded View---------------
Arg [0] : baseParams_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [1] : liquidityParams_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [2] : autoburnParams_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [3] : limitParams_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [4] : taxParams_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
37 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [1] : 0000000000000000000000004aaa81079bcbda945b5e15d17eb26e134319a0c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 00000000000000000000000000000000000000000000000000000000bbf81e00
Arg [5] : 000000000000000000000000000000000000000000009300a84bd2c44be00000
Arg [6] : 000000000000000000000000000000000000000000009300a84bd2c44be00000
Arg [7] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [8] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 00000000000000000000000000000000000000000000000000000000000000fa
Arg [11] : 00000000000000000000000000000000000000000000000000000000000000fa
Arg [12] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [13] : 0000000000000000000000008e0ecbec184d51981cfbc3a2ee19c26a979242eb
Arg [14] : 000000000000000000000000de3ff2a50bd1ba1bd6a608ea0138946dddf595bc
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [17] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [18] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [21] : 000000000000000000000000de3ff2a50bd1ba1bd6a608ea0138946dddf595bc
Arg [22] : 0000000000000000000000004aaa81079bcbda945b5e15d17eb26e134319a0c0
Arg [23] : 000000000000000000000000f25472588cbc7cdac9d3cfad8d65310b48f9f983
Arg [24] : 000000000000000000000000afb979d9afad1ad27c5eff4e27226e3ab9e5dcc9
Arg [25] : 000000000000000000000000000000000000000000396c41bd9e54ada3800000
Arg [26] : 00000000000000000000000000000000000000000000000002c68af0bb140000
Arg [27] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [29] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [30] : 4368616e6770656e67205a68616f000000000000000000000000000000000000
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [32] : 435a000000000000000000000000000000000000000000000000000000000000
Arg [33] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [34] : 000000000000000000000000f3c39abd3de22f2b53028acf1fa51fb289f8a21d
Arg [35] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [36] : 00000000000000000000000000000000000000000005be0692f63baaf6c00000


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.