ETH Price: $3,129.46 (+0.51%)

Token

BeetleJuice (BTLJC)
 

Overview

Max Total Supply

69,000,000,000 BTLJC

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
49,189,891.370972887133381275 BTLJC

Value
$0.00
0x6b09f23704405d99e466019ad3dbe0bd9af324c2
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:
BeetleJuice

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-04
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


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

pragma solidity ^0.8.0;

// 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(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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


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

pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @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, uint256 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 (uint256);

    /**
     * @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, uint256 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,
        uint256 amount
    ) external returns (bool);
}

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;




/**
 * @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 => uint256) private _balances;

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

    uint256 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 (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 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 (uint256) {
        return _allowances[owner][spender];
    }

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

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

        uint256 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, uint256 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, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 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,
        uint256 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,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).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,
        uint256 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,
        uint256 amount
    ) internal virtual {}
}

// File: BTLJC.sol


pragma solidity ^0.8.0;





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

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

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

    function WETH() external pure returns (address);

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;
    address public marketingWallet;

    uint256 public swapTokensAtAmount;
    bool public tradingActive = true;

    uint256 public marketingFeeSell;

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

    // exlcude from fees 
    mapping(address => bool) private _isExcludedFromFees;
    


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("BeetleJuice", "BTLJC") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Router = _uniswapV2Router;

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

        uint256 totalSupply = 69_000_000_000 * 1e18;

        marketingFeeSell = 4;

        marketingWallet = address(0x67b2e54f9C250A945D1c7431eB0f94D262B92001); // marketing wallet

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

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

    receive() external payable {}

    function updateFees(
        uint256 _marketingFeeSell
    ) external onlyOwner {
        marketingFeeSell = _marketingFeeSell;
        require(marketingFeeSell <= 20, "Sell tax too high");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

            }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && marketingFeeSell > 0) {
                fees = amount.mul(marketingFeeSell).div(100);
            }

            if (from == uniswapV2Pair && marketingFeeSell > 0) {
                fees = amount.mul(marketingFeeSell).div(100);
            }

            if (fees > 0) {
                super._transfer(from, marketingWallet, fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, 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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFeeSell","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600860006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600b81526020017f426565746c654a756963650000000000000000000000000000000000000000008152506040518060400160405280600581526020017f42544c4a430000000000000000000000000000000000000000000000000000008152508160039081620000aa919062000a00565b508060049081620000bc919062000a00565b505050620000df620000d3620003cb60201b60201c565b620003d360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000178573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019e919062000b51565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000206573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022c919062000b51565b6040518363ffffffff1660e01b81526004016200024b92919062000b94565b6020604051808303816000875af11580156200026b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000291919062000b51565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060006bdef376571332906a88000000905060046009819055507367b2e54f9c250a945d1c7431eb0f94d262b92001600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000354620003466200049960201b60201c565b6001620004c360201b60201c565b62000389600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620004c360201b60201c565b6200039c306001620004c360201b60201c565b620003b161dead6001620004c360201b60201c565b620003c333826200057e60201b60201c565b505062000d88565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004d3620006eb60201b60201c565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000572919062000bde565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e79062000c5c565b60405180910390fd5b62000604600083836200077c60201b60201c565b806002600082825462000618919062000cad565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006cb919062000cf9565b60405180910390a3620006e7600083836200078160201b60201c565b5050565b620006fb620003cb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007216200049960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000d66565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200080857607f821691505b6020821081036200081e576200081d620007c0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000849565b62000894868362000849565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008e1620008db620008d584620008ac565b620008b6565b620008ac565b9050919050565b6000819050919050565b620008fd83620008c0565b620009156200090c82620008e8565b84845462000856565b825550505050565b600090565b6200092c6200091d565b62000939818484620008f2565b505050565b5b8181101562000961576200095560008262000922565b6001810190506200093f565b5050565b601f821115620009b0576200097a8162000824565b620009858462000839565b8101602085101562000995578190505b620009ad620009a48562000839565b8301826200093e565b50505b505050565b600082821c905092915050565b6000620009d560001984600802620009b5565b1980831691505092915050565b6000620009f08383620009c2565b9150826002028217905092915050565b62000a0b8262000786565b67ffffffffffffffff81111562000a275762000a2662000791565b5b62000a338254620007ef565b62000a4082828562000965565b600060209050601f83116001811462000a78576000841562000a63578287015190505b62000a6f8582620009e2565b86555062000adf565b601f19841662000a888662000824565b60005b8281101562000ab25784890151825560018201915060208501945060208101905062000a8b565b8683101562000ad2578489015162000ace601f891682620009c2565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b198262000aec565b9050919050565b62000b2b8162000b0c565b811462000b3757600080fd5b50565b60008151905062000b4b8162000b20565b92915050565b60006020828403121562000b6a5762000b6962000ae7565b5b600062000b7a8482850162000b3a565b91505092915050565b62000b8e8162000b0c565b82525050565b600060408201905062000bab600083018562000b83565b62000bba602083018462000b83565b9392505050565b60008115159050919050565b62000bd88162000bc1565b82525050565b600060208201905062000bf5600083018462000bcd565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c44601f8362000bfb565b915062000c518262000c0c565b602082019050919050565b6000602082019050818103600083015262000c778162000c35565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cba82620008ac565b915062000cc783620008ac565b925082820190508082111562000ce25762000ce162000c7e565b5b92915050565b62000cf381620008ac565b82525050565b600060208201905062000d10600083018462000ce8565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d4e60208362000bfb565b915062000d5b8262000d16565b602082019050919050565b6000602082019050818103600083015262000d818162000d3f565b9050919050565b60805160a0516123d962000dbc6000396000818161077d015281816112dc0152611369015260006106da01526123d96000f3fe60806040526004361061016a5760003560e01c8063715018a6116100d1578063a9059cbb1161008a578063c024666811610064578063c024666814610563578063dd62ed3e1461058c578063e2f45605146105c9578063f2fde38b146105f457610171565b8063a9059cbb146104d2578063aacebbe31461050f578063bbc0c7421461053857610171565b8063715018a6146103d457806375f0a874146103eb57806378dacee1146104165780638da5cb5b1461043f57806395d89b411461046a578063a457c2d71461049557610171565b806327c8f8351161012357806327c8f8351461029c578063313ce567146102c757806339509351146102f257806349bd5a5e1461032f5780634fbee1931461035a57806370a082311461039757610171565b806306fdde0314610176578063095ea7b3146101a157806313374e7a146101de5780631694505e1461020957806318160ddd1461023457806323b872dd1461025f57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b61061d565b60405161019891906118cd565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611988565b6106af565b6040516101d591906119e3565b60405180910390f35b3480156101ea57600080fd5b506101f36106d2565b6040516102009190611a0d565b60405180910390f35b34801561021557600080fd5b5061021e6106d8565b60405161022b9190611a87565b60405180910390f35b34801561024057600080fd5b506102496106fc565b6040516102569190611a0d565b60405180910390f35b34801561026b57600080fd5b5061028660048036038101906102819190611aa2565b610706565b60405161029391906119e3565b60405180910390f35b3480156102a857600080fd5b506102b1610735565b6040516102be9190611b04565b60405180910390f35b3480156102d357600080fd5b506102dc61073b565b6040516102e99190611b3b565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190611988565b610744565b60405161032691906119e3565b60405180910390f35b34801561033b57600080fd5b5061034461077b565b6040516103519190611b04565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190611b56565b61079f565b60405161038e91906119e3565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190611b56565b6107f5565b6040516103cb9190611a0d565b60405180910390f35b3480156103e057600080fd5b506103e961083d565b005b3480156103f757600080fd5b50610400610851565b60405161040d9190611b04565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190611b83565b610877565b005b34801561044b57600080fd5b506104546108cf565b6040516104619190611b04565b60405180910390f35b34801561047657600080fd5b5061047f6108f9565b60405161048c91906118cd565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190611988565b61098b565b6040516104c991906119e3565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190611988565b610a02565b60405161050691906119e3565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190611b56565b610a25565b005b34801561054457600080fd5b5061054d610aed565b60405161055a91906119e3565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190611bdc565b610b00565b005b34801561059857600080fd5b506105b360048036038101906105ae9190611c1c565b610bb1565b6040516105c09190611a0d565b60405180910390f35b3480156105d557600080fd5b506105de610c38565b6040516105eb9190611a0d565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190611b56565b610c3e565b005b60606003805461062c90611c8b565b80601f016020809104026020016040519081016040528092919081815260200182805461065890611c8b565b80156106a55780601f1061067a576101008083540402835291602001916106a5565b820191906000526020600020905b81548152906001019060200180831161068857829003601f168201915b5050505050905090565b6000806106ba610cc1565b90506106c7818585610cc9565b600191505092915050565b60095481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610711610cc1565b905061071e858285610e92565b610729858585610f1e565b60019150509392505050565b61dead81565b60006012905090565b60008061074f610cc1565b90506107708185856107618589610bb1565b61076b9190611ceb565b610cc9565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61084561144d565b61084f60006114cb565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61087f61144d565b80600981905550601460095411156108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611d6b565b60405180910390fd5b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461090890611c8b565b80601f016020809104026020016040519081016040528092919081815260200182805461093490611c8b565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600080610996610cc1565b905060006109a48286610bb1565b9050838110156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611dfd565b60405180910390fd5b6109f68286868403610cc9565b60019250505092915050565b600080610a0d610cc1565b9050610a1a818585610f1e565b600191505092915050565b610a2d61144d565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900460ff1681565b610b0861144d565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610ba591906119e3565b60405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b610c4661144d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90611e8f565b60405180910390fd5b610cbe816114cb565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90611f21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90611fb3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e859190611a0d565b60405180910390a3505050565b6000610e9e8484610bb1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f185781811015610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f019061201f565b60405180910390fd5b610f178484848403610cc9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f84906120b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390612143565b60405180910390fd5b600081036110155761101083836000611591565b611448565b61101d6108cf565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561108b575061105b6108cf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156110c45750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156110fe575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156111175750600560149054906101000a900460ff16155b1561121257600860009054906101000a900460ff1661121157600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111d15750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611210576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611207906121af565b60405180910390fd5b5b5b6000600560149054906101000a900460ff16159050600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112c85750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156112d257600090505b6000811561143a577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561133757506000600954115b156113675761136460646113566009548661180790919063ffffffff16565b61181d90919063ffffffff16565b90505b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156113c457506000600954115b156113f4576113f160646113e36009548661180790919063ffffffff16565b61181d90919063ffffffff16565b90505b600081111561142b5761142a85600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611591565b5b808361143791906121cf565b92505b611445858585611591565b50505b505050565b611455610cc1565b73ffffffffffffffffffffffffffffffffffffffff166114736108cf565b73ffffffffffffffffffffffffffffffffffffffff16146114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c09061224f565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f7906120b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690612143565b60405180910390fd5b61167a838383611833565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f7906122e1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117ee9190611a0d565b60405180910390a3611801848484611838565b50505050565b600081836118159190612301565b905092915050565b6000818361182b9190612372565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561187757808201518184015260208101905061185c565b60008484015250505050565b6000601f19601f8301169050919050565b600061189f8261183d565b6118a98185611848565b93506118b9818560208601611859565b6118c281611883565b840191505092915050565b600060208201905081810360008301526118e78184611894565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061191f826118f4565b9050919050565b61192f81611914565b811461193a57600080fd5b50565b60008135905061194c81611926565b92915050565b6000819050919050565b61196581611952565b811461197057600080fd5b50565b6000813590506119828161195c565b92915050565b6000806040838503121561199f5761199e6118ef565b5b60006119ad8582860161193d565b92505060206119be85828601611973565b9150509250929050565b60008115159050919050565b6119dd816119c8565b82525050565b60006020820190506119f860008301846119d4565b92915050565b611a0781611952565b82525050565b6000602082019050611a2260008301846119fe565b92915050565b6000819050919050565b6000611a4d611a48611a43846118f4565b611a28565b6118f4565b9050919050565b6000611a5f82611a32565b9050919050565b6000611a7182611a54565b9050919050565b611a8181611a66565b82525050565b6000602082019050611a9c6000830184611a78565b92915050565b600080600060608486031215611abb57611aba6118ef565b5b6000611ac98682870161193d565b9350506020611ada8682870161193d565b9250506040611aeb86828701611973565b9150509250925092565b611afe81611914565b82525050565b6000602082019050611b196000830184611af5565b92915050565b600060ff82169050919050565b611b3581611b1f565b82525050565b6000602082019050611b506000830184611b2c565b92915050565b600060208284031215611b6c57611b6b6118ef565b5b6000611b7a8482850161193d565b91505092915050565b600060208284031215611b9957611b986118ef565b5b6000611ba784828501611973565b91505092915050565b611bb9816119c8565b8114611bc457600080fd5b50565b600081359050611bd681611bb0565b92915050565b60008060408385031215611bf357611bf26118ef565b5b6000611c018582860161193d565b9250506020611c1285828601611bc7565b9150509250929050565b60008060408385031215611c3357611c326118ef565b5b6000611c418582860161193d565b9250506020611c528582860161193d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ca357607f821691505b602082108103611cb657611cb5611c5c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cf682611952565b9150611d0183611952565b9250828201905080821115611d1957611d18611cbc565b5b92915050565b7f53656c6c2074617820746f6f2068696768000000000000000000000000000000600082015250565b6000611d55601183611848565b9150611d6082611d1f565b602082019050919050565b60006020820190508181036000830152611d8481611d48565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611de7602583611848565b9150611df282611d8b565b604082019050919050565b60006020820190508181036000830152611e1681611dda565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e79602683611848565b9150611e8482611e1d565b604082019050919050565b60006020820190508181036000830152611ea881611e6c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f0b602483611848565b9150611f1682611eaf565b604082019050919050565b60006020820190508181036000830152611f3a81611efe565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f9d602283611848565b9150611fa882611f41565b604082019050919050565b60006020820190508181036000830152611fcc81611f90565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612009601d83611848565b915061201482611fd3565b602082019050919050565b6000602082019050818103600083015261203881611ffc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061209b602583611848565b91506120a68261203f565b604082019050919050565b600060208201905081810360008301526120ca8161208e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061212d602383611848565b9150612138826120d1565b604082019050919050565b6000602082019050818103600083015261215c81612120565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000612199601683611848565b91506121a482612163565b602082019050919050565b600060208201905081810360008301526121c88161218c565b9050919050565b60006121da82611952565b91506121e583611952565b92508282039050818111156121fd576121fc611cbc565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612239602083611848565b915061224482612203565b602082019050919050565b600060208201905081810360008301526122688161222c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122cb602683611848565b91506122d68261226f565b604082019050919050565b600060208201905081810360008301526122fa816122be565b9050919050565b600061230c82611952565b915061231783611952565b925082820261232581611952565b9150828204841483151761233c5761233b611cbc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061237d82611952565b915061238883611952565b92508261239857612397612343565b5b82820490509291505056fea26469706673582212202f0151d3362c8798d78af67997da61b1d8cd696370f1a98699cc770ef8ebcf9d64736f6c63430008120033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c8063715018a6116100d1578063a9059cbb1161008a578063c024666811610064578063c024666814610563578063dd62ed3e1461058c578063e2f45605146105c9578063f2fde38b146105f457610171565b8063a9059cbb146104d2578063aacebbe31461050f578063bbc0c7421461053857610171565b8063715018a6146103d457806375f0a874146103eb57806378dacee1146104165780638da5cb5b1461043f57806395d89b411461046a578063a457c2d71461049557610171565b806327c8f8351161012357806327c8f8351461029c578063313ce567146102c757806339509351146102f257806349bd5a5e1461032f5780634fbee1931461035a57806370a082311461039757610171565b806306fdde0314610176578063095ea7b3146101a157806313374e7a146101de5780631694505e1461020957806318160ddd1461023457806323b872dd1461025f57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b61061d565b60405161019891906118cd565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611988565b6106af565b6040516101d591906119e3565b60405180910390f35b3480156101ea57600080fd5b506101f36106d2565b6040516102009190611a0d565b60405180910390f35b34801561021557600080fd5b5061021e6106d8565b60405161022b9190611a87565b60405180910390f35b34801561024057600080fd5b506102496106fc565b6040516102569190611a0d565b60405180910390f35b34801561026b57600080fd5b5061028660048036038101906102819190611aa2565b610706565b60405161029391906119e3565b60405180910390f35b3480156102a857600080fd5b506102b1610735565b6040516102be9190611b04565b60405180910390f35b3480156102d357600080fd5b506102dc61073b565b6040516102e99190611b3b565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190611988565b610744565b60405161032691906119e3565b60405180910390f35b34801561033b57600080fd5b5061034461077b565b6040516103519190611b04565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190611b56565b61079f565b60405161038e91906119e3565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190611b56565b6107f5565b6040516103cb9190611a0d565b60405180910390f35b3480156103e057600080fd5b506103e961083d565b005b3480156103f757600080fd5b50610400610851565b60405161040d9190611b04565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190611b83565b610877565b005b34801561044b57600080fd5b506104546108cf565b6040516104619190611b04565b60405180910390f35b34801561047657600080fd5b5061047f6108f9565b60405161048c91906118cd565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190611988565b61098b565b6040516104c991906119e3565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190611988565b610a02565b60405161050691906119e3565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190611b56565b610a25565b005b34801561054457600080fd5b5061054d610aed565b60405161055a91906119e3565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190611bdc565b610b00565b005b34801561059857600080fd5b506105b360048036038101906105ae9190611c1c565b610bb1565b6040516105c09190611a0d565b60405180910390f35b3480156105d557600080fd5b506105de610c38565b6040516105eb9190611a0d565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190611b56565b610c3e565b005b60606003805461062c90611c8b565b80601f016020809104026020016040519081016040528092919081815260200182805461065890611c8b565b80156106a55780601f1061067a576101008083540402835291602001916106a5565b820191906000526020600020905b81548152906001019060200180831161068857829003601f168201915b5050505050905090565b6000806106ba610cc1565b90506106c7818585610cc9565b600191505092915050565b60095481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610711610cc1565b905061071e858285610e92565b610729858585610f1e565b60019150509392505050565b61dead81565b60006012905090565b60008061074f610cc1565b90506107708185856107618589610bb1565b61076b9190611ceb565b610cc9565b600191505092915050565b7f0000000000000000000000005ae7b778174d944a75b9fd477bd3c325b69c8b6081565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61084561144d565b61084f60006114cb565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61087f61144d565b80600981905550601460095411156108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611d6b565b60405180910390fd5b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461090890611c8b565b80601f016020809104026020016040519081016040528092919081815260200182805461093490611c8b565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600080610996610cc1565b905060006109a48286610bb1565b9050838110156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611dfd565b60405180910390fd5b6109f68286868403610cc9565b60019250505092915050565b600080610a0d610cc1565b9050610a1a818585610f1e565b600191505092915050565b610a2d61144d565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900460ff1681565b610b0861144d565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610ba591906119e3565b60405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b610c4661144d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90611e8f565b60405180910390fd5b610cbe816114cb565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90611f21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90611fb3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e859190611a0d565b60405180910390a3505050565b6000610e9e8484610bb1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f185781811015610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f019061201f565b60405180910390fd5b610f178484848403610cc9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f84906120b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390612143565b60405180910390fd5b600081036110155761101083836000611591565b611448565b61101d6108cf565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561108b575061105b6108cf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156110c45750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156110fe575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156111175750600560149054906101000a900460ff16155b1561121257600860009054906101000a900460ff1661121157600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111d15750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611210576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611207906121af565b60405180910390fd5b5b5b6000600560149054906101000a900460ff16159050600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112c85750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156112d257600090505b6000811561143a577f0000000000000000000000005ae7b778174d944a75b9fd477bd3c325b69c8b6073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561133757506000600954115b156113675761136460646113566009548661180790919063ffffffff16565b61181d90919063ffffffff16565b90505b7f0000000000000000000000005ae7b778174d944a75b9fd477bd3c325b69c8b6073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156113c457506000600954115b156113f4576113f160646113e36009548661180790919063ffffffff16565b61181d90919063ffffffff16565b90505b600081111561142b5761142a85600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611591565b5b808361143791906121cf565b92505b611445858585611591565b50505b505050565b611455610cc1565b73ffffffffffffffffffffffffffffffffffffffff166114736108cf565b73ffffffffffffffffffffffffffffffffffffffff16146114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c09061224f565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f7906120b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690612143565b60405180910390fd5b61167a838383611833565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f7906122e1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117ee9190611a0d565b60405180910390a3611801848484611838565b50505050565b600081836118159190612301565b905092915050565b6000818361182b9190612372565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561187757808201518184015260208101905061185c565b60008484015250505050565b6000601f19601f8301169050919050565b600061189f8261183d565b6118a98185611848565b93506118b9818560208601611859565b6118c281611883565b840191505092915050565b600060208201905081810360008301526118e78184611894565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061191f826118f4565b9050919050565b61192f81611914565b811461193a57600080fd5b50565b60008135905061194c81611926565b92915050565b6000819050919050565b61196581611952565b811461197057600080fd5b50565b6000813590506119828161195c565b92915050565b6000806040838503121561199f5761199e6118ef565b5b60006119ad8582860161193d565b92505060206119be85828601611973565b9150509250929050565b60008115159050919050565b6119dd816119c8565b82525050565b60006020820190506119f860008301846119d4565b92915050565b611a0781611952565b82525050565b6000602082019050611a2260008301846119fe565b92915050565b6000819050919050565b6000611a4d611a48611a43846118f4565b611a28565b6118f4565b9050919050565b6000611a5f82611a32565b9050919050565b6000611a7182611a54565b9050919050565b611a8181611a66565b82525050565b6000602082019050611a9c6000830184611a78565b92915050565b600080600060608486031215611abb57611aba6118ef565b5b6000611ac98682870161193d565b9350506020611ada8682870161193d565b9250506040611aeb86828701611973565b9150509250925092565b611afe81611914565b82525050565b6000602082019050611b196000830184611af5565b92915050565b600060ff82169050919050565b611b3581611b1f565b82525050565b6000602082019050611b506000830184611b2c565b92915050565b600060208284031215611b6c57611b6b6118ef565b5b6000611b7a8482850161193d565b91505092915050565b600060208284031215611b9957611b986118ef565b5b6000611ba784828501611973565b91505092915050565b611bb9816119c8565b8114611bc457600080fd5b50565b600081359050611bd681611bb0565b92915050565b60008060408385031215611bf357611bf26118ef565b5b6000611c018582860161193d565b9250506020611c1285828601611bc7565b9150509250929050565b60008060408385031215611c3357611c326118ef565b5b6000611c418582860161193d565b9250506020611c528582860161193d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ca357607f821691505b602082108103611cb657611cb5611c5c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cf682611952565b9150611d0183611952565b9250828201905080821115611d1957611d18611cbc565b5b92915050565b7f53656c6c2074617820746f6f2068696768000000000000000000000000000000600082015250565b6000611d55601183611848565b9150611d6082611d1f565b602082019050919050565b60006020820190508181036000830152611d8481611d48565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611de7602583611848565b9150611df282611d8b565b604082019050919050565b60006020820190508181036000830152611e1681611dda565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e79602683611848565b9150611e8482611e1d565b604082019050919050565b60006020820190508181036000830152611ea881611e6c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f0b602483611848565b9150611f1682611eaf565b604082019050919050565b60006020820190508181036000830152611f3a81611efe565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f9d602283611848565b9150611fa882611f41565b604082019050919050565b60006020820190508181036000830152611fcc81611f90565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612009601d83611848565b915061201482611fd3565b602082019050919050565b6000602082019050818103600083015261203881611ffc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061209b602583611848565b91506120a68261203f565b604082019050919050565b600060208201905081810360008301526120ca8161208e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061212d602383611848565b9150612138826120d1565b604082019050919050565b6000602082019050818103600083015261215c81612120565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000612199601683611848565b91506121a482612163565b602082019050919050565b600060208201905081810360008301526121c88161218c565b9050919050565b60006121da82611952565b91506121e583611952565b92508282039050818111156121fd576121fc611cbc565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612239602083611848565b915061224482612203565b602082019050919050565b600060208201905081810360008301526122688161222c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122cb602683611848565b91506122d68261226f565b604082019050919050565b600060208201905081810360008301526122fa816122be565b9050919050565b600061230c82611952565b915061231783611952565b925082820261232581611952565b9150828204841483151761233c5761233b611cbc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061237d82611952565b915061238883611952565b92508261239857612397612343565b5b82820490509291505056fea26469706673582212202f0151d3362c8798d78af67997da61b1d8cd696370f1a98699cc770ef8ebcf9d64736f6c63430008120033

Deployed Bytecode Sourcemap

28297:4314:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16392:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18743:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28691:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28378:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17512:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19524:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28481:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17354:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20228:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28436:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30741:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17683:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9817:103;;;;;;;;;;;;;:::i;:::-;;28571:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30104:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9169:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16611:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20969:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18016:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30502:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28650:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30312:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18272:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28610:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10075:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16392:100;16446:13;16479:5;16472:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16392:100;:::o;18743:201::-;18826:4;18843:13;18859:12;:10;:12::i;:::-;18843:28;;18882:32;18891:5;18898:7;18907:6;18882:8;:32::i;:::-;18932:4;18925:11;;;18743:201;;;;:::o;28691:31::-;;;;:::o;28378:51::-;;;:::o;17512:108::-;17573:7;17600:12;;17593:19;;17512:108;:::o;19524:295::-;19655:4;19672:15;19690:12;:10;:12::i;:::-;19672:30;;19713:38;19729:4;19735:7;19744:6;19713:15;:38::i;:::-;19762:27;19772:4;19778:2;19782:6;19762:9;:27::i;:::-;19807:4;19800:11;;;19524:295;;;;;:::o;28481:53::-;28527:6;28481:53;:::o;17354:93::-;17412:5;17437:2;17430:9;;17354:93;:::o;20228:238::-;20316:4;20333:13;20349:12;:10;:12::i;:::-;20333:28;;20372:64;20381:5;20388:7;20425:10;20397:25;20407:5;20414:7;20397:9;:25::i;:::-;:38;;;;:::i;:::-;20372:8;:64::i;:::-;20454:4;20447:11;;;20228:238;;;;:::o;28436:38::-;;;:::o;30741:126::-;30807:4;30831:19;:28;30851:7;30831:28;;;;;;;;;;;;;;;;;;;;;;;;;30824:35;;30741:126;;;:::o;17683:127::-;17757:7;17784:9;:18;17794:7;17784:18;;;;;;;;;;;;;;;;17777:25;;17683:127;;;:::o;9817:103::-;9055:13;:11;:13::i;:::-;9882:30:::1;9909:1;9882:18;:30::i;:::-;9817:103::o:0;28571:30::-;;;;;;;;;;;;;:::o;30104:200::-;9055:13;:11;:13::i;:::-;30216:17:::1;30197:16;:36;;;;30272:2;30252:16;;:22;;30244:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;30104:200:::0;:::o;9169:87::-;9215:7;9242:6;;;;;;;;;;;9235:13;;9169:87;:::o;16611:104::-;16667:13;16700:7;16693:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16611:104;:::o;20969:436::-;21062:4;21079:13;21095:12;:10;:12::i;:::-;21079:28;;21118:24;21145:25;21155:5;21162:7;21145:9;:25::i;:::-;21118:52;;21209:15;21189:16;:35;;21181:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21302:60;21311:5;21318:7;21346:15;21327:16;:34;21302:8;:60::i;:::-;21393:4;21386:11;;;;20969:436;;;;:::o;18016:193::-;18095:4;18112:13;18128:12;:10;:12::i;:::-;18112:28;;18151;18161:5;18168:2;18172:6;18151:9;:28::i;:::-;18197:4;18190:11;;;18016:193;;;;:::o;30502:231::-;9055:13;:11;:13::i;:::-;30662:15:::1;;;;;;;;;;;30619:59;;30642:18;30619:59;;;;;;;;;;;;30707:18;30689:15;;:36;;;;;;;;;;;;;;;;;;30502:231:::0;:::o;28650:32::-;;;;;;;;;;;;;:::o;30312:182::-;9055:13;:11;:13::i;:::-;30428:8:::1;30397:19;:28;30417:7;30397:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;30468:7;30452:34;;;30477:8;30452:34;;;;;;:::i;:::-;;;;;;;;30312:182:::0;;:::o;18272:151::-;18361:7;18388:11;:18;18400:5;18388:18;;;;;;;;;;;;;;;:27;18407:7;18388:27;;;;;;;;;;;;;;;;18381:34;;18272:151;;;;:::o;28610:33::-;;;;:::o;10075:201::-;9055:13;:11;:13::i;:::-;10184:1:::1;10164:22;;:8;:22;;::::0;10156:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10240:28;10259:8;10240:18;:28::i;:::-;10075:201:::0;:::o;7720:98::-;7773:7;7800:10;7793:17;;7720:98;:::o;24996:380::-;25149:1;25132:19;;:5;:19;;;25124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25230:1;25211:21;;:7;:21;;;25203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25314:6;25284:11;:18;25296:5;25284:18;;;;;;;;;;;;;;;:27;25303:7;25284:27;;;;;;;;;;;;;;;:36;;;;25352:7;25336:32;;25345:5;25336:32;;;25361:6;25336:32;;;;;;:::i;:::-;;;;;;;;24996:380;;;:::o;25667:453::-;25802:24;25829:25;25839:5;25846:7;25829:9;:25::i;:::-;25802:52;;25889:17;25869:16;:37;25865:248;;25951:6;25931:16;:26;;25923:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26035:51;26044:5;26051:7;26079:6;26060:16;:25;26035:8;:51::i;:::-;25865:248;25791:329;25667:453;;;:::o;30875:1731::-;31023:1;31007:18;;:4;:18;;;30999:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31100:1;31086:16;;:2;:16;;;31078:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31169:1;31159:6;:11;31155:93;;31187:28;31203:4;31209:2;31213:1;31187:15;:28::i;:::-;31230:7;;31155:93;31304:7;:5;:7::i;:::-;31296:15;;:4;:15;;;;:49;;;;;31338:7;:5;:7::i;:::-;31332:13;;:2;:13;;;;31296:49;:86;;;;;31380:1;31366:16;;:2;:16;;;;31296:86;:128;;;;;31417:6;31403:21;;:2;:21;;;;31296:128;:158;;;;;31446:8;;;;;;;;;;;31445:9;31296:158;31274:455;;;31494:13;;;;;;;;;;;31489:223;;31566:19;:25;31586:4;31566:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;31595:19;:23;31615:2;31595:23;;;;;;;;;;;;;;;;;;;;;;;;;31566:52;31532:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;31489:223;31274:455;31741:12;31757:8;;;;;;;;;;;31756:9;31741:24;;31867:19;:25;31887:4;31867:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;31896:19;:23;31916:2;31896:23;;;;;;;;;;;;;;;;;;;;;;;;;31867:52;31863:100;;;31946:5;31936:15;;31863:100;31975:12;32080:7;32076:477;;;32138:13;32132:19;;:2;:19;;;:43;;;;;32174:1;32155:16;;:20;32132:43;32128:128;;;32203:37;32236:3;32203:28;32214:16;;32203:6;:10;;:28;;;;:::i;:::-;:32;;:37;;;;:::i;:::-;32196:44;;32128:128;32284:13;32276:21;;:4;:21;;;:45;;;;;32320:1;32301:16;;:20;32276:45;32272:130;;;32349:37;32382:3;32349:28;32360:16;;32349:6;:10;;:28;;;;:::i;:::-;:32;;:37;;;;:::i;:::-;32342:44;;32272:130;32429:1;32422:4;:8;32418:93;;;32451:44;32467:4;32473:15;;;;;;;;;;;32490:4;32451:15;:44::i;:::-;32418:93;32537:4;32527:14;;;;;:::i;:::-;;;32076:477;32565:33;32581:4;32587:2;32591:6;32565:15;:33::i;:::-;30988:1618;;30875:1731;;;;:::o;9334:132::-;9409:12;:10;:12::i;:::-;9398:23;;:7;:5;:7::i;:::-;:23;;;9390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9334:132::o;10436:191::-;10510:16;10529:6;;;;;;;;;;;10510:25;;10555:8;10546:6;;:17;;;;;;;;;;;;;;;;;;10610:8;10579:40;;10600:8;10579:40;;;;;;;;;;;;10499:128;10436:191;:::o;21875:840::-;22022:1;22006:18;;:4;:18;;;21998:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22099:1;22085:16;;:2;:16;;;22077:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22154:38;22175:4;22181:2;22185:6;22154:20;:38::i;:::-;22205:19;22227:9;:15;22237:4;22227:15;;;;;;;;;;;;;;;;22205:37;;22276:6;22261:11;:21;;22253:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22393:6;22379:11;:20;22361:9;:15;22371:4;22361:15;;;;;;;;;;;;;;;:38;;;;22596:6;22579:9;:13;22589:2;22579:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;22646:2;22631:26;;22640:4;22631:26;;;22650:6;22631:26;;;;;;:::i;:::-;;;;;;;;22670:37;22690:4;22696:2;22700:6;22670:19;:37::i;:::-;21987:728;21875:840;;;:::o;3614:98::-;3672:7;3703:1;3699;:5;;;;:::i;:::-;3692:12;;3614:98;;;;:::o;4013:::-;4071:7;4102:1;4098;:5;;;;:::i;:::-;4091:12;;4013:98;;;;:::o;26720:125::-;;;;:::o;27449:124::-;;;;:::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:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:60::-;3826:3;3847:5;3840:12;;3798:60;;;:::o;3864:142::-;3914:9;3947:53;3965:34;3974:24;3992:5;3974:24;:::i;:::-;3965:34;:::i;:::-;3947:53;:::i;:::-;3934:66;;3864:142;;;:::o;4012:126::-;4062:9;4095:37;4126:5;4095:37;:::i;:::-;4082:50;;4012:126;;;:::o;4144:153::-;4221:9;4254:37;4285:5;4254:37;:::i;:::-;4241:50;;4144:153;;;:::o;4303:185::-;4417:64;4475:5;4417:64;:::i;:::-;4412:3;4405:77;4303:185;;:::o;4494:276::-;4614:4;4652:2;4641:9;4637:18;4629:26;;4665:98;4760:1;4749:9;4745:17;4736:6;4665:98;:::i;:::-;4494:276;;;;:::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:::-;6577:6;6626:2;6614:9;6605:7;6601:23;6597:32;6594:119;;;6632:79;;:::i;:::-;6594:119;6752:1;6777:53;6822:7;6813:6;6802:9;6798:22;6777:53;:::i;:::-;6767:63;;6723:117;6518:329;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:474::-;7656:6;7664;7713:2;7701:9;7692:7;7688:23;7684:32;7681:119;;;7719:79;;:::i;:::-;7681:119;7839:1;7864:53;7909:7;7900:6;7889:9;7885:22;7864:53;:::i;:::-;7854:63;;7810:117;7966:2;7992:53;8037:7;8028:6;8017:9;8013:22;7992:53;:::i;:::-;7982:63;;7937:118;7588:474;;;;;:::o;8068:180::-;8116:77;8113:1;8106:88;8213:4;8210:1;8203:15;8237:4;8234:1;8227:15;8254:320;8298:6;8335:1;8329:4;8325:12;8315:22;;8382:1;8376:4;8372:12;8403:18;8393:81;;8459:4;8451:6;8447:17;8437:27;;8393:81;8521:2;8513:6;8510:14;8490:18;8487:38;8484:84;;8540:18;;:::i;:::-;8484:84;8305:269;8254:320;;;:::o;8580:180::-;8628:77;8625:1;8618:88;8725:4;8722:1;8715:15;8749:4;8746:1;8739:15;8766:191;8806:3;8825:20;8843:1;8825:20;:::i;:::-;8820:25;;8859:20;8877:1;8859:20;:::i;:::-;8854:25;;8902:1;8899;8895:9;8888:16;;8923:3;8920:1;8917:10;8914:36;;;8930:18;;:::i;:::-;8914:36;8766:191;;;;:::o;8963:167::-;9103:19;9099:1;9091:6;9087:14;9080:43;8963:167;:::o;9136:366::-;9278:3;9299:67;9363:2;9358:3;9299:67;:::i;:::-;9292:74;;9375:93;9464:3;9375:93;:::i;:::-;9493:2;9488:3;9484:12;9477:19;;9136:366;;;:::o;9508:419::-;9674:4;9712:2;9701:9;9697:18;9689:26;;9761:9;9755:4;9751:20;9747:1;9736:9;9732:17;9725:47;9789:131;9915:4;9789:131;:::i;:::-;9781:139;;9508:419;;;:::o;9933:224::-;10073:34;10069:1;10061:6;10057:14;10050:58;10142:7;10137:2;10129:6;10125:15;10118:32;9933:224;:::o;10163:366::-;10305:3;10326:67;10390:2;10385:3;10326:67;:::i;:::-;10319:74;;10402:93;10491:3;10402:93;:::i;:::-;10520:2;10515:3;10511:12;10504:19;;10163:366;;;:::o;10535:419::-;10701:4;10739:2;10728:9;10724:18;10716:26;;10788:9;10782:4;10778:20;10774:1;10763:9;10759:17;10752:47;10816:131;10942:4;10816:131;:::i;:::-;10808:139;;10535:419;;;:::o;10960:225::-;11100:34;11096:1;11088:6;11084:14;11077:58;11169:8;11164:2;11156:6;11152:15;11145:33;10960:225;:::o;11191:366::-;11333:3;11354:67;11418:2;11413:3;11354:67;:::i;:::-;11347:74;;11430:93;11519:3;11430:93;:::i;:::-;11548:2;11543:3;11539:12;11532:19;;11191:366;;;:::o;11563:419::-;11729:4;11767:2;11756:9;11752:18;11744:26;;11816:9;11810:4;11806:20;11802:1;11791:9;11787:17;11780:47;11844:131;11970:4;11844:131;:::i;:::-;11836:139;;11563:419;;;:::o;11988:223::-;12128:34;12124:1;12116:6;12112:14;12105:58;12197:6;12192:2;12184:6;12180:15;12173:31;11988:223;:::o;12217:366::-;12359:3;12380:67;12444:2;12439:3;12380:67;:::i;:::-;12373:74;;12456:93;12545:3;12456:93;:::i;:::-;12574:2;12569:3;12565:12;12558:19;;12217:366;;;:::o;12589:419::-;12755:4;12793:2;12782:9;12778:18;12770:26;;12842:9;12836:4;12832:20;12828:1;12817:9;12813:17;12806:47;12870:131;12996:4;12870:131;:::i;:::-;12862:139;;12589:419;;;:::o;13014:221::-;13154:34;13150:1;13142:6;13138:14;13131:58;13223:4;13218:2;13210:6;13206:15;13199:29;13014:221;:::o;13241:366::-;13383:3;13404:67;13468:2;13463:3;13404:67;:::i;:::-;13397:74;;13480:93;13569:3;13480:93;:::i;:::-;13598:2;13593:3;13589:12;13582:19;;13241:366;;;:::o;13613:419::-;13779:4;13817:2;13806:9;13802:18;13794:26;;13866:9;13860:4;13856:20;13852:1;13841:9;13837:17;13830:47;13894:131;14020:4;13894:131;:::i;:::-;13886:139;;13613:419;;;:::o;14038:179::-;14178:31;14174:1;14166:6;14162:14;14155:55;14038:179;:::o;14223:366::-;14365:3;14386:67;14450:2;14445:3;14386:67;:::i;:::-;14379:74;;14462:93;14551:3;14462:93;:::i;:::-;14580:2;14575:3;14571:12;14564:19;;14223:366;;;:::o;14595:419::-;14761:4;14799:2;14788:9;14784:18;14776:26;;14848:9;14842:4;14838:20;14834:1;14823:9;14819:17;14812:47;14876:131;15002:4;14876:131;:::i;:::-;14868:139;;14595:419;;;:::o;15020:224::-;15160:34;15156:1;15148:6;15144:14;15137:58;15229:7;15224:2;15216:6;15212:15;15205:32;15020:224;:::o;15250:366::-;15392:3;15413:67;15477:2;15472:3;15413:67;:::i;:::-;15406:74;;15489:93;15578:3;15489:93;:::i;:::-;15607:2;15602:3;15598:12;15591:19;;15250:366;;;:::o;15622:419::-;15788:4;15826:2;15815:9;15811:18;15803:26;;15875:9;15869:4;15865:20;15861:1;15850:9;15846:17;15839:47;15903:131;16029:4;15903:131;:::i;:::-;15895:139;;15622:419;;;:::o;16047:222::-;16187:34;16183:1;16175:6;16171:14;16164:58;16256:5;16251:2;16243:6;16239:15;16232:30;16047:222;:::o;16275:366::-;16417:3;16438:67;16502:2;16497:3;16438:67;:::i;:::-;16431:74;;16514:93;16603:3;16514:93;:::i;:::-;16632:2;16627:3;16623:12;16616:19;;16275:366;;;:::o;16647:419::-;16813:4;16851:2;16840:9;16836:18;16828:26;;16900:9;16894:4;16890:20;16886:1;16875:9;16871:17;16864:47;16928:131;17054:4;16928:131;:::i;:::-;16920:139;;16647:419;;;:::o;17072:172::-;17212:24;17208:1;17200:6;17196:14;17189:48;17072:172;:::o;17250:366::-;17392:3;17413:67;17477:2;17472:3;17413:67;:::i;:::-;17406:74;;17489:93;17578:3;17489:93;:::i;:::-;17607:2;17602:3;17598:12;17591:19;;17250:366;;;:::o;17622:419::-;17788:4;17826:2;17815:9;17811:18;17803:26;;17875:9;17869:4;17865:20;17861:1;17850:9;17846:17;17839:47;17903:131;18029:4;17903:131;:::i;:::-;17895:139;;17622:419;;;:::o;18047:194::-;18087:4;18107:20;18125:1;18107:20;:::i;:::-;18102:25;;18141:20;18159:1;18141:20;:::i;:::-;18136:25;;18185:1;18182;18178:9;18170:17;;18209:1;18203:4;18200:11;18197:37;;;18214:18;;:::i;:::-;18197:37;18047:194;;;;:::o;18247:182::-;18387:34;18383:1;18375:6;18371:14;18364:58;18247:182;:::o;18435:366::-;18577:3;18598:67;18662:2;18657:3;18598:67;:::i;:::-;18591:74;;18674:93;18763:3;18674:93;:::i;:::-;18792:2;18787:3;18783:12;18776:19;;18435:366;;;:::o;18807:419::-;18973:4;19011:2;19000:9;18996:18;18988:26;;19060:9;19054:4;19050:20;19046:1;19035:9;19031:17;19024:47;19088:131;19214:4;19088:131;:::i;:::-;19080:139;;18807:419;;;:::o;19232:225::-;19372:34;19368:1;19360:6;19356:14;19349:58;19441:8;19436:2;19428:6;19424:15;19417:33;19232:225;:::o;19463:366::-;19605:3;19626:67;19690:2;19685:3;19626:67;:::i;:::-;19619:74;;19702:93;19791:3;19702:93;:::i;:::-;19820:2;19815:3;19811:12;19804:19;;19463:366;;;:::o;19835:419::-;20001:4;20039:2;20028:9;20024:18;20016:26;;20088:9;20082:4;20078:20;20074:1;20063:9;20059:17;20052:47;20116:131;20242:4;20116:131;:::i;:::-;20108:139;;19835:419;;;:::o;20260:410::-;20300:7;20323:20;20341:1;20323:20;:::i;:::-;20318:25;;20357:20;20375:1;20357:20;:::i;:::-;20352:25;;20412:1;20409;20405:9;20434:30;20452:11;20434:30;:::i;:::-;20423:41;;20613:1;20604:7;20600:15;20597:1;20594:22;20574:1;20567:9;20547:83;20524:139;;20643:18;;:::i;:::-;20524:139;20308:362;20260:410;;;;:::o;20676:180::-;20724:77;20721:1;20714:88;20821:4;20818:1;20811:15;20845:4;20842:1;20835:15;20862:185;20902:1;20919:20;20937:1;20919:20;:::i;:::-;20914:25;;20953:20;20971:1;20953:20;:::i;:::-;20948:25;;20992:1;20982:35;;20997:18;;:::i;:::-;20982:35;21039:1;21036;21032:9;21027:14;;20862:185;;;;:::o

Swarm Source

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