ETH Price: $2,286.91 (-3.62%)

Token

Wall Street Burns (WSBS)
 

Overview

Max Total Supply

12,800,000 WSBS

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 WSBS

Value
$0.00
0x23e794a90b1762015a54ae3ef114dc887d28f485
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
WallStreetBurns

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-02
*/

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

// WALL STREET BURNS (WSBS)
// https://wallstreetburns.com

// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// OpenZeppelin Contracts (last updated v4.6.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, uint 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, uint value);

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

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

    /**
     * @dev Moves `amount` 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, uint amount) external returns (bool);

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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

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

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

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

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

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

    uint private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint`, 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, uint amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

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

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

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

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint amount
    ) internal virtual {
        uint currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract WallStreetBurns is ERC20 {
    using SafeMath for uint;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public constant weth = address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
    // MAINNET: 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
    // GOERLI: 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6

    constructor() ERC20('Wall Street Burns', 'WSBS') 
    {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;

        address pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), weth);
            
        uniswapV2Pair = pair;

        // initial supply is only minted at deployment
        uint supply = 12_800_000 * 10 ** 18;
        _mint(msg.sender, supply);
    }

    /** ERC20 FUNCTIONS */

    function transferFrom(
        address sender, 
        address recipient, 
        uint256 amount
    ) 
        public 
        override (ERC20) 
        returns (bool) 
    {
        if (recipient == uniswapV2Pair
            || recipient == address(uniswapV2Router)) {
            uint fee = amount * 2 / 100;
            amount = amount - fee;
            super.transferFrom(sender, deadAddress, fee);
        }
        
        return super.transferFrom(sender, recipient, amount);
    }

    function transfer(
        address recipient, 
        uint256 amount
    ) 
        public 
        override (ERC20) 
        returns (bool) 
    {
        if (recipient == uniswapV2Pair
            || recipient == address(uniswapV2Router)) {
            uint fee = amount * 2 / 100;
            amount = amount - fee;
            super.transfer(deadAddress, fee);
        }

        return super.transfer(recipient, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c06040523480156200001157600080fd5b506040518060400160405280601181526020017f57616c6c20537472656574204275726e730000000000000000000000000000008152506040518060400160405280600481526020017f575342530000000000000000000000000000000000000000000000000000000081525081600390816200008f91906200064d565b508060049081620000a191906200064d565b5050506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200013f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016591906200079e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b8152600401620001b5929190620007e1565b6020604051808303816000875af1158015620001d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fb91906200079e565b90508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060006a0a968163f0a57b4000000090506200025333826200025c60201b60201c565b50505062000929565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c5906200086f565b60405180910390fd5b620002e260008383620003c960201b60201c565b8060026000828254620002f69190620008c0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003a991906200090c565b60405180910390a3620003c560008383620003ce60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045557607f821691505b6020821081036200046b576200046a6200040d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000496565b620004e1868362000496565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200052e620005286200052284620004f9565b62000503565b620004f9565b9050919050565b6000819050919050565b6200054a836200050d565b62000562620005598262000535565b848454620004a3565b825550505050565b600090565b620005796200056a565b620005868184846200053f565b505050565b5b81811015620005ae57620005a26000826200056f565b6001810190506200058c565b5050565b601f821115620005fd57620005c78162000471565b620005d28462000486565b81016020851015620005e2578190505b620005fa620005f18562000486565b8301826200058b565b50505b505050565b600082821c905092915050565b6000620006226000198460080262000602565b1980831691505092915050565b60006200063d83836200060f565b9150826002028217905092915050565b6200065882620003d3565b67ffffffffffffffff811115620006745762000673620003de565b5b6200068082546200043c565b6200068d828285620005b2565b600060209050601f831160018114620006c55760008415620006b0578287015190505b620006bc85826200062f565b8655506200072c565b601f198416620006d58662000471565b60005b82811015620006ff57848901518255600182019150602085019450602081019050620006d8565b868310156200071f57848901516200071b601f8916826200060f565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007668262000739565b9050919050565b620007788162000759565b81146200078457600080fd5b50565b60008151905062000798816200076d565b92915050565b600060208284031215620007b757620007b662000734565b5b6000620007c78482850162000787565b91505092915050565b620007db8162000759565b82525050565b6000604082019050620007f86000830185620007d0565b620008076020830184620007d0565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000857601f836200080e565b915062000864826200081f565b602082019050919050565b600060208201905081810360008301526200088a8162000848565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008cd82620004f9565b9150620008da83620004f9565b9250828201905080821115620008f557620008f462000891565b5b92915050565b6200090681620004f9565b82525050565b6000602082019050620009236000830184620008fb565b92915050565b60805160a0516116c66200096b600039600081816104210152818161057801526106ef0152600081816103f101528181610476015261074401526116c66000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063395093511161009757806395d89b411161006657806395d89b411461028c578063a457c2d7146102aa578063a9059cbb146102da578063dd62ed3e1461030a576100f5565b806339509351146101f05780633fc8cef31461022057806349bd5a5e1461023e57806370a082311461025c576100f5565b806318160ddd116100d357806318160ddd1461016657806323b872dd1461018457806327c8f835146101b4578063313ce567146101d2576100f5565b806306fdde03146100fa578063095ea7b3146101185780631694505e14610148575b600080fd5b61010261033a565b60405161010f9190610e29565b60405180910390f35b610132600480360381019061012d9190610ee4565b6103cc565b60405161013f9190610f3f565b60405180910390f35b6101506103ef565b60405161015d9190610fb9565b60405180910390f35b61016e610413565b60405161017b9190610fe3565b60405180910390f35b61019e60048036038101906101999190610ffe565b61041d565b6040516101ab9190610f3f565b60405180910390f35b6101bc610518565b6040516101c99190611060565b60405180910390f35b6101da61051e565b6040516101e79190611097565b60405180910390f35b61020a60048036038101906102059190610ee4565b610527565b6040516102179190610f3f565b60405180910390f35b61022861055e565b6040516102359190611060565b60405180910390f35b610246610576565b6040516102539190611060565b60405180910390f35b610276600480360381019061027191906110b2565b61059a565b6040516102839190610fe3565b60405180910390f35b6102946105e2565b6040516102a19190610e29565b60405180910390f35b6102c460048036038101906102bf9190610ee4565b610674565b6040516102d19190610f3f565b60405180910390f35b6102f460048036038101906102ef9190610ee4565b6106eb565b6040516103019190610f3f565b60405180910390f35b610324600480360381019061031f91906110df565b6107e3565b6040516103319190610fe3565b60405180910390f35b6060600380546103499061114e565b80601f01602080910402602001604051908101604052809291908181526020018280546103759061114e565b80156103c25780601f10610397576101008083540402835291602001916103c2565b820191906000526020600020905b8154815290600101906020018083116103a557829003601f168201915b5050505050905090565b6000806103d761086a565b90506103e4818585610872565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806104c457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561050457600060646002846104da91906111ae565b6104e4919061121f565b905080836104f29190611250565b92506105018561dead83610a3b565b50505b61050f848484610a3b565b90509392505050565b61dead81565b60006012905090565b60008061053261086a565b905061055381858561054485896107e3565b61054e9190611284565b610872565b600191505092915050565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105f19061114e565b80601f016020809104026020016040519081016040528092919081815260200182805461061d9061114e565b801561066a5780601f1061063f5761010080835404028352916020019161066a565b820191906000526020600020905b81548152906001019060200180831161064d57829003601f168201915b5050505050905090565b60008061067f61086a565b9050600061068d82866107e3565b9050838110156106d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c99061132a565b60405180910390fd5b6106df8286868403610872565b60019250505092915050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061079257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156107d157600060646002846107a891906111ae565b6107b2919061121f565b905080836107c09190611250565b92506107ce61dead82610a6a565b50505b6107db8383610a6a565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d8906113bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109479061144e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a2e9190610fe3565b60405180910390a3505050565b600080610a4661086a565b9050610a53858285610a8d565b610a5e858585610b19565b60019150509392505050565b600080610a7561086a565b9050610a82818585610b19565b600191505092915050565b6000610a9984846107e3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b135781811015610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc906114ba565b60405180910390fd5b610b128484848403610872565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f9061154c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee906115de565b60405180910390fd5b610c02838383610d8f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90611670565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d769190610fe3565b60405180910390a3610d89848484610d94565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610dd3578082015181840152602081019050610db8565b60008484015250505050565b6000601f19601f8301169050919050565b6000610dfb82610d99565b610e058185610da4565b9350610e15818560208601610db5565b610e1e81610ddf565b840191505092915050565b60006020820190508181036000830152610e438184610df0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e7b82610e50565b9050919050565b610e8b81610e70565b8114610e9657600080fd5b50565b600081359050610ea881610e82565b92915050565b6000819050919050565b610ec181610eae565b8114610ecc57600080fd5b50565b600081359050610ede81610eb8565b92915050565b60008060408385031215610efb57610efa610e4b565b5b6000610f0985828601610e99565b9250506020610f1a85828601610ecf565b9150509250929050565b60008115159050919050565b610f3981610f24565b82525050565b6000602082019050610f546000830184610f30565b92915050565b6000819050919050565b6000610f7f610f7a610f7584610e50565b610f5a565b610e50565b9050919050565b6000610f9182610f64565b9050919050565b6000610fa382610f86565b9050919050565b610fb381610f98565b82525050565b6000602082019050610fce6000830184610faa565b92915050565b610fdd81610eae565b82525050565b6000602082019050610ff86000830184610fd4565b92915050565b60008060006060848603121561101757611016610e4b565b5b600061102586828701610e99565b935050602061103686828701610e99565b925050604061104786828701610ecf565b9150509250925092565b61105a81610e70565b82525050565b60006020820190506110756000830184611051565b92915050565b600060ff82169050919050565b6110918161107b565b82525050565b60006020820190506110ac6000830184611088565b92915050565b6000602082840312156110c8576110c7610e4b565b5b60006110d684828501610e99565b91505092915050565b600080604083850312156110f6576110f5610e4b565b5b600061110485828601610e99565b925050602061111585828601610e99565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061116657607f821691505b6020821081036111795761117861111f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111b982610eae565b91506111c483610eae565b92508282026111d281610eae565b915082820484148315176111e9576111e861117f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061122a82610eae565b915061123583610eae565b925082611245576112446111f0565b5b828204905092915050565b600061125b82610eae565b915061126683610eae565b925082820390508181111561127e5761127d61117f565b5b92915050565b600061128f82610eae565b915061129a83610eae565b92508282019050808211156112b2576112b161117f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611314602583610da4565b915061131f826112b8565b604082019050919050565b6000602082019050818103600083015261134381611307565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006113a6602483610da4565b91506113b18261134a565b604082019050919050565b600060208201905081810360008301526113d581611399565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611438602283610da4565b9150611443826113dc565b604082019050919050565b600060208201905081810360008301526114678161142b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114a4601d83610da4565b91506114af8261146e565b602082019050919050565b600060208201905081810360008301526114d381611497565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611536602583610da4565b9150611541826114da565b604082019050919050565b6000602082019050818103600083015261156581611529565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115c8602383610da4565b91506115d38261156c565b604082019050919050565b600060208201905081810360008301526115f7816115bb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061165a602683610da4565b9150611665826115fe565b604082019050919050565b600060208201905081810360008301526116898161164d565b905091905056fea26469706673582212206a5841a303e04cf8340560d2d91c90f34dea570b7cf78bd4ddc6d1a00330cd3464736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063395093511161009757806395d89b411161006657806395d89b411461028c578063a457c2d7146102aa578063a9059cbb146102da578063dd62ed3e1461030a576100f5565b806339509351146101f05780633fc8cef31461022057806349bd5a5e1461023e57806370a082311461025c576100f5565b806318160ddd116100d357806318160ddd1461016657806323b872dd1461018457806327c8f835146101b4578063313ce567146101d2576100f5565b806306fdde03146100fa578063095ea7b3146101185780631694505e14610148575b600080fd5b61010261033a565b60405161010f9190610e29565b60405180910390f35b610132600480360381019061012d9190610ee4565b6103cc565b60405161013f9190610f3f565b60405180910390f35b6101506103ef565b60405161015d9190610fb9565b60405180910390f35b61016e610413565b60405161017b9190610fe3565b60405180910390f35b61019e60048036038101906101999190610ffe565b61041d565b6040516101ab9190610f3f565b60405180910390f35b6101bc610518565b6040516101c99190611060565b60405180910390f35b6101da61051e565b6040516101e79190611097565b60405180910390f35b61020a60048036038101906102059190610ee4565b610527565b6040516102179190610f3f565b60405180910390f35b61022861055e565b6040516102359190611060565b60405180910390f35b610246610576565b6040516102539190611060565b60405180910390f35b610276600480360381019061027191906110b2565b61059a565b6040516102839190610fe3565b60405180910390f35b6102946105e2565b6040516102a19190610e29565b60405180910390f35b6102c460048036038101906102bf9190610ee4565b610674565b6040516102d19190610f3f565b60405180910390f35b6102f460048036038101906102ef9190610ee4565b6106eb565b6040516103019190610f3f565b60405180910390f35b610324600480360381019061031f91906110df565b6107e3565b6040516103319190610fe3565b60405180910390f35b6060600380546103499061114e565b80601f01602080910402602001604051908101604052809291908181526020018280546103759061114e565b80156103c25780601f10610397576101008083540402835291602001916103c2565b820191906000526020600020905b8154815290600101906020018083116103a557829003601f168201915b5050505050905090565b6000806103d761086a565b90506103e4818585610872565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60007f00000000000000000000000097ff9400b6c8447c0f580143bf688c4a0ae004cb73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806104c457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561050457600060646002846104da91906111ae565b6104e4919061121f565b905080836104f29190611250565b92506105018561dead83610a3b565b50505b61050f848484610a3b565b90509392505050565b61dead81565b60006012905090565b60008061053261086a565b905061055381858561054485896107e3565b61054e9190611284565b610872565b600191505092915050565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b7f00000000000000000000000097ff9400b6c8447c0f580143bf688c4a0ae004cb81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105f19061114e565b80601f016020809104026020016040519081016040528092919081815260200182805461061d9061114e565b801561066a5780601f1061063f5761010080835404028352916020019161066a565b820191906000526020600020905b81548152906001019060200180831161064d57829003601f168201915b5050505050905090565b60008061067f61086a565b9050600061068d82866107e3565b9050838110156106d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c99061132a565b60405180910390fd5b6106df8286868403610872565b60019250505092915050565b60007f00000000000000000000000097ff9400b6c8447c0f580143bf688c4a0ae004cb73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061079257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156107d157600060646002846107a891906111ae565b6107b2919061121f565b905080836107c09190611250565b92506107ce61dead82610a6a565b50505b6107db8383610a6a565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d8906113bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109479061144e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a2e9190610fe3565b60405180910390a3505050565b600080610a4661086a565b9050610a53858285610a8d565b610a5e858585610b19565b60019150509392505050565b600080610a7561086a565b9050610a82818585610b19565b600191505092915050565b6000610a9984846107e3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b135781811015610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc906114ba565b60405180910390fd5b610b128484848403610872565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f9061154c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee906115de565b60405180910390fd5b610c02838383610d8f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90611670565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d769190610fe3565b60405180910390a3610d89848484610d94565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610dd3578082015181840152602081019050610db8565b60008484015250505050565b6000601f19601f8301169050919050565b6000610dfb82610d99565b610e058185610da4565b9350610e15818560208601610db5565b610e1e81610ddf565b840191505092915050565b60006020820190508181036000830152610e438184610df0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e7b82610e50565b9050919050565b610e8b81610e70565b8114610e9657600080fd5b50565b600081359050610ea881610e82565b92915050565b6000819050919050565b610ec181610eae565b8114610ecc57600080fd5b50565b600081359050610ede81610eb8565b92915050565b60008060408385031215610efb57610efa610e4b565b5b6000610f0985828601610e99565b9250506020610f1a85828601610ecf565b9150509250929050565b60008115159050919050565b610f3981610f24565b82525050565b6000602082019050610f546000830184610f30565b92915050565b6000819050919050565b6000610f7f610f7a610f7584610e50565b610f5a565b610e50565b9050919050565b6000610f9182610f64565b9050919050565b6000610fa382610f86565b9050919050565b610fb381610f98565b82525050565b6000602082019050610fce6000830184610faa565b92915050565b610fdd81610eae565b82525050565b6000602082019050610ff86000830184610fd4565b92915050565b60008060006060848603121561101757611016610e4b565b5b600061102586828701610e99565b935050602061103686828701610e99565b925050604061104786828701610ecf565b9150509250925092565b61105a81610e70565b82525050565b60006020820190506110756000830184611051565b92915050565b600060ff82169050919050565b6110918161107b565b82525050565b60006020820190506110ac6000830184611088565b92915050565b6000602082840312156110c8576110c7610e4b565b5b60006110d684828501610e99565b91505092915050565b600080604083850312156110f6576110f5610e4b565b5b600061110485828601610e99565b925050602061111585828601610e99565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061116657607f821691505b6020821081036111795761117861111f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111b982610eae565b91506111c483610eae565b92508282026111d281610eae565b915082820484148315176111e9576111e861117f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061122a82610eae565b915061123583610eae565b925082611245576112446111f0565b5b828204905092915050565b600061125b82610eae565b915061126683610eae565b925082820390508181111561127e5761127d61117f565b5b92915050565b600061128f82610eae565b915061129a83610eae565b92508282019050808211156112b2576112b161117f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611314602583610da4565b915061131f826112b8565b604082019050919050565b6000602082019050818103600083015261134381611307565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006113a6602483610da4565b91506113b18261134a565b604082019050919050565b600060208201905081810360008301526113d581611399565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611438602283610da4565b9150611443826113dc565b604082019050919050565b600060208201905081810360008301526114678161142b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114a4601d83610da4565b91506114af8261146e565b602082019050919050565b600060208201905081810360008301526114d381611497565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611536602583610da4565b9150611541826114da565b604082019050919050565b6000602082019050818103600083015261156581611529565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115c8602383610da4565b91506115d38261156c565b604082019050919050565b600060208201905081810360008301526115f7816115bb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061165a602683610da4565b9150611665826115fe565b604082019050919050565b600060208201905081810360008301526116898161164d565b905091905056fea26469706673582212206a5841a303e04cf8340560d2d91c90f34dea570b7cf78bd4ddc6d1a00330cd3464736f6c63430008120033

Deployed Bytecode Sourcemap

29413:1976:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6368:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8704:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29486:51;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7488:105;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30420:510;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29589:53;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7330:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10180:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29649:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29544:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7656:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6587:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10918:430;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30938:448;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8239:148;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6368:100;6422:13;6455:5;6448:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6368:100;:::o;8704:198::-;8784:4;8801:13;8817:12;:10;:12::i;:::-;8801:28;;8840:32;8849:5;8856:7;8865:6;8840:8;:32::i;:::-;8890:4;8883:11;;;8704:198;;;;:::o;29486:51::-;;;:::o;7488:105::-;7549:4;7573:12;;7566:19;;7488:105;:::o;30420:510::-;30592:4;30632:13;30619:26;;:9;:26;;;:80;;;;30683:15;30662:37;;:9;:37;;;30619:80;30615:235;;;30716:8;30740:3;30736:1;30727:6;:10;;;;:::i;:::-;:16;;;;:::i;:::-;30716:27;;30776:3;30767:6;:12;;;;:::i;:::-;30758:21;;30794:44;30813:6;29635;30834:3;30794:18;:44::i;:::-;;30701:149;30615:235;30877:45;30896:6;30904:9;30915:6;30877:18;:45::i;:::-;30870:52;;30420:510;;;;;:::o;29589:53::-;29635:6;29589:53;:::o;7330:93::-;7388:5;7413:2;7406:9;;7330:93;:::o;10180:235::-;10265:4;10282:13;10298:12;:10;:12::i;:::-;10282:28;;10321:64;10330:5;10337:7;10374:10;10346:25;10356:5;10363:7;10346:9;:25::i;:::-;:38;;;;:::i;:::-;10321:8;:64::i;:::-;10403:4;10396:11;;;10180:235;;;;:::o;29649:82::-;29688:42;29649:82;:::o;29544:38::-;;;:::o;7656:124::-;7730:4;7754:9;:18;7764:7;7754:18;;;;;;;;;;;;;;;;7747:25;;7656:124;;;:::o;6587:104::-;6643:13;6676:7;6669:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6587:104;:::o;10918:430::-;11008:4;11025:13;11041:12;:10;:12::i;:::-;11025:28;;11064:21;11088:25;11098:5;11105:7;11088:9;:25::i;:::-;11064:49;;11152:15;11132:16;:35;;11124:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11245:60;11254:5;11261:7;11289:15;11270:16;:34;11245:8;:60::i;:::-;11336:4;11329:11;;;;10918:430;;;;:::o;30938:448::-;31080:4;31120:13;31107:26;;:9;:26;;;:80;;;;31171:15;31150:37;;:9;:37;;;31107:80;31103:223;;;31204:8;31228:3;31224:1;31215:6;:10;;;;:::i;:::-;:16;;;;:::i;:::-;31204:27;;31264:3;31255:6;:12;;;;:::i;:::-;31246:21;;31282:32;29635:6;31310:3;31282:14;:32::i;:::-;;31189:137;31103:223;31345:33;31360:9;31371:6;31345:14;:33::i;:::-;31338:40;;30938:448;;;;:::o;8239:148::-;8328:4;8352:11;:18;8364:5;8352:18;;;;;;;;;;;;;;;:27;8371:7;8352:27;;;;;;;;;;;;;;;;8345:34;;8239:148;;;;:::o;719:98::-;772:7;799:10;792:17;;719:98;:::o;14924:377::-;15074:1;15057:19;;:5;:19;;;15049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15155:1;15136:21;;:7;:21;;;15128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15239:6;15209:11;:18;15221:5;15209:18;;;;;;;;;;;;;;;:27;15228:7;15209:27;;;;;;;;;;;;;;;:36;;;;15277:7;15261:32;;15270:5;15261:32;;;15286:6;15261:32;;;;;;:::i;:::-;;;;;;;;14924:377;;;:::o;9479:292::-;9607:4;9624:15;9642:12;:10;:12::i;:::-;9624:30;;9665:38;9681:4;9687:7;9696:6;9665:15;:38::i;:::-;9714:27;9724:4;9730:2;9734:6;9714:9;:27::i;:::-;9759:4;9752:11;;;9479:292;;;;;:::o;7986:190::-;8062:4;8079:13;8095:12;:10;:12::i;:::-;8079:28;;8118;8128:5;8135:2;8139:6;8118:9;:28::i;:::-;8164:4;8157:11;;;7986:190;;;;:::o;15592:444::-;15724:21;15748:25;15758:5;15765:7;15748:9;:25::i;:::-;15724:49;;15808:14;15788:16;:34;15784:245;;15867:6;15847:16;:26;;15839:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15951:51;15960:5;15967:7;15995:6;15976:16;:25;15951:8;:51::i;:::-;15784:245;15713:323;15592:444;;;:::o;11818:834::-;11962:1;11946:18;;:4;:18;;;11938:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12039:1;12025:16;;:2;:16;;;12017:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12094:38;12115:4;12121:2;12125:6;12094:20;:38::i;:::-;12145:16;12164:9;:15;12174:4;12164:15;;;;;;;;;;;;;;;;12145:34;;12213:6;12198:11;:21;;12190:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12330:6;12316:11;:20;12298:9;:15;12308:4;12298:15;;;;;;;;;;;;;;;:38;;;;12533:6;12516:9;:13;12526:2;12516:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12583:2;12568:26;;12577:4;12568:26;;;12587:6;12568:26;;;;;;:::i;:::-;;;;;;;;12607:37;12627:4;12633:2;12637:6;12607:19;:37::i;:::-;11927:725;11818:834;;;:::o;16636:122::-;;;;:::o;17362:121::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:474::-;6586:6;6594;6643:2;6631:9;6622:7;6618:23;6614:32;6611:119;;;6649:79;;:::i;:::-;6611:119;6769:1;6794:53;6839:7;6830:6;6819:9;6815:22;6794:53;:::i;:::-;6784:63;;6740:117;6896:2;6922:53;6967:7;6958:6;6947:9;6943:22;6922:53;:::i;:::-;6912:63;;6867:118;6518:474;;;;;:::o;6998:180::-;7046:77;7043:1;7036:88;7143:4;7140:1;7133:15;7167:4;7164:1;7157:15;7184:320;7228:6;7265:1;7259:4;7255:12;7245:22;;7312:1;7306:4;7302:12;7333:18;7323:81;;7389:4;7381:6;7377:17;7367:27;;7323:81;7451:2;7443:6;7440:14;7420:18;7417:38;7414:84;;7470:18;;:::i;:::-;7414:84;7235:269;7184:320;;;:::o;7510:180::-;7558:77;7555:1;7548:88;7655:4;7652:1;7645:15;7679:4;7676:1;7669:15;7696:410;7736:7;7759:20;7777:1;7759:20;:::i;:::-;7754:25;;7793:20;7811:1;7793:20;:::i;:::-;7788:25;;7848:1;7845;7841:9;7870:30;7888:11;7870:30;:::i;:::-;7859:41;;8049:1;8040:7;8036:15;8033:1;8030:22;8010:1;8003:9;7983:83;7960:139;;8079:18;;:::i;:::-;7960:139;7744:362;7696:410;;;;:::o;8112:180::-;8160:77;8157:1;8150:88;8257:4;8254:1;8247:15;8281:4;8278:1;8271:15;8298:185;8338:1;8355:20;8373:1;8355:20;:::i;:::-;8350:25;;8389:20;8407:1;8389:20;:::i;:::-;8384:25;;8428:1;8418:35;;8433:18;;:::i;:::-;8418:35;8475:1;8472;8468:9;8463:14;;8298:185;;;;:::o;8489:194::-;8529:4;8549:20;8567:1;8549:20;:::i;:::-;8544:25;;8583:20;8601:1;8583:20;:::i;:::-;8578:25;;8627:1;8624;8620:9;8612:17;;8651:1;8645:4;8642:11;8639:37;;;8656:18;;:::i;:::-;8639:37;8489:194;;;;:::o;8689:191::-;8729:3;8748:20;8766:1;8748:20;:::i;:::-;8743:25;;8782:20;8800:1;8782:20;:::i;:::-;8777:25;;8825:1;8822;8818:9;8811:16;;8846:3;8843:1;8840:10;8837:36;;;8853:18;;:::i;:::-;8837:36;8689:191;;;;:::o;8886:224::-;9026:34;9022:1;9014:6;9010:14;9003:58;9095:7;9090:2;9082:6;9078:15;9071:32;8886:224;:::o;9116:366::-;9258:3;9279:67;9343:2;9338:3;9279:67;:::i;:::-;9272:74;;9355:93;9444:3;9355:93;:::i;:::-;9473:2;9468:3;9464:12;9457:19;;9116:366;;;:::o;9488:419::-;9654:4;9692:2;9681:9;9677:18;9669:26;;9741:9;9735:4;9731:20;9727:1;9716:9;9712:17;9705:47;9769:131;9895:4;9769:131;:::i;:::-;9761:139;;9488:419;;;:::o;9913:223::-;10053:34;10049:1;10041:6;10037:14;10030:58;10122:6;10117:2;10109:6;10105:15;10098:31;9913:223;:::o;10142:366::-;10284:3;10305:67;10369:2;10364:3;10305:67;:::i;:::-;10298:74;;10381:93;10470:3;10381:93;:::i;:::-;10499:2;10494:3;10490:12;10483:19;;10142:366;;;:::o;10514:419::-;10680:4;10718:2;10707:9;10703:18;10695:26;;10767:9;10761:4;10757:20;10753:1;10742:9;10738:17;10731:47;10795:131;10921:4;10795:131;:::i;:::-;10787:139;;10514:419;;;:::o;10939:221::-;11079:34;11075:1;11067:6;11063:14;11056:58;11148:4;11143:2;11135:6;11131:15;11124:29;10939:221;:::o;11166:366::-;11308:3;11329:67;11393:2;11388:3;11329:67;:::i;:::-;11322:74;;11405:93;11494:3;11405:93;:::i;:::-;11523:2;11518:3;11514:12;11507:19;;11166:366;;;:::o;11538:419::-;11704:4;11742:2;11731:9;11727:18;11719:26;;11791:9;11785:4;11781:20;11777:1;11766:9;11762:17;11755:47;11819:131;11945:4;11819:131;:::i;:::-;11811:139;;11538:419;;;:::o;11963:179::-;12103:31;12099:1;12091:6;12087:14;12080:55;11963:179;:::o;12148:366::-;12290:3;12311:67;12375:2;12370:3;12311:67;:::i;:::-;12304:74;;12387:93;12476:3;12387:93;:::i;:::-;12505:2;12500:3;12496:12;12489:19;;12148:366;;;:::o;12520:419::-;12686:4;12724:2;12713:9;12709:18;12701:26;;12773:9;12767:4;12763:20;12759:1;12748:9;12744:17;12737:47;12801:131;12927:4;12801:131;:::i;:::-;12793:139;;12520:419;;;:::o;12945:224::-;13085:34;13081:1;13073:6;13069:14;13062:58;13154:7;13149:2;13141:6;13137:15;13130:32;12945:224;:::o;13175:366::-;13317:3;13338:67;13402:2;13397:3;13338:67;:::i;:::-;13331:74;;13414:93;13503:3;13414:93;:::i;:::-;13532:2;13527:3;13523:12;13516:19;;13175:366;;;:::o;13547:419::-;13713:4;13751:2;13740:9;13736:18;13728:26;;13800:9;13794:4;13790:20;13786:1;13775:9;13771:17;13764:47;13828:131;13954:4;13828:131;:::i;:::-;13820:139;;13547:419;;;:::o;13972:222::-;14112:34;14108:1;14100:6;14096:14;14089:58;14181:5;14176:2;14168:6;14164:15;14157:30;13972:222;:::o;14200:366::-;14342:3;14363:67;14427:2;14422:3;14363:67;:::i;:::-;14356:74;;14439:93;14528:3;14439:93;:::i;:::-;14557:2;14552:3;14548:12;14541:19;;14200:366;;;:::o;14572:419::-;14738:4;14776:2;14765:9;14761:18;14753:26;;14825:9;14819:4;14815:20;14811:1;14800:9;14796:17;14789:47;14853:131;14979:4;14853:131;:::i;:::-;14845:139;;14572:419;;;:::o;14997:225::-;15137:34;15133:1;15125:6;15121:14;15114:58;15206:8;15201:2;15193:6;15189:15;15182:33;14997:225;:::o;15228:366::-;15370:3;15391:67;15455:2;15450:3;15391:67;:::i;:::-;15384:74;;15467:93;15556:3;15467:93;:::i;:::-;15585:2;15580:3;15576:12;15569:19;;15228:366;;;:::o;15600:419::-;15766:4;15804:2;15793:9;15789:18;15781:26;;15853:9;15847:4;15843:20;15839:1;15828:9;15824:17;15817:47;15881:131;16007:4;15881:131;:::i;:::-;15873:139;;15600:419;;;:::o

Swarm Source

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