ETH Price: $2,278.49 (-6.25%)

Token

Murtibra (MURTI)

Overview

Max Total Supply

200,000,000 MURTI

Holders

155

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Murtibra

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2023-12-28
*/

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.23;

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

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

/**
 * @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;
    }
}

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)

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

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

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

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

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

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

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

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

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

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

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

/// @title ERC20 meme
/// @author @niera26
/// @notice meme token with max wallet and taxes at launch
/// @notice source: https://github.com/niera26/erc20-meme-contracts
contract ERC20Meme is Ownable, ERC20, ERC20Burnable {
    // =========================================================================
    // dependencies.
    // =========================================================================

    IUniswapV2Router02 public constant router = IUniswapV2Router02(0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506); // sushiswap on arbitrum

    // =========================================================================
    // launch max wallet.
    // =========================================================================

    uint256 public startBlock;

    mapping(address => bool) public pairs;

    uint256 public maxWallet = type(uint256).max; // set to 2% in initialize

    // =========================================================================
    // launch fees.
    // =========================================================================

    address public marketing;

    uint24 public constant maxSwapFee = 3000;
    uint24 public constant feeDenominator = 10000;

    uint24 public buyFee = 2400;
    uint24 public sellFee = 2400;

    // =========================================================================
    // events.
    // =========================================================================

    event Sweep(address indexed addr, address indexed token, uint256 amount);

    // =========================================================================
    // constructor.
    // =========================================================================

    constructor(string memory name, string memory symbol, uint256 _totalSupply)
        Ownable(msg.sender)
        ERC20(name, symbol)
    {
        // marketing wallet is deployer by default.
        marketing = msg.sender;

        // mint total supply to itself.
        _mint(address(this), _totalSupply * 10 ** decimals());
    }

    // =========================================================================
    // exposed user functions.
    // =========================================================================

    /**
     * Swap the collected tax to ETH.
     *
     * Pass minimal expected amount to prevent slippage/frontrun.
     */
    function swapCollectedTax(uint256 amountOutMin) public {
        // return if no tax collected.
        uint256 amountIn = balanceOf(address(this));

        if (amountIn == 0) return;

        // approve router to spend tokens.
        _approve(address(this), address(router), amountIn);

        // swap the whole amount to eth directly to marketing wallet.
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amountIn, amountOutMin, path, marketing, block.timestamp
        );
    }

    /**
     * Sweep any other ERC20 mistakenly sent to this contract.
     */
    function sweep(IERC20 otherToken) external {
        require(address(otherToken) != address(this), "!sweep");

        uint256 amount = otherToken.balanceOf(address(this));

        otherToken.transfer(msg.sender, amount);

        emit Sweep(msg.sender, address(otherToken), amount);
    }

    // =========================================================================
    // exposed admin functions.
    // =========================================================================

    /**
     * Initialize the trading with the given eth and this contract balance.
     *
     * Starts trading, sets max wallet to 2% of the supply, create the uniswap V2 pair
     * with ETH, adds liquidity.
     *
     * LP tokens are sent to owner.
     */
    function initialize() external payable onlyOwner {
        require(msg.value > 0, "!liquidity");
        require(startBlock == 0, "!initialized");

        // set start block so cant be initialized twice.
        startBlock = block.number;

        // init max wallet to 2%.
        maxWallet = totalSupply() / 50;

        // the all balance will be put in the LP.
        uint256 balance = balanceOf(address(this));

        // create an amm pair with WETH.
        // as a contract, pair is automatically excluded from rewards.
        createAmmPairWith(router.WETH());

        // approve router to use total balance.
        _approve(address(this), address(router), balance);

        // add liquidity and send LP to owner.
        router.addLiquidityETH{value: msg.value}(address(this), balance, 0, 0, msg.sender, block.timestamp);
    }

    /**
     * Remove max wallet limits, one shoot.
     */
    function removeMaxWallet() external onlyOwner {
        maxWallet = type(uint256).max;
    }

    /**
     * Set the fees.
     */
    function setFee(uint24 _buyFee, uint24 _sellFee) external onlyOwner {
        require(_buyFee <= maxSwapFee, "!buyFee");
        require(_sellFee <= maxSwapFee, "!sellFee");

        buyFee = _buyFee;
        sellFee = _sellFee;
    }

    /**
     * Ensure no limitation when renouncing ownership.
     */
    function renounceOwnership() public override onlyOwner {
        require(buyFee == 0, "!buyFee");
        require(sellFee == 0, "!sellFee");
        require(maxWallet == type(uint256).max, "!maxWallet");
        _transferOwnership(address(0));
    }

    // =========================================================================
    // internal functions.
    // =========================================================================

    /**
     * Create a pair between this token and the given token.
     */
    function createAmmPairWith(address token) private {
        IUniswapV2Factory factory = IUniswapV2Factory(router.factory());

        address pair = factory.createPair(token, address(this));

        pairs[pair] = true;
    }

    /**
     * Whether the given address is excluded from max wallet limit.
     */
    function _isExcludedFromMaxWallet(address addr) private view returns (bool) {
        return address(this) == addr || address(router) == addr || pairs[addr];
    }

    /**
     * Whether the given adress is excluded from taxes.
     */
    function _isExcludedFromTaxes(address addr) private view returns (bool) {
        return address(this) == addr || address(router) == addr;
    }

    /**
     * Override the update method in order to take fee when the transfer is from/to
     * a registered amm pair and to prevent max wallet.
     *
     * - transfers from/to registered pairs are taxed.
     * - taxed tokens are sent to this very contract.
     * - on a taxed sell, the collected tax is swapped for eth.
     * - prevents receiving address to get more than max wallet.
     */
    function _update(address from, address to, uint256 amount) internal override {
        // check if it is a taxed buy/sell.
        bool isTaxedBuy = pairs[from] && !_isExcludedFromTaxes(to);
        bool isTaxedSell = !_isExcludedFromTaxes(from) && pairs[to];

        // compute the fee of a taxed buy/sell.
        uint256 fee = (isTaxedBuy ? buyFee : 0) + (isTaxedSell ? sellFee : 0);

        uint256 taxAmount = (amount * fee) / feeDenominator;

        uint256 actualTransferAmount = amount - taxAmount;

        // transfer the tax to this contract.
        if (taxAmount > 0) {
            super._update(from, address(this), taxAmount);
        }

        // swaps the tax to eth when it is a sell.
        if (isTaxedSell) {
            swapCollectedTax(0);
        }

        // transfer the actual amount to receiving address.
        super._update(from, to, actualTransferAmount);

        // revert when the receiving address balance is above max wallet.
        if (!_isExcludedFromMaxWallet(to)) {
            require(balanceOf(to) <= maxWallet, "!maxWallet");
        }
    }
}

/// @title Murtibra
/// @author @niera26
/// @notice source: https://github.com/murtibra/murtibra-contracts
contract Murtibra is ERC20Meme {
    constructor() ERC20Meme("Murtibra", "MURTI", 200e6) {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Sweep","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeDenominator","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapFee","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint24","name":"_buyFee","type":"uint24"},{"internalType":"uint24","name":"_sellFee","type":"uint24"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOutMin","type":"uint256"}],"name":"swapCollectedTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"otherToken","type":"address"}],"name":"sweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"}]

