BNB Price: $645.48 (+2.72%)
 

Overview

Max Total Supply

1,96748SP

Holders

1,960

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Filtered by Token Holder
Fake_Phishing1068487
Balance
1 48SP

Value
$0.00
0xE938A7C5320746496620d6F49D6b492a72A0Bf4f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
SoulPoint_48Club

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: SoulPoint_48Club.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <=0.8.20;

import "./ERC20.sol";
import "./Ownable.sol";

contract Calculator {
    function getPoint(address user) external view returns (uint256) {}
}

contract SoulPoint_48Club is ERC20, Ownable(msg.sender) {
    constructor() ERC20("48SoulPoint", "48SP") {}

    uint256 internal maxHolding = 1;
    mapping(address => bool) public isMember;
    address[] internal _members;
    Calculator internal calculator;

    function getPoint(address account) external view returns (uint256) {
        return calculator.getPoint(account);
    }

    function setCaculator(address _calculator) external onlyOwner {
        calculator = Calculator(_calculator);
    }

    function decimals() public view virtual override returns (uint8) {
        return 0;
    }

    function mint() external {
        address _to = msg.sender;
        require(this.getPoint(_to) > 0, "the minimum soul point allowed is 1");
        _mint(_to, maxHolding);
    }

    function getAllMembers() external view returns (address[] memory) {
        address[] memory members = new address[](_members.length);
        uint256 index = 0;
        for (uint256 i = 0; i < _members.length; i++) {
            if (isMember[_members[i]]) {
                members[index] = _members[i];
                index++;
            }
        }

        return members;
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal virtual override {
        require(
            address(0) == from || address(0) == to,
            "ERC20: transfer is not allowed"
        );

        super._update(from, to, value);
        require(balanceOf(to) <= maxHolding, "Insufficient balance"); // 1 soul per address

        _updateIsMember(to);
        _updateIsMember(from);
    }

    function _updateIsMember(address account) internal {
        if (address(0) != account) {
            if (balanceOf(account) == maxHolding) {
                isMember[account] = true;
                _members.push(account);
            } else {
                isMember[account] = false;
            }
        }
    }
}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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

File 2 of 7: draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 3 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 value
    ) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value,
        bool emitEvent
    ) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 value
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(
                    spender,
                    currentAllowance,
                    value
                );
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

File 4 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

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

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

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

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

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

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

File 5 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";

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

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

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

