Token

Whale (WHALE)

Overview

Max Total Supply

21,000,000 WHALE

Holders

174

Market

Price

-

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
112,798.9780765 WHALE

Value
$0.00
0x72f4E8B893527e3884bB4AC5a28d5Fc65172Ec4A
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Whale

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 1000 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-23
*/

// Sources flattened with hardhat v2.22.16 https://hardhat.org

// SPDX-License-Identifier: MIT

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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.28;

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

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

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

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

/**
 * @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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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/[email protected]

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

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

/**
 * @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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual 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 @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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

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

// File contracts/Whale.sol

contract Whale is ERC20Burnable, Ownable {
    bool public tradingActive = false; // Toggle trading status
    address public taxWallet; // Address where taxes are sent
    uint256 public sellTaxPercentage = 0; // Tax percentage (basis points, 10000 = 100%)

    mapping(address => bool) public isLiquidityPool; // Liquidity pool tracking
    mapping(address => bool) public isTaxExempt; // Tracks accounts exempt from taxes

    address[] private liquidityPoolAddresses; // List of liquidity pools
    address[] private taxExemptAddresses; // List of tax-exempt accounts

    constructor() ERC20("Whale", "WHALE") {
        uint256 initialSupply = 21_000_000 * 10 ** 18;
        _mint(msg.sender, initialSupply); // Mint one time supply to deployer
    }

    /**
     * @dev Returns the list of liquidity pool addresses.
     */
    function getLiquidityPoolAddresses()
        external
        view
        returns (address[] memory)
    {
        return liquidityPoolAddresses;
    }

    /**
     * @dev Returns the list of tax-exempt addresses.
     */
    function getTaxExemptAddresses() external view returns (address[] memory) {
        return taxExemptAddresses;
    }

    /**
     * @dev Initialize the tax wallet address.
     */
    function initializeTaxWallet(address _taxWallet) external onlyOwner {
        require(_taxWallet != address(0), "Invalid tax wallet");
        taxWallet = _taxWallet;
    }

    /**
     * @dev Set the percentage of tax applied on token sales. Changed max tax to 10%.
     */
    function setSellTaxPercentage(
        uint256 _sellTaxPercentage
    ) external onlyOwner {
        require(_sellTaxPercentage <= 1000, "Sell tax cannot exceed 10%"); // 1000 basis points = 10%
        sellTaxPercentage = _sellTaxPercentage;
    }

    /**
     * @dev Enable trading permanently.
     */
    function enableTrading() external onlyOwner {
        tradingActive = true;
        emit TradingEnabled();
    }

    /**
     * @dev Add a new liquidity pool address.
     */
    function addLiquidityPool(address _lpAddress) external onlyOwner {
        require(_lpAddress != address(0), "Invalid liquidity pool address");
        if (!isLiquidityPool[_lpAddress]) {
            isLiquidityPool[_lpAddress] = true;
            liquidityPoolAddresses.push(_lpAddress);
        }
    }

    /**
     * @dev Remove an existing liquidity pool address.
     */
    function removeLiquidityPool(address _lpAddress) external onlyOwner {
        require(isLiquidityPool[_lpAddress], "Address is not a liquidity pool");
        delete isLiquidityPool[_lpAddress];
        for (uint256 i = 0; i < liquidityPoolAddresses.length; i++) {
            if (liquidityPoolAddresses[i] == _lpAddress) {
                liquidityPoolAddresses[i] = liquidityPoolAddresses[
                    liquidityPoolAddresses.length - 1
                ];
                liquidityPoolAddresses.pop();
                break;
            }
        }
    }

    /**
     * @dev Set tax exemption status for an address.
     */
    function setTaxExemption(
        address _account,
        bool _exempt
    ) external onlyOwner {
        require(_account != address(0), "Invalid address");
        isTaxExempt[_account] = _exempt;

        if (_exempt) {
            taxExemptAddresses.push(_account);
        } else {
            for (uint256 i = 0; i < taxExemptAddresses.length; i++) {
                if (taxExemptAddresses[i] == _account) {
                    taxExemptAddresses[i] = taxExemptAddresses[
                        taxExemptAddresses.length - 1
                    ];
                    taxExemptAddresses.pop();
                    break;
                }
            }
        }
        emit TaxExemptionChanged(_account, _exempt);
    }

    /**
     * @dev Perform batch transfers to multiple recipients.
     */
    function batchTransfer(
        address[] calldata recipients,
        uint256[] calldata amounts
    ) external {
        require(
            recipients.length == amounts.length,
            "Recipients and amounts length mismatch"
        );

        for (uint256 i = 0; i < recipients.length; i++) {
            _transfer(msg.sender, recipients[i], amounts[i]);
        }
    }

    /**
     * @dev Override the `_transfer` function for tax logic.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!tradingActive) {
            require(from == owner() || to == owner(), "Trading is not active");
        }

        uint256 taxAmount = 0;

        if (
            tradingActive &&
            taxWallet != address(0) &&
            sellTaxPercentage > 0 &&
            !isTaxExempt[from] &&
            !isTaxExempt[to] &&
            isLiquidityPool[to]
        ) {
            taxAmount = (amount * sellTaxPercentage + 9999) / 10000; // Round up tax amount
            _transfer(from, taxWallet, taxAmount);
            emit TaxApplied(from, to, amount, taxAmount);
            amount -= taxAmount;
        }

        super._transfer(from, to, amount);
    }

    event TaxApplied(
        address indexed from,
        address indexed to,
        uint256 amount,
        uint256 taxAmount
    );
    event TradingEnabled();
    event TaxExemptionChanged(address indexed account, bool isExempt);
}

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":"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":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"TaxApplied","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExempt","type":"bool"}],"name":"TaxExemptionChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_lpAddress","type":"address"}],"name":"addLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getLiquidityPoolAddresses","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxExemptAddresses","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","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":"_taxWallet","type":"address"}],"name":"initializeTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isLiquidityPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTaxExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_lpAddress","type":"address"}],"name":"removeLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTaxPercentage","type":"uint256"}],"name":"setSellTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_exempt","type":"bool"}],"name":"setTaxExemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

60806040526005805460ff60a01b19169055600060075534801561002257600080fd5b50604051806040016040528060058152602001645768616c6560d81b815250604051806040016040528060058152602001645748414c4560d81b815250816003908161006e919061026c565b50600461007b828261026c565b50505061009461008f6100b060201b60201c565b6100b4565b6a115eec47f6cf7e350000006100aa3382610106565b50610351565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166101605760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254610172919061032a565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806101f857607f821691505b60208210810361021857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156101c957806000526020600020601f840160051c810160208510156102455750805b601f840160051c820191505b818110156102655760008155600101610251565b5050505050565b81516001600160401b03811115610285576102856101ce565b6102998161029384546101e4565b8461021e565b6020601f8211600181146102cd57600083156102b55750848201515b600019600385901b1c1916600184901b178455610265565b600084815260208120601f198516915b828110156102fd57878501518255602094850194600190920191016102dd565b508482101561031b5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561034b57634e487b7160e01b600052601160045260246000fd5b92915050565b6119d5806103606000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063ae22107f116100a2578063e85455d711610071578063e85455d714610414578063ee6a934c14610437578063f2fde38b1461044a578063f700b8491461045d57600080fd5b8063ae22107f146103a1578063b64e3c74146103b4578063bbc0c742146103c7578063dd62ed3e146103db57600080fd5b80639ec4be41116100de5780639ec4be4114610360578063a457c2d714610373578063a6ec2c7314610386578063a9059cbb1461038e57600080fd5b80638da5cb5b1461033e57806395d89b411461034f5780639e7d8d1d1461035757600080fd5b8063313ce5671161017c578063715018a61161014b578063715018a61461030857806379cc67901461031057806388d695b2146103235780638a8c523c1461033657600080fd5b8063313ce567146102a857806339509351146102b757806342966c68146102ca57806370a08231146102df57600080fd5b806318160ddd116101b857806318160ddd146102435780631da0839d1461025557806323b872dd1461026a5780632dc0562d1461027d57600080fd5b806306fdde03146101df578063095ea7b3146101fd57806316c2be6b14610220575b600080fd5b6101e7610470565b6040516101f49190611640565b60405180910390f35b61021061020b3660046116aa565b610502565b60405190151581526020016101f4565b61021061022e3660046116d4565b60096020526000908152604090205460ff1681565b6002545b6040519081526020016101f4565b61025d61051c565b6040516101f491906116f6565b610210610278366004611742565b61057d565b600654610290906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b604051601281526020016101f4565b6102106102c53660046116aa565b6105a1565b6102dd6102d836600461177f565b6105e0565b005b6102476102ed3660046116d4565b6001600160a01b031660009081526020819052604090205490565b6102dd6105ed565b6102dd61031e3660046116aa565b610601565b6102dd6103313660046117e4565b61061a565b6102dd6106f7565b6005546001600160a01b0316610290565b6101e7610758565b61024760075481565b6102dd61036e36600461177f565b610767565b6102106103813660046116aa565b6107c6565b61025d610870565b61021061039c3660046116aa565b6108d0565b6102dd6103af3660046116d4565b6108de565b6102dd6103c2366004611855565b610a69565b60055461021090600160a01b900460ff1681565b6102476103e9366004611891565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102106104223660046116d4565b60086020526000908152604090205460ff1681565b6102dd6104453660046116d4565b610c8d565b6102dd6104583660046116d4565b610d71565b6102dd61046b3660046116d4565b610dfe565b60606003805461047f906118c4565b80601f01602080910402602001604051908101604052809291908181526020018280546104ab906118c4565b80156104f85780601f106104cd576101008083540402835291602001916104f8565b820191906000526020600020905b8154815290600101906020018083116104db57829003601f168201915b5050505050905090565b600033610510818585610e7e565b60019150505b92915050565b6060600a8054806020026020016040519081016040528092919081815260200182805480156104f857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610556575050505050905090565b60003361058b858285610fd7565b610596858585611069565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061051090829086906105db908790611914565b610e7e565b6105ea3382611246565b50565b6105f56113a7565b6105ff6000611401565b565b61060c823383610fd7565b6106168282611246565b5050565b8281146106945760405162461bcd60e51b815260206004820152602660248201527f526563697069656e747320616e6420616d6f756e7473206c656e677468206d6960448201527f736d61746368000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60005b838110156106f0576106e8338686848181106106b5576106b5611927565b90506020020160208101906106ca91906116d4565b8585858181106106dc576106dc611927565b90506020020135611069565b600101610697565b5050505050565b6106ff6113a7565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b1790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b60606004805461047f906118c4565b61076f6113a7565b6103e88111156107c15760405162461bcd60e51b815260206004820152601a60248201527f53656c6c207461782063616e6e6f742065786365656420313025000000000000604482015260640161068b565b600755565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156108635760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161068b565b6105968286868403610e7e565b6060600b8054806020026020016040519081016040528092919081815260200182805480156104f8576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610556575050505050905090565b600033610510818585611069565b6108e66113a7565b6001600160a01b03811660009081526008602052604090205460ff1661094e5760405162461bcd60e51b815260206004820152601f60248201527f41646472657373206973206e6f742061206c697175696469747920706f6f6c00604482015260640161068b565b6001600160a01b0381166000908152600860205260408120805460ff191690555b600a5481101561061657816001600160a01b0316600a828154811061099657610996611927565b6000918252602090912001546001600160a01b031603610a6157600a80546109c09060019061193d565b815481106109d0576109d0611927565b600091825260209091200154600a80546001600160a01b0390921691839081106109fc576109fc611927565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600a805480610a3b57610a3b611950565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b60010161096f565b610a716113a7565b6001600160a01b038216610ac75760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420616464726573730000000000000000000000000000000000604482015260640161068b565b6001600160a01b0382166000908152600960205260409020805460ff19168215801591909117909155610b4457600b80546001810182556000919091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b038416179055610c44565b60005b600b54811015610c4257826001600160a01b0316600b8281548110610b6e57610b6e611927565b6000918252602090912001546001600160a01b031603610c3a57600b8054610b989060019061193d565b81548110610ba857610ba8611927565b600091825260209091200154600b80546001600160a01b039092169183908110610bd457610bd4611927565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600b805480610c1357610c13611950565b600082815260209020810160001990810180546001600160a01b0319169055019055610c42565b600101610b47565b505b816001600160a01b03167ff683c34ac024bc3882d7544ca8f618433ba84e43d5a01ae90fadc141c45f2c5982604051610c81911515815260200190565b60405180910390a25050565b610c956113a7565b6001600160a01b038116610ceb5760405162461bcd60e51b815260206004820152601e60248201527f496e76616c6964206c697175696469747920706f6f6c20616464726573730000604482015260640161068b565b6001600160a01b03811660009081526008602052604090205460ff166105ea576001600160a01b03166000818152600860205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b610d796113a7565b6001600160a01b038116610df55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161068b565b6105ea81611401565b610e066113a7565b6001600160a01b038116610e5c5760405162461bcd60e51b815260206004820152601260248201527f496e76616c6964207461782077616c6c65740000000000000000000000000000604482015260640161068b565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610ef95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b038216610f755760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461106357818110156110565760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161068b565b6110638484848403610e7e565b50505050565b600554600160a01b900460ff166110ef576005546001600160a01b03848116911614806110a357506005546001600160a01b038381169116145b6110ef5760405162461bcd60e51b815260206004820152601560248201527f54726164696e67206973206e6f74206163746976650000000000000000000000604482015260640161068b565b600554600090600160a01b900460ff16801561111557506006546001600160a01b031615155b801561112357506000600754115b801561114857506001600160a01b03841660009081526009602052604090205460ff16155b801561116d57506001600160a01b03831660009081526009602052604090205460ff16155b801561119157506001600160a01b03831660009081526008602052604090205460ff165b1561123b57612710600754836111a79190611966565b6111b39061270f611914565b6111bd919061197d565b6006549091506111d89085906001600160a01b031683611069565b826001600160a01b0316846001600160a01b03167f4b9a052bbc5867cd575ea66f9486d08c22080f51cb61056967ab532b9d550cf18484604051611226929190918252602082015260400190565b60405180910390a3611238818361193d565b91505b611063848484611453565b6001600160a01b0382166112c25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b038216600090815260208190526040902054818110156113515760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610fca565b6005546001600160a01b031633146105ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166114cf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b03821661154b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b038316600090815260208190526040902054818110156115da5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611063565b602081526000825180602084015260005b8181101561166e5760208186018101516040868401015201611651565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146116a557600080fd5b919050565b600080604083850312156116bd57600080fd5b6116c68361168e565b946020939093013593505050565b6000602082840312156116e657600080fd5b6116ef8261168e565b9392505050565b602080825282518282018190526000918401906040840190835b818110156117375783516001600160a01b0316835260209384019390920191600101611710565b509095945050505050565b60008060006060848603121561175757600080fd5b6117608461168e565b925061176e6020850161168e565b929592945050506040919091013590565b60006020828403121561179157600080fd5b5035919050565b60008083601f8401126117aa57600080fd5b50813567ffffffffffffffff8111156117c257600080fd5b6020830191508360208260051b85010111156117dd57600080fd5b9250929050565b600080600080604085870312156117fa57600080fd5b843567ffffffffffffffff81111561181157600080fd5b61181d87828801611798565b909550935050602085013567ffffffffffffffff81111561183d57600080fd5b61184987828801611798565b95989497509550505050565b6000806040838503121561186857600080fd5b6118718361168e565b91506020830135801515811461188657600080fd5b809150509250929050565b600080604083850312156118a457600080fd5b6118ad8361168e565b91506118bb6020840161168e565b90509250929050565b600181811c908216806118d857607f821691505b6020821081036118f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610516576105166118fe565b634e487b7160e01b600052603260045260246000fd5b81810381811115610516576105166118fe565b634e487b7160e01b600052603160045260246000fd5b8082028115828204841417610516576105166118fe565b60008261199a57634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212207a23978ff13aa0a78d2c85cea3603bac36c3bf99ce593c12f9f55c69dc6b69de64736f6c634300081c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063ae22107f116100a2578063e85455d711610071578063e85455d714610414578063ee6a934c14610437578063f2fde38b1461044a578063f700b8491461045d57600080fd5b8063ae22107f146103a1578063b64e3c74146103b4578063bbc0c742146103c7578063dd62ed3e146103db57600080fd5b80639ec4be41116100de5780639ec4be4114610360578063a457c2d714610373578063a6ec2c7314610386578063a9059cbb1461038e57600080fd5b80638da5cb5b1461033e57806395d89b411461034f5780639e7d8d1d1461035757600080fd5b8063313ce5671161017c578063715018a61161014b578063715018a61461030857806379cc67901461031057806388d695b2146103235780638a8c523c1461033657600080fd5b8063313ce567146102a857806339509351146102b757806342966c68146102ca57806370a08231146102df57600080fd5b806318160ddd116101b857806318160ddd146102435780631da0839d1461025557806323b872dd1461026a5780632dc0562d1461027d57600080fd5b806306fdde03146101df578063095ea7b3146101fd57806316c2be6b14610220575b600080fd5b6101e7610470565b6040516101f49190611640565b60405180910390f35b61021061020b3660046116aa565b610502565b60405190151581526020016101f4565b61021061022e3660046116d4565b60096020526000908152604090205460ff1681565b6002545b6040519081526020016101f4565b61025d61051c565b6040516101f491906116f6565b610210610278366004611742565b61057d565b600654610290906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b604051601281526020016101f4565b6102106102c53660046116aa565b6105a1565b6102dd6102d836600461177f565b6105e0565b005b6102476102ed3660046116d4565b6001600160a01b031660009081526020819052604090205490565b6102dd6105ed565b6102dd61031e3660046116aa565b610601565b6102dd6103313660046117e4565b61061a565b6102dd6106f7565b6005546001600160a01b0316610290565b6101e7610758565b61024760075481565b6102dd61036e36600461177f565b610767565b6102106103813660046116aa565b6107c6565b61025d610870565b61021061039c3660046116aa565b6108d0565b6102dd6103af3660046116d4565b6108de565b6102dd6103c2366004611855565b610a69565b60055461021090600160a01b900460ff1681565b6102476103e9366004611891565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102106104223660046116d4565b60086020526000908152604090205460ff1681565b6102dd6104453660046116d4565b610c8d565b6102dd6104583660046116d4565b610d71565b6102dd61046b3660046116d4565b610dfe565b60606003805461047f906118c4565b80601f01602080910402602001604051908101604052809291908181526020018280546104ab906118c4565b80156104f85780601f106104cd576101008083540402835291602001916104f8565b820191906000526020600020905b8154815290600101906020018083116104db57829003601f168201915b5050505050905090565b600033610510818585610e7e565b60019150505b92915050565b6060600a8054806020026020016040519081016040528092919081815260200182805480156104f857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610556575050505050905090565b60003361058b858285610fd7565b610596858585611069565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061051090829086906105db908790611914565b610e7e565b6105ea3382611246565b50565b6105f56113a7565b6105ff6000611401565b565b61060c823383610fd7565b6106168282611246565b5050565b8281146106945760405162461bcd60e51b815260206004820152602660248201527f526563697069656e747320616e6420616d6f756e7473206c656e677468206d6960448201527f736d61746368000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60005b838110156106f0576106e8338686848181106106b5576106b5611927565b90506020020160208101906106ca91906116d4565b8585858181106106dc576106dc611927565b90506020020135611069565b600101610697565b5050505050565b6106ff6113a7565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b1790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b60606004805461047f906118c4565b61076f6113a7565b6103e88111156107c15760405162461bcd60e51b815260206004820152601a60248201527f53656c6c207461782063616e6e6f742065786365656420313025000000000000604482015260640161068b565b600755565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156108635760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161068b565b6105968286868403610e7e565b6060600b8054806020026020016040519081016040528092919081815260200182805480156104f8576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610556575050505050905090565b600033610510818585611069565b6108e66113a7565b6001600160a01b03811660009081526008602052604090205460ff1661094e5760405162461bcd60e51b815260206004820152601f60248201527f41646472657373206973206e6f742061206c697175696469747920706f6f6c00604482015260640161068b565b6001600160a01b0381166000908152600860205260408120805460ff191690555b600a5481101561061657816001600160a01b0316600a828154811061099657610996611927565b6000918252602090912001546001600160a01b031603610a6157600a80546109c09060019061193d565b815481106109d0576109d0611927565b600091825260209091200154600a80546001600160a01b0390921691839081106109fc576109fc611927565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600a805480610a3b57610a3b611950565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b60010161096f565b610a716113a7565b6001600160a01b038216610ac75760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420616464726573730000000000000000000000000000000000604482015260640161068b565b6001600160a01b0382166000908152600960205260409020805460ff19168215801591909117909155610b4457600b80546001810182556000919091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b038416179055610c44565b60005b600b54811015610c4257826001600160a01b0316600b8281548110610b6e57610b6e611927565b6000918252602090912001546001600160a01b031603610c3a57600b8054610b989060019061193d565b81548110610ba857610ba8611927565b600091825260209091200154600b80546001600160a01b039092169183908110610bd457610bd4611927565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600b805480610c1357610c13611950565b600082815260209020810160001990810180546001600160a01b0319169055019055610c42565b600101610b47565b505b816001600160a01b03167ff683c34ac024bc3882d7544ca8f618433ba84e43d5a01ae90fadc141c45f2c5982604051610c81911515815260200190565b60405180910390a25050565b610c956113a7565b6001600160a01b038116610ceb5760405162461bcd60e51b815260206004820152601e60248201527f496e76616c6964206c697175696469747920706f6f6c20616464726573730000604482015260640161068b565b6001600160a01b03811660009081526008602052604090205460ff166105ea576001600160a01b03166000818152600860205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b610d796113a7565b6001600160a01b038116610df55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161068b565b6105ea81611401565b610e066113a7565b6001600160a01b038116610e5c5760405162461bcd60e51b815260206004820152601260248201527f496e76616c6964207461782077616c6c65740000000000000000000000000000604482015260640161068b565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610ef95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b038216610f755760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461106357818110156110565760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161068b565b6110638484848403610e7e565b50505050565b600554600160a01b900460ff166110ef576005546001600160a01b03848116911614806110a357506005546001600160a01b038381169116145b6110ef5760405162461bcd60e51b815260206004820152601560248201527f54726164696e67206973206e6f74206163746976650000000000000000000000604482015260640161068b565b600554600090600160a01b900460ff16801561111557506006546001600160a01b031615155b801561112357506000600754115b801561114857506001600160a01b03841660009081526009602052604090205460ff16155b801561116d57506001600160a01b03831660009081526009602052604090205460ff16155b801561119157506001600160a01b03831660009081526008602052604090205460ff165b1561123b57612710600754836111a79190611966565b6111b39061270f611914565b6111bd919061197d565b6006549091506111d89085906001600160a01b031683611069565b826001600160a01b0316846001600160a01b03167f4b9a052bbc5867cd575ea66f9486d08c22080f51cb61056967ab532b9d550cf18484604051611226929190918252602082015260400190565b60405180910390a3611238818361193d565b91505b611063848484611453565b6001600160a01b0382166112c25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b038216600090815260208190526040902054818110156113515760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610fca565b6005546001600160a01b031633146105ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161068b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166114cf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b03821661154b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b038316600090815260208190526040902054818110156115da5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161068b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611063565b602081526000825180602084015260005b8181101561166e5760208186018101516040868401015201611651565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146116a557600080fd5b919050565b600080604083850312156116bd57600080fd5b6116c68361168e565b946020939093013593505050565b6000602082840312156116e657600080fd5b6116ef8261168e565b9392505050565b602080825282518282018190526000918401906040840190835b818110156117375783516001600160a01b0316835260209384019390920191600101611710565b509095945050505050565b60008060006060848603121561175757600080fd5b6117608461168e565b925061176e6020850161168e565b929592945050506040919091013590565b60006020828403121561179157600080fd5b5035919050565b60008083601f8401126117aa57600080fd5b50813567ffffffffffffffff8111156117c257600080fd5b6020830191508360208260051b85010111156117dd57600080fd5b9250929050565b600080600080604085870312156117fa57600080fd5b843567ffffffffffffffff81111561181157600080fd5b61181d87828801611798565b909550935050602085013567ffffffffffffffff81111561183d57600080fd5b61184987828801611798565b95989497509550505050565b6000806040838503121561186857600080fd5b6118718361168e565b91506020830135801515811461188657600080fd5b809150509250929050565b600080604083850312156118a457600080fd5b6118ad8361168e565b91506118bb6020840161168e565b90509250929050565b600181811c908216806118d857607f821691505b6020821081036118f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610516576105166118fe565b634e487b7160e01b600052603260045260246000fd5b81810381811115610516576105166118fe565b634e487b7160e01b600052603160045260246000fd5b8082028115828204841417610516576105166118fe565b60008261199a57634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212207a23978ff13aa0a78d2c85cea3603bac36c3bf99ce593c12f9f55c69dc6b69de64736f6c634300081c0033

Deployed Bytecode Sourcemap

21878:5507:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9343:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11769:226;;;;;;:::i;:::-;;:::i;:::-;;;1217:14:1;;1210:22;1192:41;;1180:2;1165:18;11769:226:0;1052:187:1;22227:43:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10472:108;10560:12;;10472:108;;;1581:25:1;;;1569:2;1554:18;10472:108:0;1435:177:1;22732:158:0;;;:::i;:::-;;;;;;;:::i;12575:295::-;;;;;;:::i;:::-;;:::i;21991:24::-;;;;;-1:-1:-1;;;;;21991:24:0;;;;;;-1:-1:-1;;;;;2825:55:1;;;2807:74;;2795:2;2780:18;21991:24:0;2661:226:1;10314:93:0;;;10397:2;3034:36:1;;3022:2;3007:18;10314:93:0;2892:184:1;13279:263:0;;;;;;:::i;:::-;;:::i;21266:91::-;;;;;;:::i;:::-;;:::i;:::-;;10643:143;;;;;;:::i;:::-;-1:-1:-1;;;;;10760:18:0;10733:7;10760:18;;;;;;;;;;;;10643:143;2976:103;;;:::i;21676:164::-;;;;;;:::i;:::-;;:::i;25844:393::-;;;;;;:::i;:::-;;:::i;23771:115::-;;;:::i;2335:87::-;2408:6;;-1:-1:-1;;;;;2408:6:0;2335:87;;9562:104;;;:::i;22054:36::-;;;;;;23451:253;;;;;;:::i;:::-;;:::i;14045:498::-;;;;;;:::i;:::-;;:::i;22971:118::-;;;:::i;10992:218::-;;;;;;:::i;:::-;;:::i;24351:575::-;;;;;;:::i;:::-;;:::i;25006:751::-;;;;;;:::i;:::-;;:::i;21926:33::-;;;;;-1:-1:-1;;;21926:33:0;;;;;;11273:176;;;;;;:::i;:::-;-1:-1:-1;;;;;11414:18:0;;;11387:7;11414:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11273:176;22146:47;;;;;;:::i;:::-;;;;;;;;;;;;;;;;23959:310;;;;;;:::i;:::-;;:::i;3234:238::-;;;;;;:::i;:::-;;:::i;23163:175::-;;;;;;:::i;:::-;;:::i;9343:100::-;9397:13;9430:5;9423:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9343:100;:::o;11769:226::-;11877:4;931:10;11933:32;931:10;11949:7;11958:6;11933:8;:32::i;:::-;11983:4;11976:11;;;11769:226;;;;;:::o;22732:158::-;22819:16;22860:22;22853:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22853:29:0;;;;;;;;;;;;;;;;;;;;;;22732:158;:::o;12575:295::-;12706:4;931:10;12764:38;12780:4;931:10;12795:6;12764:15;:38::i;:::-;12813:27;12823:4;12829:2;12833:6;12813:9;:27::i;:::-;-1:-1:-1;12858:4:0;;12575:295;-1:-1:-1;;;;12575:295:0:o;13279:263::-;931:10;13392:4;11414:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11414:27:0;;;;;;;;;;13392:4;;931:10;13448:64;;931:10;;11414:27;;13473:38;;13501:10;;13473:38;:::i;:::-;13448:8;:64::i;21266:91::-;21322:27;931:10;21342:6;21322:5;:27::i;:::-;21266:91;:::o;2976:103::-;2221:13;:11;:13::i;:::-;3041:30:::1;3068:1;3041:18;:30::i;:::-;2976:103::o:0;21676:164::-;21753:46;21769:7;931:10;21792:6;21753:15;:46::i;:::-;21810:22;21816:7;21825:6;21810:5;:22::i;:::-;21676:164;;:::o;25844:393::-;25993:35;;;25971:123;;;;-1:-1:-1;;;25971:123:0;;6037:2:1;25971:123:0;;;6019:21:1;6076:2;6056:18;;;6049:30;6115:34;6095:18;;;6088:62;6186:8;6166:18;;;6159:36;6212:19;;25971:123:0;;;;;;;;;26112:9;26107:123;26127:21;;;26107:123;;;26170:48;26180:10;26192;;26203:1;26192:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;26207:7;;26215:1;26207:10;;;;;;;:::i;:::-;;;;;;;26170:9;:48::i;:::-;26150:3;;26107:123;;;;25844:393;;;;:::o;23771:115::-;2221:13;:11;:13::i;:::-;23826::::1;:20:::0;;;::::1;-1:-1:-1::0;;;23826:20:0::1;::::0;;23862:16:::1;::::0;::::1;::::0;23826:20;;23862:16:::1;23771:115::o:0;9562:104::-;9618:13;9651:7;9644:14;;;;;:::i;23451:253::-;2221:13;:11;:13::i;:::-;23585:4:::1;23563:18;:26;;23555:65;;;::::0;-1:-1:-1;;;23555:65:0;;6633:2:1;23555:65:0::1;::::0;::::1;6615:21:1::0;6672:2;6652:18;;;6645:30;6711:28;6691:18;;;6684:56;6757:18;;23555:65:0::1;6431:350:1::0;23555:65:0::1;23658:17;:38:::0;23451:253::o;14045:498::-;931:10;14163:4;11414:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11414:27:0;;;;;;;;;;14163:4;;931:10;14324:15;14304:16;:35;;14282:122;;;;-1:-1:-1;;;14282:122:0;;6988:2:1;14282:122:0;;;6970:21:1;7027:2;7007:18;;;7000:30;7066:34;7046:18;;;7039:62;7137:7;7117:18;;;7110:35;7162:19;;14282:122:0;6786:401:1;14282:122:0;14440:60;14449:5;14456:7;14484:15;14465:16;:34;14440:8;:60::i;22971:118::-;23027:16;23063:18;23056:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23056:25:0;;;;;;;;;;;;;;;;;;;;;;22971:118;:::o;10992:218::-;11096:4;931:10;11152:28;931:10;11169:2;11173:6;11152:9;:28::i;24351:575::-;2221:13;:11;:13::i;:::-;-1:-1:-1;;;;;24438:27:0;::::1;;::::0;;;:15:::1;:27;::::0;;;;;::::1;;24430:71;;;::::0;-1:-1:-1;;;24430:71:0;;7394:2:1;24430:71:0::1;::::0;::::1;7376:21:1::0;7433:2;7413:18;;;7406:30;7472:33;7452:18;;;7445:61;7523:18;;24430:71:0::1;7192:355:1::0;24430:71:0::1;-1:-1:-1::0;;;;;24519:27:0;::::1;;::::0;;;:15:::1;:27;::::0;;;;24512:34;;-1:-1:-1;;24512:34:0::1;::::0;;24557:362:::1;24581:22;:29:::0;24577:33;::::1;24557:362;;;24665:10;-1:-1:-1::0;;;;;24636:39:0::1;:22;24659:1;24636:25;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;24636:25:0::1;:39:::0;24632:276:::1;;24724:22;24769:29:::0;;:33:::1;::::0;24801:1:::1;::::0;24769:33:::1;:::i;:::-;24724:97;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;24696:22:::1;:25:::0;;-1:-1:-1;;;;;24724:97:0;;::::1;::::0;24719:1;;24696:25;::::1;;;;;:::i;:::-;;;;;;;;;:125;;;;;-1:-1:-1::0;;;;;24696:125:0::1;;;;;-1:-1:-1::0;;;;;24696:125:0::1;;;;;;24840:22;:28;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;24840:28:0;;;;;-1:-1:-1;;;;;;24840:28:0::1;::::0;;;;;21676:164;;:::o;24632:276::-:1;24612:3;;24557:362;;25006:751:::0;2221:13;:11;:13::i;:::-;-1:-1:-1;;;;;25126:22:0;::::1;25118:50;;;::::0;-1:-1:-1;;;25118:50:0;;8076:2:1;25118:50:0::1;::::0;::::1;8058:21:1::0;8115:2;8095:18;;;8088:30;8154:17;8134:18;;;8127:45;8189:18;;25118:50:0::1;7874:339:1::0;25118:50:0::1;-1:-1:-1::0;;;;;25179:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;:31;;-1:-1:-1;;25179:31:0::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;;25223:473:::1;;25251:18;:33:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;25251:33:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;25251:33:0::1;-1:-1:-1::0;;;;;25251:33:0;::::1;;::::0;;25223:473:::1;;;25322:9;25317:368;25341:18;:25:::0;25337:29;::::1;25317:368;;;25421:8;-1:-1:-1::0;;;;;25396:33:0::1;:18;25415:1;25396:21;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;25396:21:0::1;:33:::0;25392:278:::1;;25478:18;25523:25:::0;;:29:::1;::::0;25551:1:::1;::::0;25523:29:::1;:::i;:::-;25478:97;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;25454:18:::1;:21:::0;;-1:-1:-1;;;;;25478:97:0;;::::1;::::0;25473:1;;25454:21;::::1;;;;;:::i;:::-;;;;;;;;;:121;;;;;-1:-1:-1::0;;;;;25454:121:0::1;;;;;-1:-1:-1::0;;;;;25454:121:0::1;;;;;;25598:18;:24;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;25598:24:0;;;;;-1:-1:-1;;;;;;25598:24:0::1;::::0;;;;;25645:5:::1;;25392:278;25368:3;;25317:368;;;;25223:473;25731:8;-1:-1:-1::0;;;;;25711:38:0::1;;25741:7;25711:38;;;;1217:14:1::0;1210:22;1192:41;;1180:2;1165:18;;1052:187;25711:38:0::1;;;;;;;;25006:751:::0;;:::o;23959:310::-;2221:13;:11;:13::i;:::-;-1:-1:-1;;;;;24043:24:0;::::1;24035:67;;;::::0;-1:-1:-1;;;24035:67:0;;8420:2:1;24035:67:0::1;::::0;::::1;8402:21:1::0;8459:2;8439:18;;;8432:30;8498:32;8478:18;;;8471:60;8548:18;;24035:67:0::1;8218:354:1::0;24035:67:0::1;-1:-1:-1::0;;;;;24118:27:0;::::1;;::::0;;;:15:::1;:27;::::0;;;;;::::1;;24113:149;;-1:-1:-1::0;;;;;24162:27:0::1;;::::0;;;:15:::1;:27;::::0;;;;:34;;-1:-1:-1;;24162:34:0::1;24192:4;24162:34:::0;;::::1;::::0;;;24211:22:::1;:39:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;24211:39:0::1;::::0;;::::1;::::0;;23959:310::o;3234:238::-;2221:13;:11;:13::i;:::-;-1:-1:-1;;;;;3337:22:0;::::1;3315:110;;;::::0;-1:-1:-1;;;3315:110:0;;8779:2:1;3315:110:0::1;::::0;::::1;8761:21:1::0;8818:2;8798:18;;;8791:30;8857:34;8837:18;;;8830:62;8928:8;8908:18;;;8901:36;8954:19;;3315:110:0::1;8577:402:1::0;3315:110:0::1;3436:28;3455:8;3436:18;:28::i;23163:175::-:0;2221:13;:11;:13::i;:::-;-1:-1:-1;;;;;23250:24:0;::::1;23242:55;;;::::0;-1:-1:-1;;;23242:55:0;;9186:2:1;23242:55:0::1;::::0;::::1;9168:21:1::0;9225:2;9205:18;;;9198:30;9264:20;9244:18;;;9237:48;9302:18;;23242:55:0::1;8984:342:1::0;23242:55:0::1;23308:9;:22:::0;;-1:-1:-1;;;;;;23308:22:0::1;-1:-1:-1::0;;;;;23308:22:0;;;::::1;::::0;;;::::1;::::0;;23163:175::o;18171:380::-;-1:-1:-1;;;;;18307:19:0;;18299:68;;;;-1:-1:-1;;;18299:68:0;;9533:2:1;18299:68:0;;;9515:21:1;9572:2;9552:18;;;9545:30;9611:34;9591:18;;;9584:62;9682:6;9662:18;;;9655:34;9706:19;;18299:68:0;9331:400:1;18299:68:0;-1:-1:-1;;;;;18386:21:0;;18378:68;;;;-1:-1:-1;;;18378:68:0;;9938:2:1;18378:68:0;;;9920:21:1;9977:2;9957:18;;;9950:30;10016:34;9996:18;;;9989:62;10087:4;10067:18;;;10060:32;10109:19;;18378:68:0;9736:398:1;18378:68:0;-1:-1:-1;;;;;18459:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18511:32;;1581:25:1;;;18511:32:0;;1554:18:1;18511:32:0;;;;;;;;18171:380;;;:::o;18842:502::-;-1:-1:-1;;;;;11414:18:0;;;18977:24;11414:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;19044:37:0;;19040:297;;19144:6;19124:16;:26;;19098:117;;;;-1:-1:-1;;;19098:117:0;;10341:2:1;19098:117:0;;;10323:21:1;10380:2;10360:18;;;10353:30;10419:31;10399:18;;;10392:59;10468:18;;19098:117:0;10139:353:1;19098:117:0;19259:51;19268:5;19275:7;19303:6;19284:16;:25;19259:8;:51::i;:::-;18966:378;18842:502;;;:::o;26325:811::-;26454:13;;-1:-1:-1;;;26454:13:0;;;;26449:113;;2408:6;;-1:-1:-1;;;;;26492:15:0;;;2408:6;;26492:15;;:32;;-1:-1:-1;2408:6:0;;-1:-1:-1;;;;;26511:13:0;;;2408:6;;26511:13;26492:32;26484:66;;;;-1:-1:-1;;;26484:66:0;;10699:2:1;26484:66:0;;;10681:21:1;10738:2;10718:18;;;10711:30;10777:23;10757:18;;;10750:51;10818:18;;26484:66:0;10497:345:1;26484:66:0;26626:13;;26574:17;;-1:-1:-1;;;26626:13:0;;;;:53;;;;-1:-1:-1;26656:9:0;;-1:-1:-1;;;;;26656:9:0;:23;;26626:53;:91;;;;;26716:1;26696:17;;:21;26626:91;:126;;;;-1:-1:-1;;;;;;26735:17:0;;;;;;:11;:17;;;;;;;;26734:18;26626:126;:159;;;;-1:-1:-1;;;;;;26770:15:0;;;;;;:11;:15;;;;;;;;26769:16;26626:159;:195;;;;-1:-1:-1;;;;;;26802:19:0;;;;;;:15;:19;;;;;;;;26626:195;26608:475;;;26898:5;26870:17;;26861:6;:26;;;;:::i;:::-;:33;;26890:4;26861:33;:::i;:::-;26860:43;;;;:::i;:::-;26957:9;;26848:55;;-1:-1:-1;26941:37:0;;26951:4;;-1:-1:-1;;;;;26957:9:0;26848:55;26941:9;:37::i;:::-;27015:2;-1:-1:-1;;;;;26998:39:0;27009:4;-1:-1:-1;;;;;26998:39:0;;27019:6;27027:9;26998:39;;;;;;11473:25:1;;;11529:2;11514:18;;11507:34;11461:2;11446:18;;11299:248;26998:39:0;;;;;;;;27052:19;27062:9;27052:19;;:::i;:::-;;;26608:475;27095:33;27111:4;27117:2;27121:6;27095:15;:33::i;17058:675::-;-1:-1:-1;;;;;17142:21:0;;17134:67;;;;-1:-1:-1;;;17134:67:0;;11754:2:1;17134:67:0;;;11736:21:1;11793:2;11773:18;;;11766:30;11832:34;11812:18;;;11805:62;11903:3;11883:18;;;11876:31;11924:19;;17134:67:0;11552:397:1;17134:67:0;-1:-1:-1;;;;;17301:18:0;;17276:22;17301:18;;;;;;;;;;;17338:24;;;;17330:71;;;;-1:-1:-1;;;17330:71:0;;12156:2:1;17330:71:0;;;12138:21:1;12195:2;12175:18;;;12168:30;12234:34;12214:18;;;12207:62;12305:4;12285:18;;;12278:32;12327:19;;17330:71:0;11954:398:1;17330:71:0;-1:-1:-1;;;;;17437:18:0;;:9;:18;;;;;;;;;;;17458:23;;;17437:44;;17576:12;:22;;;;;;;17627:37;1581:25:1;;;17437:9:0;;:18;17627:37;;1554:18:1;17627:37:0;1435:177:1;2500:132:0;2408:6;;-1:-1:-1;;;;;2408:6:0;931:10;2564:23;2556:68;;;;-1:-1:-1;;;2556:68:0;;12559:2:1;2556:68:0;;;12541:21:1;;;12578:18;;;12571:30;12637:34;12617:18;;;12610:62;12689:18;;2556:68:0;12357:356:1;3632:191:0;3725:6;;;-1:-1:-1;;;;;3742:17:0;;;-1:-1:-1;;;;;;3742:17:0;;;;;;;3775:40;;3725:6;;;3742:17;3725:6;;3775:40;;3706:16;;3775:40;3695:128;3632:191;:::o;15013:877::-;-1:-1:-1;;;;;15144:18:0;;15136:68;;;;-1:-1:-1;;;15136:68:0;;12920:2:1;15136:68:0;;;12902:21:1;12959:2;12939:18;;;12932:30;12998:34;12978:18;;;12971:62;13069:7;13049:18;;;13042:35;13094:19;;15136:68:0;12718:401:1;15136:68:0;-1:-1:-1;;;;;15223:16:0;;15215:64;;;;-1:-1:-1;;;15215:64:0;;13326:2:1;15215:64:0;;;13308:21:1;13365:2;13345:18;;;13338:30;13404:34;13384:18;;;13377:62;13475:5;13455:18;;;13448:33;13498:19;;15215:64:0;13124:399:1;15215:64:0;-1:-1:-1;;;;;15365:15:0;;15343:19;15365:15;;;;;;;;;;;15413:21;;;;15391:109;;;;-1:-1:-1;;;15391:109:0;;13730:2:1;15391:109:0;;;13712:21:1;13769:2;13749:18;;;13742:30;13808:34;13788:18;;;13781:62;13879:8;13859:18;;;13852:36;13905:19;;15391:109:0;13528:402:1;15391:109:0;-1:-1:-1;;;;;15536:15:0;;;:9;:15;;;;;;;;;;;15554:20;;;15536:38;;15754:13;;;;;;;;;;:23;;;;;;15806:26;;1581:25:1;;;15754:13:0;;15806:26;;1554:18:1;15806:26:0;;;;;;;15845:37;17058:675;14:527:1;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;263:1;273:140;287:6;284:1;281:13;273:140;;;398:2;382:14;;;378:23;;372:30;367:2;348:17;;;344:26;337:66;302:10;273:140;;;277:3;462:1;457:2;448:6;437:9;433:22;429:31;422:42;532:2;525;521:7;516:2;508:6;504:15;500:29;489:9;485:45;481:54;473:62;;;14:527;;;;:::o;546:196::-;614:20;;-1:-1:-1;;;;;663:54:1;;653:65;;643:93;;732:1;729;722:12;643:93;546:196;;;:::o;747:300::-;815:6;823;876:2;864:9;855:7;851:23;847:32;844:52;;;892:1;889;882:12;844:52;915:29;934:9;915:29;:::i;:::-;905:39;1013:2;998:18;;;;985:32;;-1:-1:-1;;;747:300:1:o;1244:186::-;1303:6;1356:2;1344:9;1335:7;1331:23;1327:32;1324:52;;;1372:1;1369;1362:12;1324:52;1395:29;1414:9;1395:29;:::i;:::-;1385:39;1244:186;-1:-1:-1;;;1244:186:1:o;1617:660::-;1807:2;1819:21;;;1889:13;;1792:18;;;1911:22;;;1759:4;;1990:15;;;1964:2;1949:18;;;1759:4;2033:218;2047:6;2044:1;2041:13;2033:218;;;2112:13;;-1:-1:-1;;;;;2108:62:1;2096:75;;2200:2;2226:15;;;;2191:12;;;;2069:1;2062:9;2033:218;;;-1:-1:-1;2268:3:1;;1617:660;-1:-1:-1;;;;;1617:660:1:o;2282:374::-;2359:6;2367;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2282:374;;2505:48;;-1:-1:-1;;;2622:2:1;2607:18;;;;2594:32;;2282:374::o;3081:226::-;3140:6;3193:2;3181:9;3172:7;3168:23;3164:32;3161:52;;;3209:1;3206;3199:12;3161:52;-1:-1:-1;3254:23:1;;3081:226;-1:-1:-1;3081:226:1:o;3312:367::-;3375:8;3385:6;3439:3;3432:4;3424:6;3420:17;3416:27;3406:55;;3457:1;3454;3447:12;3406:55;-1:-1:-1;3480:20:1;;3523:18;3512:30;;3509:50;;;3555:1;3552;3545:12;3509:50;3592:4;3584:6;3580:17;3568:29;;3652:3;3645:4;3635:6;3632:1;3628:14;3620:6;3616:27;3612:38;3609:47;3606:67;;;3669:1;3666;3659:12;3606:67;3312:367;;;;;:::o;3684:768::-;3806:6;3814;3822;3830;3883:2;3871:9;3862:7;3858:23;3854:32;3851:52;;;3899:1;3896;3889:12;3851:52;3939:9;3926:23;3972:18;3964:6;3961:30;3958:50;;;4004:1;4001;3994:12;3958:50;4043:70;4105:7;4096:6;4085:9;4081:22;4043:70;:::i;:::-;4132:8;;-1:-1:-1;4017:96:1;-1:-1:-1;;4220:2:1;4205:18;;4192:32;4249:18;4236:32;;4233:52;;;4281:1;4278;4271:12;4233:52;4320:72;4384:7;4373:8;4362:9;4358:24;4320:72;:::i;:::-;3684:768;;;;-1:-1:-1;4411:8:1;-1:-1:-1;;;;3684:768:1:o;4457:347::-;4522:6;4530;4583:2;4571:9;4562:7;4558:23;4554:32;4551:52;;;4599:1;4596;4589:12;4551:52;4622:29;4641:9;4622:29;:::i;:::-;4612:39;;4701:2;4690:9;4686:18;4673:32;4748:5;4741:13;4734:21;4727:5;4724:32;4714:60;;4770:1;4767;4760:12;4714:60;4793:5;4783:15;;;4457:347;;;;;:::o;4809:260::-;4877:6;4885;4938:2;4926:9;4917:7;4913:23;4909:32;4906:52;;;4954:1;4951;4944:12;4906:52;4977:29;4996:9;4977:29;:::i;:::-;4967:39;;5025:38;5059:2;5048:9;5044:18;5025:38;:::i;:::-;5015:48;;4809:260;;;;;:::o;5074:437::-;5153:1;5149:12;;;;5196;;;5217:61;;5271:4;5263:6;5259:17;5249:27;;5217:61;5324:2;5316:6;5313:14;5293:18;5290:38;5287:218;;-1:-1:-1;;;5358:1:1;5351:88;5462:4;5459:1;5452:15;5490:4;5487:1;5480:15;5287:218;;5074:437;;;:::o;5516:184::-;-1:-1:-1;;;5565:1:1;5558:88;5665:4;5662:1;5655:15;5689:4;5686:1;5679:15;5705:125;5770:9;;;5791:10;;;5788:36;;;5804:18;;:::i;6242:184::-;-1:-1:-1;;;6291:1:1;6284:88;6391:4;6388:1;6381:15;6415:4;6412:1;6405:15;7552:128;7619:9;;;7640:11;;;7637:37;;;7654:18;;:::i;7685:184::-;-1:-1:-1;;;7734:1:1;7727:88;7834:4;7831:1;7824:15;7858:4;7855:1;7848:15;10847:168;10920:9;;;10951;;10968:15;;;10962:22;;10948:37;10938:71;;10989:18;;:::i;11020:274::-;11060:1;11086;11076:189;;-1:-1:-1;;;11118:1:1;11111:88;11222:4;11219:1;11212:15;11250:4;11247:1;11240:15;11076:189;-1:-1:-1;11279:9:1;;11020:274::o

Swarm Source

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