60806040526000196008556009805465ffffffffffff60a01b1916634b00004b60a51b1790553480156200003257600080fd5b5060408051808201825260088152674d7572746962726160c01b602080830191909152825180840190935260058352644d5552544960d81b9083015290630bebc200828233806200009e57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000a98162000112565b506004620000b8838262000830565b506005620000c7828262000830565b5050600980546001600160a01b03191633179055506200010930620000ea601290565b620000f790600a62000a0f565b62000103908462000a27565b62000162565b50505062000b6c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200018e5760405163ec442f0560e01b81526000600482015260240162000095565b6200019c60008383620001a0565b5050565b6001600160a01b03831660009081526007602052604081205460ff168015620001d15750620001cf836200032f565b155b90506000620001e0856200032f565b1580156200020657506001600160a01b03841660009081526007602052604090205460ff165b90506000816200021857600062000228565b600954600160b81b900462ffffff165b836200023657600062000246565b600954600160a01b900462ffffff165b62000252919062000a41565b62ffffff16905060006127106200026a838762000a27565b62000276919062000a67565b9050600062000286828762000a8a565b905081156200029c576200029c88308462000366565b8315620002af57620002af600062000499565b620002bc88888362000366565b620002c78762000643565b62000325576008546001600160a01b0388166000908152600160205260409020541115620003255760405162461bcd60e51b815260206004820152600a602482015269085b585e15d85b1b195d60b21b604482015260640162000095565b5050505050505050565b6000306001600160a01b0383161480620003605750600080516020620023558339815191526001600160a01b038316145b92915050565b6001600160a01b0383166200039557806003600082825462000389919062000aa0565b90915550620004099050565b6001600160a01b03831660009081526001602052604090205481811015620003ea5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000095565b6001600160a01b03841660009081526001602052604090209082900390555b6001600160a01b038216620004275760038054829003905562000446565b6001600160a01b03821660009081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200048c91815260200190565b60405180910390a3505050565b3060009081526001602052604081205490819003620004b6575050565b620004d23060008051602062002355833981519152836200069a565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106200050a576200050a62000ab6565b60200260200101906001600160a01b031690816001600160a01b031681525050600080516020620023558339815191526001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000578573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200059e919062000acc565b81600181518110620005b457620005b462000ab6565b6001600160a01b03928316602091820292909201015260095460405163791ac94760e01b8152600080516020620023558339815191529263791ac947926200060a92879289928892911690429060040162000af7565b600060405180830381600087803b1580156200062557600080fd5b505af11580156200063a573d6000803e3d6000fd5b50505050505050565b6000306001600160a01b0383161480620006745750600080516020620023558339815191526001600160a01b038316145b80620003605750506001600160a01b031660009081526007602052604090205460ff1690565b620006a98383836001620006ae565b505050565b6001600160a01b038416620006da5760405163e602df0560e01b81526000600482015260240162000095565b6001600160a01b0383166200070657604051634a1406b160e11b81526000600482015260240162000095565b6001600160a01b03808516600090815260026020908152604080832093871683529290522082905580156200078457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200077b91815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007b557607f821691505b602082108103620007d657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006a9576000816000526020600020601f850160051c81016020861015620008075750805b601f850160051c820191505b81811015620008285782815560010162000813565b505050505050565b81516001600160401b038111156200084c576200084c6200078a565b62000864816200085d8454620007a0565b84620007dc565b602080601f8311600181146200089c5760008415620008835750858301515b600019600386901b1c1916600185901b17855562000828565b600085815260208120601f198616915b82811015620008cd57888601518255948401946001909101908401620008ac565b5085821015620008ec5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000953578160001904821115620009375762000937620008fc565b808516156200094557918102915b93841c939080029062000917565b509250929050565b6000826200096c5750600162000360565b816200097b5750600062000360565b81600181146200099457600281146200099f57620009bf565b600191505062000360565b60ff841115620009b357620009b3620008fc565b50506001821b62000360565b5060208310610133831016604e8410600b8410161715620009e4575081810a62000360565b620009f0838362000912565b806000190482111562000a075762000a07620008fc565b029392505050565b600062000a2060ff8416836200095b565b9392505050565b8082028115828204841417620003605762000360620008fc565b62ffffff81811683821601908082111562000a605762000a60620008fc565b5092915050565b60008262000a8557634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115620003605762000360620008fc565b80820180821115620003605762000360620008fc565b634e487b7160e01b600052603260045260246000fd5b60006020828403121562000adf57600080fd5b81516001600160a01b038116811462000a2057600080fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b8181101562000b4b5784516001600160a01b03168352938301939183019160010162000b24565b50506001600160a01b03969096166060850152505050608001529392505050565b6117d98062000b7c6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063dbfa0bb51161008a578063f2fde38b11610064578063f2fde38b146104e9578063f887ea4014610509578063f8b45b0514610531578063fe33b3021461054757600080fd5b8063dbfa0bb51461046e578063dc07b6171461048e578063dd62ed3e146104a357600080fd5b80638129fc1c116100c65780638129fc1c146104135780638da5cb5b1461041b57806395d89b4114610439578063a9059cbb1461044e57600080fd5b806370a08231146103a8578063715018a6146103de57806379cc6790146103f357600080fd5b80632b14ca561161015957806342966c681161013357806342966c6814610339578063470624021461035957806348cd4cb11461037c57806366edecce1461039257600080fd5b80632b14ca56146102c25780632d3e474a146102e5578063313ce5671461031d57600080fd5b8063180b0d7e11610195578063180b0d7e1461023957806318160ddd146102635780631e9c62ca1461028257806323b872dd146102a257600080fd5b806301681a62146101bc57806306fdde03146101de578063095ea7b314610209575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611445565b610577565b005b3480156101ea57600080fd5b506101f36106e1565b6040516102009190611469565b60405180910390f35b34801561021557600080fd5b506102296102243660046114b8565b610773565b6040519015158152602001610200565b34801561024557600080fd5b5061024f61271081565b60405162ffffff9091168152602001610200565b34801561026f57600080fd5b506003545b604051908152602001610200565b34801561028e57600080fd5b506101dc61029d3660046114fc565b61078d565b3480156102ae57600080fd5b506102296102bd36600461152f565b610854565b3480156102ce57600080fd5b5060095461024f90600160b81b900462ffffff1681565b3480156102f157600080fd5b50600954610305906001600160a01b031681565b6040516001600160a01b039091168152602001610200565b34801561032957600080fd5b5060405160128152602001610200565b34801561034557600080fd5b506101dc610354366004611570565b610878565b34801561036557600080fd5b5060095461024f90600160a01b900462ffffff1681565b34801561038857600080fd5b5061027460065481565b34801561039e57600080fd5b5061024f610bb881565b3480156103b457600080fd5b506102746103c3366004611445565b6001600160a01b031660009081526001602052604090205490565b3480156103ea57600080fd5b506101dc610885565b3480156103ff57600080fd5b506101dc61040e3660046114b8565b610966565b6101dc61097f565b34801561042757600080fd5b506000546001600160a01b0316610305565b34801561044557600080fd5b506101f3610b6c565b34801561045a57600080fd5b506102296104693660046114b8565b610b7b565b34801561047a57600080fd5b506101dc610489366004611570565b610b89565b34801561049a57600080fd5b506101dc610d32565b3480156104af57600080fd5b506102746104be366004611589565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156104f557600080fd5b506101dc610504366004611445565b610d42565b34801561051557600080fd5b50610305731b02da8cb0d097eb8d57a175b88c7d8b4799750681565b34801561053d57600080fd5b5061027460085481565b34801561055357600080fd5b50610229610562366004611445565b60076020526000908152604090205460ff1681565b306001600160a01b038216036105bd5760405162461bcd60e51b815260206004820152600660248201526502173776565760d41b60448201526064015b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610604573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062891906115c2565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610678573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069c91906115db565b506040518181526001600160a01b0383169033907fed679328aebf74ede77ae09efcf36e90244f83643dadac1c2d9f0b21a46f6ab79060200160405180910390a35050565b6060600480546106f0906115fd565b80601f016020809104026020016040519081016040528092919081815260200182805461071c906115fd565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b600033610781818585610d7d565b60019150505b92915050565b610795610d8f565b610bb862ffffff831611156107d65760405162461bcd60e51b81526020600482015260076024820152662162757946656560c81b60448201526064016105b4565b610bb862ffffff821611156108185760405162461bcd60e51b81526020600482015260086024820152672173656c6c46656560c01b60448201526064016105b4565b6009805465ffffffffffff60a01b1916600160a01b62ffffff9485160262ffffff60b81b191617600160b81b9290931691909102919091179055565b600033610862858285610dbc565b61086d858585610e34565b506001949350505050565b6108823382610e93565b50565b61088d610d8f565b600954600160a01b900462ffffff16156108d35760405162461bcd60e51b81526020600482015260076024820152662162757946656560c81b60448201526064016105b4565b600954600160b81b900462ffffff161561091a5760405162461bcd60e51b81526020600482015260086024820152672173656c6c46656560c01b60448201526064016105b4565b6000196008541461095a5760405162461bcd60e51b815260206004820152600a602482015269085b585e15d85b1b195d60b21b60448201526064016105b4565b6109646000610ec9565b565b610971823383610dbc565b61097b8282610e93565b5050565b610987610d8f565b600034116109c45760405162461bcd60e51b815260206004820152600a602482015269216c697175696469747960b01b60448201526064016105b4565b60065415610a035760405162461bcd60e51b815260206004820152600c60248201526b085a5b9a5d1a585b1a5e995960a21b60448201526064016105b4565b436006556032610a1260035490565b610a1c919061164d565b600855306000908152600160205260408120549050610aaf731b02da8cb0d097eb8d57a175b88c7d8b479975066001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aaa919061166f565b610f19565b610ace30731b02da8cb0d097eb8d57a175b88c7d8b4799750683610d7d565b60405163f305d71960e01b81523060048201526024810182905260006044820181905260648201523360848201524260a4820152731b02da8cb0d097eb8d57a175b88c7d8b479975069063f305d71990349060c40160606040518083038185885af1158015610b41573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b66919061168c565b50505050565b6060600580546106f0906115fd565b600033610781818585610e34565b3060009081526001602052604081205490819003610ba5575050565b610bc430731b02da8cb0d097eb8d57a175b88c7d8b4799750683610d7d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610bf957610bf96116ba565b60200260200101906001600160a01b031690816001600160a01b031681525050731b02da8cb0d097eb8d57a175b88c7d8b479975066001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8f919061166f565b81600181518110610ca257610ca26116ba565b6001600160a01b03928316602091820292909201015260095460405163791ac94760e01b8152731b02da8cb0d097eb8d57a175b88c7d8b479975069263791ac94792610cfb9287928992889291169042906004016116d0565b600060405180830381600087803b158015610d1557600080fd5b505af1158015610d29573d6000803e3d6000fd5b50505050505050565b610d3a610d8f565b600019600855565b610d4a610d8f565b6001600160a01b038116610d7457604051631e4fbdf760e01b8152600060048201526024016105b4565b61088281610ec9565b610d8a8383836001611030565b505050565b6000546001600160a01b031633146109645760405163118cdaa760e01b81523360048201526024016105b4565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610b665781811015610e2557604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016105b4565b610b6684848484036000611030565b6001600160a01b038316610e5e57604051634b637e8f60e11b8152600060048201526024016105b4565b6001600160a01b038216610e885760405163ec442f0560e01b8152600060048201526024016105b4565b610d8a838383611105565b6001600160a01b038216610ebd57604051634b637e8f60e11b8152600060048201526024016105b4565b61097b82600083611105565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000731b02da8cb0d097eb8d57a175b88c7d8b479975066001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f91919061166f565b6040516364e329cb60e11b81526001600160a01b03848116600483015230602483015291925060009183169063c9c65396906044016020604051808303816000875af1158015610fe5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611009919061166f565b6001600160a01b03166000908152600760205260409020805460ff19166001179055505050565b6001600160a01b03841661105a5760405163e602df0560e01b8152600060048201526024016105b4565b6001600160a01b03831661108457604051634a1406b160e11b8152600060048201526024016105b4565b6001600160a01b0380851660009081526002602090815260408083209387168352929052208290558015610b6657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110f791815260200190565b60405180910390a350505050565b6001600160a01b03831660009081526007602052604081205460ff168015611133575061113183611275565b155b9050600061114085611275565b15801561116557506001600160a01b03841660009081526007602052604090205460ff165b9050600081611175576000611185565b600954600160b81b900462ffffff165b836111915760006111a1565b600954600160a01b900462ffffff165b6111ab9190611743565b62ffffff16905060006127106111c18387611766565b6111cb919061164d565b905060006111d9828761177d565b905081156111ec576111ec8830846112ac565b83156111fc576111fc6000610b89565b6112078888836112ac565b611210876113d6565b61126b576008546001600160a01b038816600090815260016020526040902054111561126b5760405162461bcd60e51b815260206004820152600a602482015269085b585e15d85b1b195d60b21b60448201526064016105b4565b5050505050505050565b6000306001600160a01b03831614806107875750506001600160a01b0316731b02da8cb0d097eb8d57a175b88c7d8b479975061490565b6001600160a01b0383166112d75780600360008282546112cc9190611790565b909155506113499050565b6001600160a01b0383166000908152600160205260409020548181101561132a5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105b4565b6001600160a01b03841660009081526001602052604090209082900390555b6001600160a01b03821661136557600380548290039055611384565b6001600160a01b03821660009081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113c991815260200190565b60405180910390a3505050565b6000306001600160a01b038316148061140b5750731b02da8cb0d097eb8d57a175b88c7d8b479975066001600160a01b038316145b806107875750506001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b038116811461088257600080fd5b60006020828403121561145757600080fd5b813561146281611430565b9392505050565b60006020808352835180602085015260005b818110156114975785810183015185820160400152820161147b565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156114cb57600080fd5b82356114d681611430565b946020939093013593505050565b803562ffffff811681146114f757600080fd5b919050565b6000806040838503121561150f57600080fd5b611518836114e4565b9150611526602084016114e4565b90509250929050565b60008060006060848603121561154457600080fd5b833561154f81611430565b9250602084013561155f81611430565b929592945050506040919091013590565b60006020828403121561158257600080fd5b5035919050565b6000806040838503121561159c57600080fd5b82356115a781611430565b915060208301356115b781611430565b809150509250929050565b6000602082840312156115d457600080fd5b5051919050565b6000602082840312156115ed57600080fd5b8151801515811461146257600080fd5b600181811c9082168061161157607f821691505b60208210810361163157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261166a57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561168157600080fd5b815161146281611430565b6000806000606084860312156116a157600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b818110156117225784516001600160a01b0316835293830193918301916001016116fd565b50506001600160a01b03969096166060850152505050608001529392505050565b62ffffff81811683821601908082111561175f5761175f611637565b5092915050565b808202811582820484141761078757610787611637565b8181038181111561078757610787611637565b808201808211156107875761078761163756fea264697066735822122066de49f91cc1165619f4649d2587bddda7b1fb938eaef3f1e93846d5df8145c064736f6c634300081700330000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b47997506

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063dbfa0bb51161008a578063f2fde38b11610064578063f2fde38b146104e9578063f887ea4014610509578063f8b45b0514610531578063fe33b3021461054757600080fd5b8063dbfa0bb51461046e578063dc07b6171461048e578063dd62ed3e146104a357600080fd5b80638129fc1c116100c65780638129fc1c146104135780638da5cb5b1461041b57806395d89b4114610439578063a9059cbb1461044e57600080fd5b806370a08231146103a8578063715018a6146103de57806379cc6790146103f357600080fd5b80632b14ca561161015957806342966c681161013357806342966c6814610339578063470624021461035957806348cd4cb11461037c57806366edecce1461039257600080fd5b80632b14ca56146102c25780632d3e474a146102e5578063313ce5671461031d57600080fd5b8063180b0d7e11610195578063180b0d7e1461023957806318160ddd146102635780631e9c62ca1461028257806323b872dd146102a257600080fd5b806301681a62146101bc57806306fdde03146101de578063095ea7b314610209575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611445565b610577565b005b3480156101ea57600080fd5b506101f36106e1565b6040516102009190611469565b60405180910390f35b34801561021557600080fd5b506102296102243660046114b8565b610773565b6040519015158152602001610200565b34801561024557600080fd5b5061024f61271081565b60405162ffffff9091168152602001610200565b34801561026f57600080fd5b506003545b604051908152602001610200565b34801561028e57600080fd5b506101dc61029d3660046114fc565b61078d565b3480156102ae57600080fd5b506102296102bd36600461152f565b610854565b3480156102ce57600080fd5b5060095461024f90600160b81b900462ffffff1681565b3480156102f157600080fd5b50600954610305906001600160a01b031681565b6040516001600160a01b039091168152602001610200565b34801561032957600080fd5b5060405160128152602001610200565b34801561034557600080fd5b506101dc610354366004611570565b610878565b34801561036557600080fd5b5060095461024f90600160a01b900462ffffff1681565b34801561038857600080fd5b5061027460065481565b34801561039e57600080fd5b5061024f610bb881565b3480156103b457600080fd5b506102746103c3366004611445565b6001600160a01b031660009081526001602052604090205490565b3480156103ea57600080fd5b506101dc610885565b3480156103ff57600080fd5b506101dc61040e3660046114b8565b610966565b6101dc61097f565b34801561042757600080fd5b506000546001600160a01b0316610305565b34801561044557600080fd5b506101f3610b6c565b34801561045a57600080fd5b506102296104693660046114b8565b610b7b565b34801561047a57600080fd5b506101dc610489366004611570565b610b89565b34801561049a57600080fd5b506101dc610d32565b3480156104af57600080fd5b506102746104be366004611589565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156104f557600080fd5b506101dc610504366004611445565b610d42565b34801561051557600080fd5b50610305731b02da8cb0d097eb8d57a175b88c7d8b4799750681565b34801561053d57600080fd5b5061027460085481565b34801561055357600080fd5b50610229610562366004611445565b60076020526000908152604090205460ff1681565b306001600160a01b038216036105bd5760405162461bcd60e51b815260206004820152600660248201526502173776565760d41b60448201526064015b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610604573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062891906115c2565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610678573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069c91906115db565b506040518181526001600160a01b0383169033907fed679328aebf74ede77ae09efcf36e90244f83643dadac1c2d9f0b21a46f6ab79060200160405180910390a35050565b6060600480546106f0906115fd565b80601f016020809104026020016040519081016040528092919081815260200182805461071c906115fd565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b600033610781818585610d7d565b60019150505b92915050565b610795610d8f565b610bb862ffffff831611156107d65760405162461bcd60e51b81526020600482015260076024820152662162757946656560c81b60448201526064016105b4565b610bb862ffffff821611156108185760405162461bcd60e51b81526020600482015260086024820152672173656c6c46656560c01b60448201526064016105b4565b6009805465ffffffffffff60a01b1916600160a01b62ffffff9485160262ffffff60b81b191617600160b81b9290931691909102919091179055565b600033610862858285610dbc565b61086d858585610e34565b506001949350505050565b6108823382610e93565b50565b61088d610d8f565b600954600160a01b900462ffffff16156108d35760405162461bcd60e51b81526020600482015260076024820152662162757946656560c81b60448201526064016105b4565b600954600160b81b900462ffffff161561091a5760405162461bcd60e51b81526020600482015260086024820152672173656c6c46656560c01b60448201526064016105b4565b6000196008541461095a5760405162461bcd60e51b815260206004820152600a602482015269085b585e15d85b1b195d60b21b60448201526064016105b4565b6109646000610ec9565b565b610971823383610dbc565b61097b8282610e93565b5050565b610987610d8f565b600034116109c45760405162461bcd60e51b815260206004820152600a602482015269216c697175696469747960b01b60448201526064016105b4565b60065415610a035760405162461bcd60e51b815260206004820152600c60248201526b085a5b9a5d1a585b1a5e995960a21b60448201526064016105b4565b436006556032610a1260035490565b610a1c919061164d565b600855306000908152600160205260408120549050610aaf731b02da8cb0d097eb8d57a175b88c7d8b479975066001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aaa919061166f565b610f19565b610ace30731b02da8cb0d097eb8d57a175b88c7d8b4799750683610d7d565b60405163f305d71960e01b81523060048201526024810182905260006044820181905260648201523360848201524260a4820152731b02da8cb0d097eb8d57a175b88c7d8b479975069063f305d71990349060c40160606040518083038185885af1158015610b41573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b66919061168c565b50505050565b6060600580546106f0906115fd565b600033610781818585610e34565b3060009081526001602052604081205490819003610ba5575050565b610bc430731b02da8cb0d097eb8d57a175b88c7d8b4799750683610d7d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610bf957610bf96116ba565b60200260200101906001600160a01b031690816001600160a01b031681525050731b02da8cb0d097eb8d57a175b88c7d8b479975066001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8f919061166f565b81600181518110610ca257610ca26116ba565b6001600160a01b03928316602091820292909201015260095460405163791ac94760e01b8152731b02da8cb0d097eb8d57a175b88c7d8b479975069263791ac94792610cfb9287928992889291169042906004016116d0565b600060405180830381600087803b158015610d1557600080fd5b505af1158015610d29573d6000803e3d6000fd5b50505050505050565b610d3a610d8f565b600019600855565b610d4a610d8f565b6001600160a01b038116610d7457604051631e4fbdf760e01b8152600060048201526024016105b4565b61088281610ec9565b610d8a8383836001611030565b505050565b6000546001600160a01b031633146109645760405163118cdaa760e01b81523360048201526024016105b4565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610b665781811015610e2557604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016105b4565b610b6684848484036000611030565b6001600160a01b038316610e5e57604051634b637e8f60e11b8152600060048201526024016105b4565b6001600160a01b038216610e885760405163ec442f0560e01b8152600060048201526024016105b4565b610d8a838383611105565b6001600160a01b038216610ebd57604051634b637e8f60e11b8152600060048201526024016105b4565b61097b82600083611105565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000731b02da8cb0d097eb8d57a175b88c7d8b479975066001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f91919061166f565b6040516364e329cb60e11b81526001600160a01b03848116600483015230602483015291925060009183169063c9c65396906044016020604051808303816000875af1158015610fe5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611009919061166f565b6001600160a01b03166000908152600760205260409020805460ff19166001179055505050565b6001600160a01b03841661105a5760405163e602df0560e01b8152600060048201526024016105b4565b6001600160a01b03831661108457604051634a1406b160e11b8152600060048201526024016105b4565b6001600160a01b0380851660009081526002602090815260408083209387168352929052208290558015610b6657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110f791815260200190565b60405180910390a350505050565b6001600160a01b03831660009081526007602052604081205460ff168015611133575061113183611275565b155b9050600061114085611275565b15801561116557506001600160a01b03841660009081526007602052604090205460ff165b9050600081611175576000611185565b600954600160b81b900462ffffff165b836111915760006111a1565b600954600160a01b900462ffffff165b6111ab9190611743565b62ffffff16905060006127106111c18387611766565b6111cb919061164d565b905060006111d9828761177d565b905081156111ec576111ec8830846112ac565b83156111fc576111fc6000610b89565b6112078888836112ac565b611210876113d6565b61126b576008546001600160a01b038816600090815260016020526040902054111561126b5760405162461bcd60e51b815260206004820152600a602482015269085b585e15d85b1b195d60b21b60448201526064016105b4565b5050505050505050565b6000306001600160a01b03831614806107875750506001600160a01b0316731b02da8cb0d097eb8d57a175b88c7d8b479975061490565b6001600160a01b0383166112d75780600360008282546112cc9190611790565b909155506113499050565b6001600160a01b0383166000908152600160205260409020548181101561132a5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105b4565b6001600160a01b03841660009081526001602052604090209082900390555b6001600160a01b03821661136557600380548290039055611384565b6001600160a01b03821660009081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113c991815260200190565b60405180910390a3505050565b6000306001600160a01b038316148061140b5750731b02da8cb0d097eb8d57a175b88c7d8b479975066001600160a01b038316145b806107875750506001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b038116811461088257600080fd5b60006020828403121561145757600080fd5b813561146281611430565b9392505050565b60006020808352835180602085015260005b818110156114975785810183015185820160400152820161147b565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156114cb57600080fd5b82356114d681611430565b946020939093013593505050565b803562ffffff811681146114f757600080fd5b919050565b6000806040838503121561150f57600080fd5b611518836114e4565b9150611526602084016114e4565b90509250929050565b60008060006060848603121561154457600080fd5b833561154f81611430565b9250602084013561155f81611430565b929592945050506040919091013590565b60006020828403121561158257600080fd5b5035919050565b6000806040838503121561159c57600080fd5b82356115a781611430565b915060208301356115b781611430565b809150509250929050565b6000602082840312156115d457600080fd5b5051919050565b6000602082840312156115ed57600080fd5b8151801515811461146257600080fd5b600181811c9082168061161157607f821691505b60208210810361163157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261166a57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561168157600080fd5b815161146281611430565b6000806000606084860312156116a157600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a08201878352602087602085015260a0604085015281875180845260c08601915060208901935060005b818110156117225784516001600160a01b0316835293830193918301916001016116fd565b50506001600160a01b03969096166060850152505050608001529392505050565b62ffffff81811683821601908082111561175f5761175f611637565b5092915050565b808202811582820484141761078757610787611637565b8181038181111561078757610787611637565b808201808211156107875761078761163756fea264697066735822122066de49f91cc1165619f4649d2587bddda7b1fb938eaef3f1e93846d5df8145c064736f6c63430008170033