File 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllMembers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMember","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_calculator","type":"address"}],"name":"setCaculator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160065534801562000015575f80fd5b50336040518060400160405280600b81526020017f3438536f756c506f696e740000000000000000000000000000000000000000008152506040518060400160405280600481526020017f343853500000000000000000000000000000000000000000000000000000000081525081600390816200009491906200045b565b508060049081620000a691906200045b565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200011c575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000113919062000582565b60405180910390fd5b6200012d816200013460201b60201c565b506200059d565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200027357607f821691505b6020821081036200028957620002886200022e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620002ed7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b0565b620002f98683620002b0565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003436200033d620003378462000311565b6200031a565b62000311565b9050919050565b5f819050919050565b6200035e8362000323565b620003766200036d826200034a565b848454620002bc565b825550505050565b5f90565b6200038c6200037e565b6200039981848462000353565b505050565b5b81811015620003c057620003b45f8262000382565b6001810190506200039f565b5050565b601f8211156200040f57620003d9816200028f565b620003e484620002a1565b81016020851015620003f4578190505b6200040c6200040385620002a1565b8301826200039e565b50505b505050565b5f82821c905092915050565b5f620004315f198460080262000414565b1980831691505092915050565b5f6200044b838362000420565b9150826002028217905092915050565b6200046682620001f7565b67ffffffffffffffff81111562000482576200048162000201565b5b6200048e82546200025b565b6200049b828285620003c4565b5f60209050601f831160018114620004d1575f8415620004bc578287015190505b620004c885826200043e565b86555062000537565b601f198416620004e1866200028f565b5f5b828110156200050a57848901518255600182019150602085019450602081019050620004e3565b868310156200052a578489015162000526601f89168262000420565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200056a826200053f565b9050919050565b6200057c816200055e565b82525050565b5f602082019050620005975f83018462000571565b92915050565b611ad480620005ab5f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a230c5241161006f578063a230c52414610295578063a317bfa5146102c5578063a9059cbb146102e1578063dd62ed3e14610311578063f2fde38b1461034157610109565b8063715018a6146102315780637c0f6b351461023b5780638da5cb5b1461025957806395d89b411461027757610109565b806323b872dd116100dc57806323b872dd14610183578063313ce567146101b35780634ff531b6146101d157806370a082311461020157610109565b806306fdde031461010d578063095ea7b31461012b5780631249c58b1461015b57806318160ddd14610165575b5f80fd5b61011561035d565b6040516101229190611438565b60405180910390f35b610145600480360381019061014091906114e9565b6103ed565b6040516101529190611541565b60405180910390f35b61016361040f565b005b61016d6104db565b60405161017a9190611569565b60405180910390f35b61019d60048036038101906101989190611582565b6104e4565b6040516101aa9190611541565b60405180910390f35b6101bb610512565b6040516101c891906115ed565b60405180910390f35b6101eb60048036038101906101e69190611606565b610516565b6040516101f89190611569565b60405180910390f35b61021b60048036038101906102169190611606565b6105b7565b6040516102289190611569565b60405180910390f35b6102396105fc565b005b61024361060f565b60405161025091906116e8565b60405180910390f35b6102616107b0565b60405161026e9190611717565b60405180910390f35b61027f6107d8565b60405161028c9190611438565b60405180910390f35b6102af60048036038101906102aa9190611606565b610868565b6040516102bc9190611541565b60405180910390f35b6102df60048036038101906102da9190611606565b610885565b005b6102fb60048036038101906102f691906114e9565b6108d0565b6040516103089190611541565b60405180910390f35b61032b60048036038101906103269190611730565b6108f2565b6040516103389190611569565b60405180910390f35b61035b60048036038101906103569190611606565b610974565b005b60606003805461036c9061179b565b80601f01602080910402602001604051908101604052809291908181526020018280546103989061179b565b80156103e35780601f106103ba576101008083540402835291602001916103e3565b820191905f5260205f20905b8154815290600101906020018083116103c657829003601f168201915b5050505050905090565b5f806103f76109f8565b90506104048185856109ff565b600191505092915050565b5f3390505f3073ffffffffffffffffffffffffffffffffffffffff16634ff531b6836040518263ffffffff1660e01b815260040161044d9190611717565b602060405180830381865afa158015610468573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061048c91906117df565b116104cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c39061187a565b60405180910390fd5b6104d881600654610a11565b50565b5f600254905090565b5f806104ee6109f8565b90506104fb858285610a90565b610506858585610b22565b60019150509392505050565b5f90565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634ff531b6836040518263ffffffff1660e01b81526004016105719190611717565b602060405180830381865afa15801561058c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105b091906117df565b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610604610c12565b61060d5f610c99565b565b60605f60088054905067ffffffffffffffff81111561063157610630611898565b5b60405190808252806020026020018201604052801561065f5781602001602082028036833780820191505090505b5090505f805b6008805490508110156107a75760075f60088381548110610689576106886118c5565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561079457600881815481106107105761070f6118c5565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838151811061074b5761074a6118c5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505081806107909061191f565b9250505b808061079f9061191f565b915050610665565b50819250505090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107e79061179b565b80601f01602080910402602001604051908101604052809291908181526020018280546108139061179b565b801561085e5780601f106108355761010080835404028352916020019161085e565b820191905f5260205f20905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b6007602052805f5260405f205f915054906101000a900460ff1681565b61088d610c12565b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f806108da6109f8565b90506108e7818585610b22565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61097c610c12565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ec575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109e39190611717565b60405180910390fd5b6109f581610c99565b50565b5f33905090565b610a0c8383836001610d5c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a81575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610a789190611717565b60405180910390fd5b610a8c5f8383610f2b565b5050565b5f610a9b84846108f2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b1c5781811015610b0d578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b0493929190611966565b60405180910390fd5b610b1b84848484035f610d5c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b92575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b899190611717565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c02575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610bf99190611717565b60405180910390fd5b610c0d838383610f2b565b505050565b610c1a6109f8565b73ffffffffffffffffffffffffffffffffffffffff16610c386107b0565b73ffffffffffffffffffffffffffffffffffffffff1614610c9757610c5b6109f8565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c8e9190611717565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610dcc575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610dc39190611717565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e3c575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e339190611717565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610f25578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f1c9190611569565b60405180910390a35b50505050565b8273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff161480610f9057508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff16145b610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc6906119e5565b60405180910390fd5b610fda83838361103e565b600654610fe6836105b7565b1115611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90611a4d565b60405180910390fd5b61103082611257565b61103983611257565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361108e578060025f8282546110829190611a6b565b9250508190555061115c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611117578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161110e93929190611966565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a3578060025f82825403925050819055506111ed565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161124a9190611569565b60405180910390a3505050565b8073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff16146113ab57600654611296826105b7565b0361135557600160075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600881908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506113aa565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b5b50565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113e55780820151818401526020810190506113ca565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61140a826113ae565b61141481856113b8565b93506114248185602086016113c8565b61142d816113f0565b840191505092915050565b5f6020820190508181035f8301526114508184611400565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114858261145c565b9050919050565b6114958161147b565b811461149f575f80fd5b50565b5f813590506114b08161148c565b92915050565b5f819050919050565b6114c8816114b6565b81146114d2575f80fd5b50565b5f813590506114e3816114bf565b92915050565b5f80604083850312156114ff576114fe611458565b5b5f61150c858286016114a2565b925050602061151d858286016114d5565b9150509250929050565b5f8115159050919050565b61153b81611527565b82525050565b5f6020820190506115545f830184611532565b92915050565b611563816114b6565b82525050565b5f60208201905061157c5f83018461155a565b92915050565b5f805f6060848603121561159957611598611458565b5b5f6115a6868287016114a2565b93505060206115b7868287016114a2565b92505060406115c8868287016114d5565b9150509250925092565b5f60ff82169050919050565b6115e7816115d2565b82525050565b5f6020820190506116005f8301846115de565b92915050565b5f6020828403121561161b5761161a611458565b5b5f611628848285016114a2565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6116638161147b565b82525050565b5f611674838361165a565b60208301905092915050565b5f602082019050919050565b5f61169682611631565b6116a0818561163b565b93506116ab8361164b565b805f5b838110156116db5781516116c28882611669565b97506116cd83611680565b9250506001810190506116ae565b5085935050505092915050565b5f6020820190508181035f830152611700818461168c565b905092915050565b6117118161147b565b82525050565b5f60208201905061172a5f830184611708565b92915050565b5f806040838503121561174657611745611458565b5b5f611753858286016114a2565b9250506020611764858286016114a2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117b257607f821691505b6020821081036117c5576117c461176e565b5b50919050565b5f815190506117d9816114bf565b92915050565b5f602082840312156117f4576117f3611458565b5b5f611801848285016117cb565b91505092915050565b7f746865206d696e696d756d20736f756c20706f696e7420616c6c6f77656420695f8201527f7320310000000000000000000000000000000000000000000000000000000000602082015250565b5f6118646023836113b8565b915061186f8261180a565b604082019050919050565b5f6020820190508181035f83015261189181611858565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611929826114b6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361195b5761195a6118f2565b5b600182019050919050565b5f6060820190506119795f830186611708565b611986602083018561155a565b611993604083018461155a565b949350505050565b7f45524332303a207472616e73666572206973206e6f7420616c6c6f77656400005f82015250565b5f6119cf601e836113b8565b91506119da8261199b565b602082019050919050565b5f6020820190508181035f8301526119fc816119c3565b9050919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f611a376014836113b8565b9150611a4282611a03565b602082019050919050565b5f6020820190508181035f830152611a6481611a2b565b9050919050565b5f611a75826114b6565b9150611a80836114b6565b9250828201905080821115611a9857611a976118f2565b5b9291505056fea2646970667358221220854aa16d9bdb15823197406174aea7211d166a7650d5bbcd832d1a85762c1eb464736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a230c5241161006f578063a230c52414610295578063a317bfa5146102c5578063a9059cbb146102e1578063dd62ed3e14610311578063f2fde38b1461034157610109565b8063715018a6146102315780637c0f6b351461023b5780638da5cb5b1461025957806395d89b411461027757610109565b806323b872dd116100dc57806323b872dd14610183578063313ce567146101b35780634ff531b6146101d157806370a082311461020157610109565b806306fdde031461010d578063095ea7b31461012b5780631249c58b1461015b57806318160ddd14610165575b5f80fd5b61011561035d565b6040516101229190611438565b60405180910390f35b610145600480360381019061014091906114e9565b6103ed565b6040516101529190611541565b60405180910390f35b61016361040f565b005b61016d6104db565b60405161017a9190611569565b60405180910390f35b61019d60048036038101906101989190611582565b6104e4565b6040516101aa9190611541565b60405180910390f35b6101bb610512565b6040516101c891906115ed565b60405180910390f35b6101eb60048036038101906101e69190611606565b610516565b6040516101f89190611569565b60405180910390f35b61021b60048036038101906102169190611606565b6105b7565b6040516102289190611569565b60405180910390f35b6102396105fc565b005b61024361060f565b60405161025091906116e8565b60405180910390f35b6102616107b0565b60405161026e9190611717565b60405180910390f35b61027f6107d8565b60405161028c9190611438565b60405180910390f35b6102af60048036038101906102aa9190611606565b610868565b6040516102bc9190611541565b60405180910390f35b6102df60048036038101906102da9190611606565b610885565b005b6102fb60048036038101906102f691906114e9565b6108d0565b6040516103089190611541565b60405180910390f35b61032b60048036038101906103269190611730565b6108f2565b6040516103389190611569565b60405180910390f35b61035b60048036038101906103569190611606565b610974565b005b60606003805461036c9061179b565b80601f01602080910402602001604051908101604052809291908181526020018280546103989061179b565b80156103e35780601f106103ba576101008083540402835291602001916103e3565b820191905f5260205f20905b8154815290600101906020018083116103c657829003601f168201915b5050505050905090565b5f806103f76109f8565b90506104048185856109ff565b600191505092915050565b5f3390505f3073ffffffffffffffffffffffffffffffffffffffff16634ff531b6836040518263ffffffff1660e01b815260040161044d9190611717565b602060405180830381865afa158015610468573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061048c91906117df565b116104cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c39061187a565b60405180910390fd5b6104d881600654610a11565b50565b5f600254905090565b5f806104ee6109f8565b90506104fb858285610a90565b610506858585610b22565b60019150509392505050565b5f90565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634ff531b6836040518263ffffffff1660e01b81526004016105719190611717565b602060405180830381865afa15801561058c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105b091906117df565b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610604610c12565b61060d5f610c99565b565b60605f60088054905067ffffffffffffffff81111561063157610630611898565b5b60405190808252806020026020018201604052801561065f5781602001602082028036833780820191505090505b5090505f805b6008805490508110156107a75760075f60088381548110610689576106886118c5565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561079457600881815481106107105761070f6118c5565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838151811061074b5761074a6118c5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505081806107909061191f565b9250505b808061079f9061191f565b915050610665565b50819250505090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107e79061179b565b80601f01602080910402602001604051908101604052809291908181526020018280546108139061179b565b801561085e5780601f106108355761010080835404028352916020019161085e565b820191905f5260205f20905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b6007602052805f5260405f205f915054906101000a900460ff1681565b61088d610c12565b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f806108da6109f8565b90506108e7818585610b22565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61097c610c12565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ec575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109e39190611717565b60405180910390fd5b6109f581610c99565b50565b5f33905090565b610a0c8383836001610d5c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a81575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610a789190611717565b60405180910390fd5b610a8c5f8383610f2b565b5050565b5f610a9b84846108f2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b1c5781811015610b0d578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b0493929190611966565b60405180910390fd5b610b1b84848484035f610d5c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b92575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b899190611717565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c02575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610bf99190611717565b60405180910390fd5b610c0d838383610f2b565b505050565b610c1a6109f8565b73ffffffffffffffffffffffffffffffffffffffff16610c386107b0565b73ffffffffffffffffffffffffffffffffffffffff1614610c9757610c5b6109f8565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610c8e9190611717565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610dcc575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610dc39190611717565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e3c575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e339190611717565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610f25578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f1c9190611569565b60405180910390a35b50505050565b8273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff161480610f9057508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff16145b610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc6906119e5565b60405180910390fd5b610fda83838361103e565b600654610fe6836105b7565b1115611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90611a4d565b60405180910390fd5b61103082611257565b61103983611257565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361108e578060025f8282546110829190611a6b565b9250508190555061115c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611117578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161110e93929190611966565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a3578060025f82825403925050819055506111ed565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161124a9190611569565b60405180910390a3505050565b8073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff16146113ab57600654611296826105b7565b0361135557600160075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600881908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506113aa565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b5b50565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113e55780820151818401526020810190506113ca565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61140a826113ae565b61141481856113b8565b93506114248185602086016113c8565b61142d816113f0565b840191505092915050565b5f6020820190508181035f8301526114508184611400565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114858261145c565b9050919050565b6114958161147b565b811461149f575f80fd5b50565b5f813590506114b08161148c565b92915050565b5f819050919050565b6114c8816114b6565b81146114d2575f80fd5b50565b5f813590506114e3816114bf565b92915050565b5f80604083850312156114ff576114fe611458565b5b5f61150c858286016114a2565b925050602061151d858286016114d5565b9150509250929050565b5f8115159050919050565b61153b81611527565b82525050565b5f6020820190506115545f830184611532565b92915050565b611563816114b6565b82525050565b5f60208201905061157c5f83018461155a565b92915050565b5f805f6060848603121561159957611598611458565b5b5f6115a6868287016114a2565b93505060206115b7868287016114a2565b92505060406115c8868287016114d5565b9150509250925092565b5f60ff82169050919050565b6115e7816115d2565b82525050565b5f6020820190506116005f8301846115de565b92915050565b5f6020828403121561161b5761161a611458565b5b5f611628848285016114a2565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6116638161147b565b82525050565b5f611674838361165a565b60208301905092915050565b5f602082019050919050565b5f61169682611631565b6116a0818561163b565b93506116ab8361164b565b805f5b838110156116db5781516116c28882611669565b97506116cd83611680565b9250506001810190506116ae565b5085935050505092915050565b5f6020820190508181035f830152611700818461168c565b905092915050565b6117118161147b565b82525050565b5f60208201905061172a5f830184611708565b92915050565b5f806040838503121561174657611745611458565b5b5f611753858286016114a2565b9250506020611764858286016114a2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117b257607f821691505b6020821081036117c5576117c461176e565b5b50919050565b5f815190506117d9816114bf565b92915050565b5f602082840312156117f4576117f3611458565b5b5f611801848285016117cb565b91505092915050565b7f746865206d696e696d756d20736f756c20706f696e7420616c6c6f77656420695f8201527f7320310000000000000000000000000000000000000000000000000000000000602082015250565b5f6118646023836113b8565b915061186f8261180a565b604082019050919050565b5f6020820190508181035f83015261189181611858565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611929826114b6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361195b5761195a6118f2565b5b600182019050919050565b5f6060820190506119795f830186611708565b611986602083018561155a565b611993604083018461155a565b949350505050565b7f45524332303a207472616e73666572206973206e6f7420616c6c6f77656400005f82015250565b5f6119cf601e836113b8565b91506119da8261199b565b602082019050919050565b5f6020820190508181035f8301526119fc816119c3565b9050919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f611a376014836113b8565b9150611a4282611a03565b602082019050919050565b5f6020820190508181035f830152611a6481611a2b565b9050919050565b5f611a75826114b6565b9150611a80836114b6565b9250828201905080821115611a9857611a976118f2565b5b9291505056fea2646970667358221220854aa16d9bdb15823197406174aea7211d166a7650d5bbcd832d1a85762c1eb464736f6c63430008140033