Deployed Bytecode Sourcemap

42574:95:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37487:298;;;;;;;;;;-1:-1:-1;37487:298:0;;;;;:::i;:::-;;:::i;:::-;;15879:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18172:190;;;;;;;;;;-1:-1:-1;18172:190:0;;;;;:::i;:::-;;:::i;:::-;;;1478:14:1;;1471:22;1453:41;;1441:2;1426:18;18172:190:0;1313:187:1;35498:45:0;;;;;;;;;;;;35538:5;35498:45;;;;;1679:8:1;1667:21;;;1649:40;;1637:2;1622:18;35498:45:0;1505:190:1;16981:99:0;;;;;;;;;;-1:-1:-1;17060:12:0;;16981:99;;;1846:25:1;;;1834:2;1819:18;16981:99:0;1700:177:1;39340:240:0;;;;;;;;;;-1:-1:-1;39340:240:0;;;;;:::i;:::-;;:::i;18940:249::-;;;;;;;;;;-1:-1:-1;18940:249:0;;;;;:::i;:::-;;:::i;35586:28::-;;;;;;;;;;-1:-1:-1;35586:28:0;;;;-1:-1:-1;;;35586:28:0;;;;;;35418:24;;;;;;;;;;-1:-1:-1;35418:24:0;;;;-1:-1:-1;;;;;35418:24:0;;;;;;-1:-1:-1;;;;;2950:32:1;;;2932:51;;2920:2;2905:18;35418:24:0;2786:203:1;16832:84:0;;;;;;;;;;-1:-1:-1;16832:84:0;;16906:2;3136:36:1;;3124:2;3109:18;16832:84:0;2994:184:1;25768:89:0;;;;;;;;;;-1:-1:-1;25768:89:0;;;;;:::i;:::-;;:::i;35552:27::-;;;;;;;;;;-1:-1:-1;35552:27:0;;;;-1:-1:-1;;;35552:27:0;;;;;;35071:25;;;;;;;;;;;;;;;;35451:40;;;;;;;;;;;;35487:4;35451:40;;17143:118;;;;;;;;;;-1:-1:-1;17143:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;17235:18:0;17208:7;17235:18;;;:9;:18;;;;;;;17143:118;39662:254;;;;;;;;;;;;;:::i;26186:161::-;;;;;;;;;;-1:-1:-1;26186:161:0;;;;;:::i;:::-;;:::i;38262:865::-;;;:::i;2476:87::-;;;;;;;;;;-1:-1:-1;2522:7:0;2549:6;-1:-1:-1;;;;;2549:6:0;2476:87;;16089:95;;;;;;;;;;;;;:::i;17466:182::-;;;;;;;;;;-1:-1:-1;17466:182:0;;;;;:::i;:::-;;:::i;36751:646::-;;;;;;;;;;-1:-1:-1;36751:646:0;;;;;:::i;:::-;;:::i;39198:94::-;;;;;;;;;;;;;:::i;17711:142::-;;;;;;;;;;-1:-1:-1;17711:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;17818:18:0;;;17791:7;17818:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17711:142;3409:220;;;;;;;;;;-1:-1:-1;3409:220:0;;;;;:::i;:::-;;:::i;34738:106::-;;;;;;;;;;;;34801:42;34738:106;;35151:44;;;;;;;;;;;;;;;;35105:37;;;;;;;;;;-1:-1:-1;35105:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37487:298;37580:4;-1:-1:-1;;;;;37549:36:0;;;37541:55;;;;-1:-1:-1;;;37541:55:0;;4474:2:1;37541:55:0;;;4456:21:1;4513:1;4493:18;;;4486:29;-1:-1:-1;;;4531:18:1;;;4524:36;4577:18;;37541:55:0;;;;;;;;;37626:35;;-1:-1:-1;;;37626:35:0;;37655:4;37626:35;;;2932:51:1;37609:14:0;;-1:-1:-1;;;;;37626:20:0;;;;;2905:18:1;;37626:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37674:39;;-1:-1:-1;;;37674:39:0;;37694:10;37674:39;;;4969:51:1;5036:18;;;5029:34;;;37609:52:0;;-1:-1:-1;;;;;;37674:19:0;;;;;4942:18:1;;37674:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;37731:46:0;;1846:25:1;;;-1:-1:-1;;;;;37731:46:0;;;37737:10;;37731:46;;1834:2:1;1819:18;37731:46:0;;;;;;;37530:255;37487:298;:::o;15879:91::-;15924:13;15957:5;15950:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15879:91;:::o;18172:190::-;18245:4;831:10;18301:31;831:10;18317:7;18326:5;18301:8;:31::i;:::-;18350:4;18343:11;;;18172:190;;;;;:::o;39340:240::-;2362:13;:11;:13::i;:::-;35487:4:::1;39427:21;::::0;::::1;;;39419:41;;;::::0;-1:-1:-1;;;39419:41:0;;5943:2:1;39419:41:0::1;::::0;::::1;5925:21:1::0;5982:1;5962:18;;;5955:29;-1:-1:-1;;;6000:18:1;;;5993:37;6047:18;;39419:41:0::1;5741:330:1::0;39419:41:0::1;35487:4;39479:22;::::0;::::1;;;39471:43;;;::::0;-1:-1:-1;;;39471:43:0;;6278:2:1;39471:43:0::1;::::0;::::1;6260:21:1::0;6317:1;6297:18;;;6290:29;-1:-1:-1;;;6335:18:1;;;6328:38;6383:18;;39471:43:0::1;6076:331:1::0;39471:43:0::1;39527:6;:16:::0;;-1:-1:-1;;;;39554:18:0;-1:-1:-1;;;39527:16:0::1;::::0;;::::1;;-1:-1:-1::0;;;;39554:18:0;;-1:-1:-1;;;39554:18:0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;39340:240::o;18940:249::-;19027:4;831:10;19085:37;19101:4;831:10;19116:5;19085:15;:37::i;:::-;19133:26;19143:4;19149:2;19153:5;19133:9;:26::i;:::-;-1:-1:-1;19177:4:0;;18940:249;-1:-1:-1;;;;18940:249:0:o;25768:89::-;25823:26;831:10;25843:5;25823;:26::i;:::-;25768:89;:::o;39662:254::-;2362:13;:11;:13::i;:::-;39736:6:::1;::::0;-1:-1:-1;;;39736:6:0;::::1;;;:11:::0;39728:31:::1;;;::::0;-1:-1:-1;;;39728:31:0;;5943:2:1;39728:31:0::1;::::0;::::1;5925:21:1::0;5982:1;5962:18;;;5955:29;-1:-1:-1;;;6000:18:1;;;5993:37;6047:18;;39728:31:0::1;5741:330:1::0;39728:31:0::1;39778:7;::::0;-1:-1:-1;;;39778:7:0;::::1;;;:12:::0;39770:33:::1;;;::::0;-1:-1:-1;;;39770:33:0;;6278:2:1;39770:33:0::1;::::0;::::1;6260:21:1::0;6317:1;6297:18;;;6290:29;-1:-1:-1;;;6335:18:1;;;6328:38;6383:18;;39770:33:0::1;6076:331:1::0;39770:33:0::1;-1:-1:-1::0;;39822:9:0::1;;:30;39814:53;;;::::0;-1:-1:-1;;;39814:53:0;;6614:2:1;39814:53:0::1;::::0;::::1;6596:21:1::0;6653:2;6633:18;;;6626:30;-1:-1:-1;;;6672:18:1;;;6665:40;6722:18;;39814:53:0::1;6412:334:1::0;39814:53:0::1;39878:30;39905:1;39878:18;:30::i;:::-;39662:254::o:0;26186:161::-;26262:45;26278:7;831:10;26301:5;26262:15;:45::i;:::-;26318:21;26324:7;26333:5;26318;:21::i;:::-;26186:161;;:::o;38262:865::-;2362:13;:11;:13::i;:::-;38342:1:::1;38330:9;:13;38322:36;;;::::0;-1:-1:-1;;;38322:36:0;;6953:2:1;38322:36:0::1;::::0;::::1;6935:21:1::0;6992:2;6972:18;;;6965:30;-1:-1:-1;;;7011:18:1;;;7004:40;7061:18;;38322:36:0::1;6751:334:1::0;38322:36:0::1;38377:10;::::0;:15;38369:40:::1;;;::::0;-1:-1:-1;;;38369:40:0;;7292:2:1;38369:40:0::1;::::0;::::1;7274:21:1::0;7331:2;7311:18;;;7304:30;-1:-1:-1;;;7350:18:1;;;7343:42;7402:18;;38369:40:0::1;7090:336:1::0;38369:40:0::1;38493:12;38480:10;:25:::0;38581:2:::1;38565:13;17060:12:::0;;;16981:99;38565:13:::1;:18;;;;:::i;:::-;38553:9;:30:::0;38683:4:::1;38647:15;17235:18:::0;;;:9;:18;;;;;;38647:42:::1;;38816:32;34801:42;-1:-1:-1::0;;;;;38834:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38816:17;:32::i;:::-;38910:49;38927:4;34801:42;38951:7;38910:8;:49::i;:::-;39020:99;::::0;-1:-1:-1;;;39020:99:0;;39069:4:::1;39020:99;::::0;::::1;8390:34:1::0;8440:18;;;8433:34;;;39085:1:0::1;8483:18:1::0;;;8476:34;;;8526:18;;;8519:34;39091:10:0::1;8569:19:1::0;;;8562:44;39103:15:0::1;8622:19:1::0;;;8615:35;34801:42:0::1;::::0;39020:22:::1;::::0;39050:9:::1;::::0;8324:19:1;;39020:99:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;38311:816;38262:865::o:0;16089:95::-;16136:13;16169:7;16162:14;;;;;:::i;17466:182::-;17535:4;831:10;17591:27;831:10;17608:2;17612:5;17591:9;:27::i;36751:646::-;36894:4;36857:16;17235:18;;;:9;:18;;;;;;;36917:13;;;36913:26;;36932:7;36751:646;:::o;36913:26::-;36995:50;37012:4;34801:42;37036:8;36995;:50::i;:::-;37153:16;;;37167:1;37153:16;;;;;;;;37129:21;;37153:16;;;;;;;;;;-1:-1:-1;37153:16:0;37129:40;;37198:4;37180;37185:1;37180:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;37180:23:0;;;-1:-1:-1;;;;;37180:23:0;;;;;34801:42;-1:-1:-1;;;;;37224:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37214:4;37219:1;37214:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37214:23:0;;;:7;;;;;;;;;:23;37352:9;;37250:139;;-1:-1:-1;;;37250:139:0;;34801:42;;37250:57;;:139;;37322:8;;37332:12;;37346:4;;37352:9;;;37363:15;;37250:139;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36806:591;;36751:646;:::o;39198:94::-;2362:13;:11;:13::i;:::-;-1:-1:-1;;39255:9:0::1;:29:::0;39198:94::o;3409:220::-;2362:13;:11;:13::i;:::-;-1:-1:-1;;;;;3494:22:0;::::1;3490:93;;3540:31;::::0;-1:-1:-1;;;3540:31:0;;3568:1:::1;3540:31;::::0;::::1;2932:51:1::0;2905:18;;3540:31:0::1;2786:203:1::0;3490:93:0::1;3593:28;3612:8;3593:18;:28::i;22999:130::-:0;23084:37;23093:5;23100:7;23109:5;23116:4;23084:8;:37::i;:::-;22999:130;;;:::o;2641:166::-;2522:7;2549:6;-1:-1:-1;;;;;2549:6:0;831:10;2701:23;2697:103;;2748:40;;-1:-1:-1;;;2748:40:0;;831:10;2748:40;;;2932:51:1;2905:18;;2748:40:0;2786:203:1;24715:487:0;-1:-1:-1;;;;;17818:18:0;;;24815:24;17818:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;24882:37:0;;24878:317;;24959:5;24940:16;:24;24936:132;;;24992:60;;-1:-1:-1;;;24992:60:0;;-1:-1:-1;;;;;10433:32:1;;24992:60:0;;;10415:51:1;10482:18;;;10475:34;;;10525:18;;;10518:34;;;10388:18;;24992:60:0;10213:345:1;24936:132:0;25111:57;25120:5;25127:7;25155:5;25136:16;:24;25162:5;25111:8;:57::i;19574:308::-;-1:-1:-1;;;;;19658:18:0;;19654:88;;19700:30;;-1:-1:-1;;;19700:30:0;;19727:1;19700:30;;;2932:51:1;2905:18;;19700:30:0;2786:203:1;19654:88:0;-1:-1:-1;;;;;19756:16:0;;19752:88;;19796:32;;-1:-1:-1;;;19796:32:0;;19825:1;19796:32;;;2932:51:1;2905:18;;19796:32:0;2786:203:1;19752:88:0;19850:24;19858:4;19864:2;19868:5;19850:7;:24::i;22235:211::-;-1:-1:-1;;;;;22306:21:0;;22302:91;;22351:30;;-1:-1:-1;;;22351:30:0;;22378:1;22351:30;;;2932:51:1;2905:18;;22351:30:0;2786:203:1;22302:91:0;22403:35;22411:7;22428:1;22432:5;22403:7;:35::i;3789:191::-;3863:16;3882:6;;-1:-1:-1;;;;;3899:17:0;;;-1:-1:-1;;;;;;3899:17:0;;;;;;3932:40;;3882:6;;;;;;;3932:40;;3863:16;3932:40;3852:128;3789:191;:::o;40198:231::-;40259:25;34801:42;-1:-1:-1;;;;;40305:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40350:40;;-1:-1:-1;;;40350:40:0;;-1:-1:-1;;;;;10793:15:1;;;40350:40:0;;;10775:34:1;40384:4:0;10825:18:1;;;10818:43;40259:63:0;;-1:-1:-1;40335:12:0;;40350:18;;;;;10710::1;;40350:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40403:11:0;;;;;:5;:11;;;;;:18;;-1:-1:-1;;40403:18:0;40417:4;40403:18;;;-1:-1:-1;;;40198:231:0:o;23980:443::-;-1:-1:-1;;;;;24093:19:0;;24089:91;;24136:32;;-1:-1:-1;;;24136:32:0;;24165:1;24136:32;;;2932:51:1;2905:18;;24136:32:0;2786:203:1;24089:91:0;-1:-1:-1;;;;;24194:21:0;;24190:92;;24239:31;;-1:-1:-1;;;24239:31:0;;24267:1;24239:31;;;2932:51:1;2905:18;;24239:31:0;2786:203:1;24190:92:0;-1:-1:-1;;;;;24292:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;24338:78;;;;24389:7;-1:-1:-1;;;;;24373:31:0;24382:5;-1:-1:-1;;;;;24373:31:0;;24398:5;24373:31;;;;1846:25:1;;1834:2;1819:18;;1700:177;24373:31:0;;;;;;;;23980:443;;;;:::o;41336:1120::-;-1:-1:-1;;;;;41487:11:0;;41469:15;41487:11;;;:5;:11;;;;;;;;:40;;;;;41503:24;41524:2;41503:20;:24::i;:::-;41502:25;41487:40;41469:58;;41538:16;41558:26;41579:4;41558:20;:26::i;:::-;41557:27;:40;;;;-1:-1:-1;;;;;;41588:9:0;;;;;;:5;:9;;;;;;;;41557:40;41538:59;;41659:11;41702;:25;;41726:1;41702:25;;;41716:7;;-1:-1:-1;;;41716:7:0;;;;41702:25;41674:10;:23;;41696:1;41674:23;;;41687:6;;-1:-1:-1;;;41687:6:0;;;;41674:23;41673:55;;;;:::i;:::-;41659:69;;;-1:-1:-1;41741:17:0;35538:5;41762:12;41659:69;41762:6;:12;:::i;:::-;41761:31;;;;:::i;:::-;41741:51;-1:-1:-1;41805:28:0;41836:18;41741:51;41836:6;:18;:::i;:::-;41805:49;-1:-1:-1;41918:13:0;;41914:91;;41948:45;41962:4;41976;41983:9;41948:13;:45::i;:::-;42073:11;42069:63;;;42101:19;42118:1;42101:16;:19::i;:::-;42205:45;42219:4;42225:2;42229:20;42205:13;:45::i;:::-;42343:28;42368:2;42343:24;:28::i;:::-;42338:111;;42413:9;;-1:-1:-1;;;;;17235:18:0;;17208:7;17235:18;;;:9;:18;;;;;;42396:26;;42388:49;;;;-1:-1:-1;;;42388:49:0;;6614:2:1;42388:49:0;;;6596:21:1;6653:2;6633:18;;;6626:30;-1:-1:-1;;;6672:18:1;;;6665:40;6722:18;;42388:49:0;6412:334:1;42388:49:0;41413:1043;;;;;41336:1120;;;:::o;40772:146::-;40838:4;40870;-1:-1:-1;;;;;40862:21:0;;;;:48;;-1:-1:-1;;;;;;;40887:23:0;34801:42;40887:23;;40772:146::o;20206:1135::-;-1:-1:-1;;;;;20296:18:0;;20292:552;;20450:5;20434:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;20292:552:0;;-1:-1:-1;20292:552:0;;-1:-1:-1;;;;;20510:15:0;;20488:19;20510:15;;;:9;:15;;;;;;20544:19;;;20540:117;;;20591:50;;-1:-1:-1;;;20591:50:0;;-1:-1:-1;;;;;10433:32:1;;20591:50:0;;;10415:51:1;10482:18;;;10475:34;;;10525:18;;;10518:34;;;10388:18;;20591:50:0;10213:345:1;20540:117:0;-1:-1:-1;;;;;20780:15:0;;;;;;:9;:15;;;;;20798:19;;;;20780:37;;20292:552;-1:-1:-1;;;;;20860:16:0;;20856:435;;21026:12;:21;;;;;;;20856:435;;;-1:-1:-1;;;;;21242:13:0;;;;;;:9;:13;;;;;:22;;;;;;20856:435;21323:2;-1:-1:-1;;;;;21308:25:0;21317:4;-1:-1:-1;;;;;21308:25:0;;21327:5;21308:25;;;;1846::1;;1834:2;1819:18;;1700:177;21308:25:0;;;;;;;;20206:1135;;;:::o;40524:165::-;40594:4;40626;-1:-1:-1;;;;;40618:21:0;;;;:48;;-1:-1:-1;34801:42:0;-1:-1:-1;;;;;40643:23:0;;;40618:48;:63;;;-1:-1:-1;;;;;;;40670:11:0;;;;;:5;:11;;;;;;;;;40524:165::o;14:139:1:-;-1:-1:-1;;;;;97:31:1;;87:42;;77:70;;143:1;140;133:12;158:269;231:6;284:2;272:9;263:7;259:23;255:32;252:52;;;300:1;297;290:12;252:52;339:9;326:23;358:39;391:5;358:39;:::i;:::-;416:5;158:269;-1:-1:-1;;;158:269:1:o;432:548::-;544:4;573:2;602;591:9;584:21;634:6;628:13;677:6;672:2;661:9;657:18;650:34;702:1;712:140;726:6;723:1;720:13;712:140;;;821:14;;;817:23;;811:30;787:17;;;806:2;783:26;776:66;741:10;;712:140;;;716:3;901:1;896:2;887:6;876:9;872:22;868:31;861:42;971:2;964;960:7;955:2;947:6;943:15;939:29;928:9;924:45;920:54;912:62;;;;432:548;;;;:::o;985:323::-;1053:6;1061;1114:2;1102:9;1093:7;1089:23;1085:32;1082:52;;;1130:1;1127;1120:12;1082:52;1169:9;1156:23;1188:39;1221:5;1188:39;:::i;:::-;1246:5;1298:2;1283:18;;;;1270:32;;-1:-1:-1;;;985:323:1:o;1882:161::-;1949:20;;2009:8;1998:20;;1988:31;;1978:59;;2033:1;2030;2023:12;1978:59;1882:161;;;:::o;2048:256::-;2114:6;2122;2175:2;2163:9;2154:7;2150:23;2146:32;2143:52;;;2191:1;2188;2181:12;2143:52;2214:28;2232:9;2214:28;:::i;:::-;2204:38;;2261:37;2294:2;2283:9;2279:18;2261:37;:::i;:::-;2251:47;;2048:256;;;;;:::o;2309:472::-;2386:6;2394;2402;2455:2;2443:9;2434:7;2430:23;2426:32;2423:52;;;2471:1;2468;2461:12;2423:52;2510:9;2497:23;2529:39;2562:5;2529:39;:::i;:::-;2587:5;-1:-1:-1;2644:2:1;2629:18;;2616:32;2657:41;2616:32;2657:41;:::i;:::-;2309:472;;2717:7;;-1:-1:-1;;;2771:2:1;2756:18;;;;2743:32;;2309:472::o;3183:180::-;3242:6;3295:2;3283:9;3274:7;3270:23;3266:32;3263:52;;;3311:1;3308;3301:12;3263:52;-1:-1:-1;3334:23:1;;3183:180;-1:-1:-1;3183:180:1:o;3628:404::-;3696:6;3704;3757:2;3745:9;3736:7;3732:23;3728:32;3725:52;;;3773:1;3770;3763:12;3725:52;3812:9;3799:23;3831:39;3864:5;3831:39;:::i;:::-;3889:5;-1:-1:-1;3946:2:1;3931:18;;3918:32;3959:41;3918:32;3959:41;:::i;:::-;4019:7;4009:17;;;3628:404;;;;;:::o;4606:184::-;4676:6;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;-1:-1:-1;4768:16:1;;4606:184;-1:-1:-1;4606:184:1:o;5074:277::-;5141:6;5194:2;5182:9;5173:7;5169:23;5165:32;5162:52;;;5210:1;5207;5200:12;5162:52;5242:9;5236:16;5295:5;5288:13;5281:21;5274:5;5271:32;5261:60;;5317:1;5314;5307:12;5356:380;5435:1;5431:12;;;;5478;;;5499:61;;5553:4;5545:6;5541:17;5531:27;;5499:61;5606:2;5598:6;5595:14;5575:18;5572:38;5569:161;;5652:10;5647:3;5643:20;5640:1;5633:31;5687:4;5684:1;5677:15;5715:4;5712:1;5705:15;5569:161;;5356:380;;;:::o;7431:127::-;7492:10;7487:3;7483:20;7480:1;7473:31;7523:4;7520:1;7513:15;7547:4;7544:1;7537:15;7563:217;7603:1;7629;7619:132;;7673:10;7668:3;7664:20;7661:1;7654:31;7708:4;7705:1;7698:15;7736:4;7733:1;7726:15;7619:132;-1:-1:-1;7765:9:1;;7563:217::o;7785:259::-;7855:6;7908:2;7896:9;7887:7;7883:23;7879:32;7876:52;;;7924:1;7921;7914:12;7876:52;7956:9;7950:16;7975:39;8008:5;7975:39;:::i;8661:306::-;8749:6;8757;8765;8818:2;8806:9;8797:7;8793:23;8789:32;8786:52;;;8834:1;8831;8824:12;8786:52;8863:9;8857:16;8847:26;;8913:2;8902:9;8898:18;8892:25;8882:35;;8957:2;8946:9;8942:18;8936:25;8926:35;;8661:306;;;;;:::o;9104:127::-;9165:10;9160:3;9156:20;9153:1;9146:31;9196:4;9193:1;9186:15;9220:4;9217:1;9210:15;9236:972;9490:4;9538:3;9527:9;9523:19;9569:6;9558:9;9551:25;9595:2;9633:6;9628:2;9617:9;9613:18;9606:34;9676:3;9671:2;9660:9;9656:18;9649:31;9700:6;9735;9729:13;9766:6;9758;9751:22;9804:3;9793:9;9789:19;9782:26;;9843:2;9835:6;9831:15;9817:29;;9864:1;9874:195;9888:6;9885:1;9882:13;9874:195;;;9953:13;;-1:-1:-1;;;;;9949:39:1;9937:52;;10044:15;;;;10009:12;;;;9985:1;9903:9;9874:195;;;-1:-1:-1;;;;;;;10125:32:1;;;;10120:2;10105:18;;10098:60;-1:-1:-1;;;10189:3:1;10174:19;10167:35;10086:3;9236:972;-1:-1:-1;;;9236:972:1:o;10872:170::-;10939:8;10967:10;;;10979;;;10963:27;;11002:11;;;10999:37;;;11016:18;;:::i;:::-;10999:37;10872:170;;;;:::o;11047:168::-;11120:9;;;11151;;11168:15;;;11162:22;;11148:37;11138:71;;11189:18;;:::i;11220:128::-;11287:9;;;11308:11;;;11305:37;;;11322:18;;:::i;11353:125::-;11418:9;;;11439:10;;;11436:36;;;11452:18;;:::i

Swarm Source

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