Deployed Bytecode Sourcemap

210:1947:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2046:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4287:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;818:178:5;;;:::i;:::-;;3116:97:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5055:274;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;722:90:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;476:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3271:116:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2308:101:4;;;:::i;:::-;;1002:384:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1653:85:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2248:93:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;360:40:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;601:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3582:178:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3818:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2558:215:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2046:89:1;2091:13;2123:5;2116:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2046:89;:::o;4287:208::-;4382:4;4398:13;4414:12;:10;:12::i;:::-;4398:28;;4436:31;4445:5;4452:7;4461:5;4436:8;:31::i;:::-;4484:4;4477:11;;;4287:208;;;;:::o;818:178:5:-;853:11;867:10;853:24;;916:1;895:4;:13;;;909:3;895:18;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:22;887:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;967:22;973:3;978:10;;967:5;:22::i;:::-;843:153;818:178::o;3116:97:1:-;3168:7;3194:12;;3187:19;;3116:97;:::o;5055:274::-;5172:4;5188:15;5206:12;:10;:12::i;:::-;5188:30;;5228:37;5244:4;5250:7;5259:5;5228:15;:37::i;:::-;5275:26;5285:4;5291:2;5295:5;5275:9;:26::i;:::-;5318:4;5311:11;;;5055:274;;;;;:::o;722:90:5:-;780:5;722:90;:::o;476:119::-;534:7;560:10;;;;;;;;;;;:19;;;580:7;560:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;553:35;;476:119;;;:::o;3271:116:1:-;3336:7;3362:9;:18;3372:7;3362:18;;;;;;;;;;;;;;;;3355:25;;3271:116;;;:::o;2308:101:4:-;1546:13;:11;:13::i;:::-;2372:30:::1;2399:1;2372:18;:30::i;:::-;2308:101::o:0;1002:384:5:-;1050:16;1078:24;1119:8;:15;;;;1105:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078:57;;1145:13;1177:9;1172:183;1196:8;:15;;;;1192:1;:19;1172:183;;;1236:8;:21;1245:8;1254:1;1245:11;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1236:21;;;;;;;;;;;;;;;;;;;;;;;;;1232:113;;;1294:8;1303:1;1294:11;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1277:7;1285:5;1277:14;;;;;;;;:::i;:::-;;;;;;;:28;;;;;;;;;;;1323:7;;;;;:::i;:::-;;;;1232:113;1213:3;;;;;:::i;:::-;;;;1172:183;;;;1372:7;1365:14;;;;1002:384;:::o;1653:85:4:-;1699:7;1725:6;;;;;;;;;;;1718:13;;1653:85;:::o;2248:93:1:-;2295:13;2327:7;2320:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2248:93;:::o;360:40:5:-;;;;;;;;;;;;;;;;;;;;;;:::o;601:115::-;1546:13:4;:11;:13::i;:::-;697:11:5::1;673:10;;:36;;;;;;;;;;;;;;;;;;601:115:::0;:::o;3582:178:1:-;3651:4;3667:13;3683:12;:10;:12::i;:::-;3667:28;;3705:27;3715:5;3722:2;3726:5;3705:9;:27::i;:::-;3749:4;3742:11;;;3582:178;;;;:::o;3818:162::-;3920:7;3946:11;:18;3958:5;3946:18;;;;;;;;;;;;;;;:27;3965:7;3946:27;;;;;;;;;;;;;;;;3939:34;;3818:162;;;;:::o;2558:215:4:-;1546:13;:11;:13::i;:::-;2662:1:::1;2642:22;;:8;:22;;::::0;2638:91:::1;;2715:1;2687:31;;;;;;;;;;;:::i;:::-;;;;;;;;2638:91;2738:28;2757:8;2738:18;:28::i;:::-;2558:215:::0;:::o;656:96:0:-;709:7;735:10;728:17;;656:96;:::o;9035:128:1:-;9119:37;9128:5;9135:7;9144:5;9151:4;9119:8;:37::i;:::-;9035:128;;;:::o;7767:208::-;7856:1;7837:21;;:7;:21;;;7833:91;;7910:1;7881:32;;;;;;;;;;;:::i;:::-;;;;;;;;7833:91;7933:35;7949:1;7953:7;7962:5;7933:7;:35::i;:::-;7767:208;;:::o;10747:585::-;10876:24;10903:25;10913:5;10920:7;10903:9;:25::i;:::-;10876:52;;10962:17;10942:16;:37;10938:388;;11018:5;10999:16;:24;10995:208;;;11098:7;11127:16;11165:5;11050:138;;;;;;;;;;;;;:::i;:::-;;;;;;;;10995:208;11244:57;11253:5;11260:7;11288:5;11269:16;:24;11295:5;11244:8;:57::i;:::-;10938:388;10866:466;10747:585;;;:::o;5702:300::-;5801:1;5785:18;;:4;:18;;;5781:86;;5853:1;5826:30;;;;;;;;;;;:::i;:::-;;;;;;;;5781:86;5894:1;5880:16;;:2;:16;;;5876:86;;5948:1;5919:32;;;;;;;;;;;:::i;:::-;;;;;;;;5876:86;5971:24;5979:4;5985:2;5989:5;5971:7;:24::i;:::-;5702:300;;;:::o;1811:162:4:-;1881:12;:10;:12::i;:::-;1870:23;;:7;:5;:7::i;:::-;:23;;;1866:101;;1943:12;:10;:12::i;:::-;1916:40;;;;;;;;;;;:::i;:::-;;;;;;;;1866:101;1811:162::o;2927:187::-;3000:16;3019:6;;;;;;;;;;;3000:25;;3044:8;3035:6;;:17;;;;;;;;;;;;;;;;;;3098:8;3067:40;;3088:8;3067:40;;;;;;;;;;;;2990:124;2927:187;:::o;9995:470:1:-;10162:1;10145:19;;:5;:19;;;10141:89;;10216:1;10187:32;;;;;;;;;;;:::i;:::-;;;;;;;;10141:89;10262:1;10243:21;;:7;:21;;;10239:90;;10315:1;10287:31;;;;;;;;;;;:::i;:::-;;;;;;;;10239:90;10368:5;10338:11;:18;10350:5;10338:18;;;;;;;;;;;;;;;:27;10357:7;10338:27;;;;;;;;;;;;;;;:35;;;;10387:9;10383:76;;;10433:7;10417:31;;10426:5;10417:31;;;10442:5;10417:31;;;;;;:::i;:::-;;;;;;;;10383:76;9995:470;;;;:::o;1392:440:5:-;1551:4;1537:18;;1545:1;1537:18;;;:38;;;;1573:2;1559:16;;1567:1;1559:16;;;1537:38;1516:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;1642:30;1656:4;1662:2;1666:5;1642:13;:30::i;:::-;1707:10;;1690:13;1700:2;1690:9;:13::i;:::-;:27;;1682:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1775:19;1791:2;1775:15;:19::i;:::-;1804:21;1820:4;1804:15;:21::i;:::-;1392:440;;;:::o;6317:1107:1:-;6422:1;6406:18;;:4;:18;;;6402:540;;6558:5;6542:12;;:21;;;;;;;:::i;:::-;;;;;;;;6402:540;;;6594:19;6616:9;:15;6626:4;6616:15;;;;;;;;;;;;;;;;6594:37;;6663:5;6649:11;:19;6645:115;;;6720:4;6726:11;6739:5;6695:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6645:115;6912:5;6898:11;:19;6880:9;:15;6890:4;6880:15;;;;;;;;;;;;;;;:37;;;;6580:362;6402:540;6970:1;6956:16;;:2;:16;;;6952:425;;7135:5;7119:12;;:21;;;;;;;;;;;6952:425;;;7347:5;7330:9;:13;7340:2;7330:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6952:425;7407:2;7392:25;;7401:4;7392:25;;;7411:5;7392:25;;;;;;:::i;:::-;;;;;;;;6317:1107;;;:::o;1838:317:5:-;1917:7;1903:21;;1911:1;1903:21;;;1899:250;;1966:10;;1944:18;1954:7;1944:9;:18::i;:::-;:32;1940:199;;2016:4;1996:8;:17;2005:7;1996:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;2038:8;2052:7;2038:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1940:199;;;2119:5;2099:8;:17;2108:7;2099:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;1940:199;1899:250;1838:317;:::o;7:99:7:-;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:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:114::-;5255:6;5289:5;5283:12;5273:22;;5188:114;;;:::o;5308:184::-;5407:11;5441:6;5436:3;5429:19;5481:4;5476:3;5472:14;5457:29;;5308:184;;;;:::o;5498:132::-;5565:4;5588:3;5580:11;;5618:4;5613:3;5609:14;5601:22;;5498:132;;;:::o;5636:108::-;5713:24;5731:5;5713:24;:::i;:::-;5708:3;5701:37;5636:108;;:::o;5750:179::-;5819:10;5840:46;5882:3;5874:6;5840:46;:::i;:::-;5918:4;5913:3;5909:14;5895:28;;5750:179;;;;:::o;5935:113::-;6005:4;6037;6032:3;6028:14;6020:22;;5935:113;;;:::o;6084:732::-;6203:3;6232:54;6280:5;6232:54;:::i;:::-;6302:86;6381:6;6376:3;6302:86;:::i;:::-;6295:93;;6412:56;6462:5;6412:56;:::i;:::-;6491:7;6522:1;6507:284;6532:6;6529:1;6526:13;6507:284;;;6608:6;6602:13;6635:63;6694:3;6679:13;6635:63;:::i;:::-;6628:70;;6721:60;6774:6;6721:60;:::i;:::-;6711:70;;6567:224;6554:1;6551;6547:9;6542:14;;6507:284;;;6511:14;6807:3;6800:10;;6208:608;;;6084:732;;;;:::o;6822:373::-;6965:4;7003:2;6992:9;6988:18;6980:26;;7052:9;7046:4;7042:20;7038:1;7027:9;7023:17;7016:47;7080:108;7183:4;7174:6;7080:108;:::i;:::-;7072:116;;6822:373;;;;:::o;7201:118::-;7288:24;7306:5;7288:24;:::i;:::-;7283:3;7276:37;7201:118;;:::o;7325:222::-;7418:4;7456:2;7445:9;7441:18;7433:26;;7469:71;7537:1;7526:9;7522:17;7513:6;7469:71;:::i;:::-;7325:222;;;;:::o;7553:474::-;7621:6;7629;7678:2;7666:9;7657:7;7653:23;7649:32;7646:119;;;7684:79;;:::i;:::-;7646:119;7804:1;7829:53;7874:7;7865:6;7854:9;7850:22;7829:53;:::i;:::-;7819:63;;7775:117;7931:2;7957:53;8002:7;7993:6;7982:9;7978:22;7957:53;:::i;:::-;7947:63;;7902:118;7553:474;;;;;:::o;8033:180::-;8081:77;8078:1;8071:88;8178:4;8175:1;8168:15;8202:4;8199:1;8192:15;8219:320;8263:6;8300:1;8294:4;8290:12;8280:22;;8347:1;8341:4;8337:12;8368:18;8358:81;;8424:4;8416:6;8412:17;8402:27;;8358:81;8486:2;8478:6;8475:14;8455:18;8452:38;8449:84;;8505:18;;:::i;:::-;8449:84;8270:269;8219:320;;;:::o;8545:143::-;8602:5;8633:6;8627:13;8618:22;;8649:33;8676:5;8649:33;:::i;:::-;8545:143;;;;:::o;8694:351::-;8764:6;8813:2;8801:9;8792:7;8788:23;8784:32;8781:119;;;8819:79;;:::i;:::-;8781:119;8939:1;8964:64;9020:7;9011:6;9000:9;8996:22;8964:64;:::i;:::-;8954:74;;8910:128;8694:351;;;;:::o;9051:222::-;9191:34;9187:1;9179:6;9175:14;9168:58;9260:5;9255:2;9247:6;9243:15;9236:30;9051:222;:::o;9279:366::-;9421:3;9442:67;9506:2;9501:3;9442:67;:::i;:::-;9435:74;;9518:93;9607:3;9518:93;:::i;:::-;9636:2;9631:3;9627:12;9620:19;;9279:366;;;:::o;9651:419::-;9817:4;9855:2;9844:9;9840:18;9832:26;;9904:9;9898:4;9894:20;9890:1;9879:9;9875:17;9868:47;9932:131;10058:4;9932:131;:::i;:::-;9924:139;;9651:419;;;:::o;10076:180::-;10124:77;10121:1;10114:88;10221:4;10218:1;10211:15;10245:4;10242:1;10235:15;10262:180;10310:77;10307:1;10300:88;10407:4;10404:1;10397:15;10431:4;10428:1;10421:15;10448:180;10496:77;10493:1;10486:88;10593:4;10590:1;10583:15;10617:4;10614:1;10607:15;10634:233;10673:3;10696:24;10714:5;10696:24;:::i;:::-;10687:33;;10742:66;10735:5;10732:77;10729:103;;10812:18;;:::i;:::-;10729:103;10859:1;10852:5;10848:13;10841:20;;10634:233;;;:::o;10873:442::-;11022:4;11060:2;11049:9;11045:18;11037:26;;11073:71;11141:1;11130:9;11126:17;11117:6;11073:71;:::i;:::-;11154:72;11222:2;11211:9;11207:18;11198:6;11154:72;:::i;:::-;11236;11304:2;11293:9;11289:18;11280:6;11236:72;:::i;:::-;10873:442;;;;;;:::o;11321:180::-;11461:32;11457:1;11449:6;11445:14;11438:56;11321:180;:::o;11507:366::-;11649:3;11670:67;11734:2;11729:3;11670:67;:::i;:::-;11663:74;;11746:93;11835:3;11746:93;:::i;:::-;11864:2;11859:3;11855:12;11848:19;;11507:366;;;:::o;11879:419::-;12045:4;12083:2;12072:9;12068:18;12060:26;;12132:9;12126:4;12122:20;12118:1;12107:9;12103:17;12096:47;12160:131;12286:4;12160:131;:::i;:::-;12152:139;;11879:419;;;:::o;12304:170::-;12444:22;12440:1;12432:6;12428:14;12421:46;12304:170;:::o;12480:366::-;12622:3;12643:67;12707:2;12702:3;12643:67;:::i;:::-;12636:74;;12719:93;12808:3;12719:93;:::i;:::-;12837:2;12832:3;12828:12;12821:19;;12480:366;;;:::o;12852:419::-;13018:4;13056:2;13045:9;13041:18;13033:26;;13105:9;13099:4;13095:20;13091:1;13080:9;13076:17;13069:47;13133:131;13259:4;13133:131;:::i;:::-;13125:139;;12852:419;;;:::o;13277:191::-;13317:3;13336:20;13354:1;13336:20;:::i;:::-;13331:25;;13370:20;13388:1;13370:20;:::i;:::-;13365:25;;13413:1;13410;13406:9;13399:16;;13434:3;13431:1;13428:10;13425:36;;;13441:18;;:::i;:::-;13425:36;13277:191;;;;:::o

Swarm Source

ipfs://854aa16d9bdb15823197406174aea7211d166a7650d5bbcd832d1a85762c1eb4
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.