BNB Price: $695.44 (-2.04%)
Gas: 1 GWei
 

Overview

Max Total Supply

189,000,000,000AbellCoin

Holders

1

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
BSC: Validator Set
Balance
189,000,000,000 AbellCoin

Value
$0.00
0x0000000000000000000000000000000000001000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
AbellCoin

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at BscScan.com on 2021-11-12
*/

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


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

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

interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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


/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



contract AbellCoin is ERC20,Ownable {
    using EnumerableSet for EnumerableSet.AddressSet;
    EnumerableSet.AddressSet private _minters;
    uint256 private constant maxSupply = 189000000000 * 1e18;
        
    constructor()  
    ERC20("ABC","AbellCoin"){}

    function mint(address _to, uint256 _amount) public onlyMinter returns (bool) {
        if (_amount + totalSupply()  > maxSupply) {
          return false;
        }
        _mint(_to, _amount);
        return true;
    }


    function addMinter(address _addMinter) public onlyOwner returns (bool) {
        require(_addMinter != address(0), "Abell Coin: _addMinter is the zero address");
        return EnumerableSet.add(_minters, _addMinter);
    }
    
    
    function delMinter(address _delMinter) public onlyOwner returns (bool) {
        require(_delMinter != address(0), "Abell Coin: _delMinter is the zero address");
        return EnumerableSet.remove(_minters, _delMinter);
    }
    
    function getMinterLength() public view returns (uint256) {
        return EnumerableSet.length(_minters);
    }

    function isMinter(address account) public view returns (bool) {
        return EnumerableSet.contains(_minters, account);
    }

    modifier onlyMinter() {
        require(isMinter(msg.sender), "AbellCoin: caller is not the minter");
        _;
    }

}

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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_addMinter","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_delMinter","type":"address"}],"name":"delMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600381526020017f41424300000000000000000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f4162656c6c436f696e0000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61216480620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610334578063a9059cbb14610364578063aa271e1a14610394578063dd62ed3e146103c4578063f2fde38b146103f457610121565b806370a082311461028e578063715018a6146102be5780638da5cb5b146102c857806395d89b41146102e6578063983b2d561461030457610121565b806323338b88116100f457806323338b88146101b057806323b872dd146101e0578063313ce56714610210578063395093511461022e57806340c10f191461025e57610121565b80630323aac71461012657806306fdde0314610144578063095ea7b31461016257806318160ddd14610192575b600080fd5b61012e610410565b60405161013b9190611efb565b60405180910390f35b61014c610421565b6040516101599190611d39565b60405180910390f35b61017c60048036038101906101779190611770565b6104b3565b6040516101899190611d1e565b60405180910390f35b61019a6104d1565b6040516101a79190611efb565b60405180910390f35b6101ca60048036038101906101c591906116bc565b6104db565b6040516101d79190611d1e565b60405180910390f35b6101fa60048036038101906101f59190611721565b6105db565b6040516102079190611d1e565b60405180910390f35b6102186106d3565b6040516102259190611f16565b60405180910390f35b61024860048036038101906102439190611770565b6106dc565b6040516102559190611d1e565b60405180910390f35b61027860048036038101906102739190611770565b610788565b6040516102859190611d1e565b60405180910390f35b6102a860048036038101906102a391906116bc565b610817565b6040516102b59190611efb565b60405180910390f35b6102c661085f565b005b6102d06108e7565b6040516102dd9190611d03565b60405180910390f35b6102ee610911565b6040516102fb9190611d39565b60405180910390f35b61031e600480360381019061031991906116bc565b6109a3565b60405161032b9190611d1e565b60405180910390f35b61034e60048036038101906103499190611770565b610aa3565b60405161035b9190611d1e565b60405180910390f35b61037e60048036038101906103799190611770565b610b8e565b60405161038b9190611d1e565b60405180910390f35b6103ae60048036038101906103a991906116bc565b610bac565b6040516103bb9190611d1e565b60405180910390f35b6103de60048036038101906103d991906116e5565b610bc0565b6040516103eb9190611efb565b60405180910390f35b61040e600480360381019061040991906116bc565b610c47565b005b600061041c6006610d3f565b905090565b6060600380546104309061205f565b80601f016020809104026020016040519081016040528092919081815260200182805461045c9061205f565b80156104a95780601f1061047e576101008083540402835291602001916104a9565b820191906000526020600020905b81548152906001019060200180831161048c57829003601f168201915b5050505050905090565b60006104c76104c0610d54565b8484610d5c565b6001905092915050565b6000600254905090565b60006104e5610d54565b73ffffffffffffffffffffffffffffffffffffffff166105036108e7565b73ffffffffffffffffffffffffffffffffffffffff1614610559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055090611e3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156105c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c090611dfb565b60405180910390fd5b6105d4600683610f27565b9050919050565b60006105e8848484610f57565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610633610d54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106aa90611e1b565b60405180910390fd5b6106c7856106bf610d54565b858403610d5c565b60019150509392505050565b60006012905090565b600061077e6106e9610d54565b8484600160006106f7610d54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107799190611f4d565b610d5c565b6001905092915050565b600061079333610bac565b6107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990611e5b565b60405180910390fd5b6c0262b122c1fceeacf7480000006107e86104d1565b836107f39190611f4d565b11156108025760009050610811565b61080c83836111d8565b600190505b92915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610867610d54565b73ffffffffffffffffffffffffffffffffffffffff166108856108e7565b73ffffffffffffffffffffffffffffffffffffffff16146108db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d290611e3b565b60405180910390fd5b6108e56000611338565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109209061205f565b80601f016020809104026020016040519081016040528092919081815260200182805461094c9061205f565b80156109995780601f1061096e57610100808354040283529160200191610999565b820191906000526020600020905b81548152906001019060200180831161097c57829003601f168201915b5050505050905090565b60006109ad610d54565b73ffffffffffffffffffffffffffffffffffffffff166109cb6108e7565b73ffffffffffffffffffffffffffffffffffffffff1614610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1890611e3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890611d7b565b60405180910390fd5b610a9c6006836113fe565b9050919050565b60008060016000610ab2610d54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6690611ebb565b60405180910390fd5b610b83610b7a610d54565b85858403610d5c565b600191505092915050565b6000610ba2610b9b610d54565b8484610f57565b6001905092915050565b6000610bb960068361142e565b9050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c4f610d54565b73ffffffffffffffffffffffffffffffffffffffff16610c6d6108e7565b73ffffffffffffffffffffffffffffffffffffffff1614610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90611e3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a90611d9b565b60405180910390fd5b610d3c81611338565b50565b6000610d4d8260000161145e565b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390611e9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390611dbb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f1a9190611efb565b60405180910390a3505050565b6000610f4f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61146f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90611e7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90611d5b565b60405180910390fd5b6110428383836115f5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90611ddb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461115b9190611f4d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111bf9190611efb565b60405180910390a36111d28484846115fa565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f90611edb565b60405180910390fd5b611254600083836115f5565b80600260008282546112669190611f4d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112bb9190611f4d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113209190611efb565b60405180910390a3611334600083836115fa565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611426836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6115ff565b905092915050565b6000611456836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61166f565b905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020549050600081146115e95760006001826114a19190611fa3565b90506000600186600001805490506114b99190611fa3565b9050818114611574576000866000018281548110611500577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508087600001848154811061154a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806115ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506115ef565b60009150505b92915050565b505050565b505050565b600061160b838361166f565b611664578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611669565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b6000813590506116a181612100565b92915050565b6000813590506116b681612117565b92915050565b6000602082840312156116ce57600080fd5b60006116dc84828501611692565b91505092915050565b600080604083850312156116f857600080fd5b600061170685828601611692565b925050602061171785828601611692565b9150509250929050565b60008060006060848603121561173657600080fd5b600061174486828701611692565b935050602061175586828701611692565b9250506040611766868287016116a7565b9150509250925092565b6000806040838503121561178357600080fd5b600061179185828601611692565b92505060206117a2858286016116a7565b9150509250929050565b6117b581611fd7565b82525050565b6117c481611fe9565b82525050565b60006117d582611f31565b6117df8185611f3c565b93506117ef81856020860161202c565b6117f8816120ef565b840191505092915050565b6000611810602383611f3c565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611876602a83611f3c565b91507f4162656c6c20436f696e3a205f6164644d696e74657220697320746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006118dc602683611f3c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611942602283611f3c565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119a8602683611f3c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a0e602a83611f3c565b91507f4162656c6c20436f696e3a205f64656c4d696e74657220697320746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a74602883611f3c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ada602083611f3c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611b1a602383611f3c565b91507f4162656c6c436f696e3a2063616c6c6572206973206e6f7420746865206d696e60008301527f74657200000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b80602583611f3c565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611be6602483611f3c565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c4c602583611f3c565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611cb2601f83611f3c565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b611cee81612015565b82525050565b611cfd8161201f565b82525050565b6000602082019050611d1860008301846117ac565b92915050565b6000602082019050611d3360008301846117bb565b92915050565b60006020820190508181036000830152611d5381846117ca565b905092915050565b60006020820190508181036000830152611d7481611803565b9050919050565b60006020820190508181036000830152611d9481611869565b9050919050565b60006020820190508181036000830152611db4816118cf565b9050919050565b60006020820190508181036000830152611dd481611935565b9050919050565b60006020820190508181036000830152611df48161199b565b9050919050565b60006020820190508181036000830152611e1481611a01565b9050919050565b60006020820190508181036000830152611e3481611a67565b9050919050565b60006020820190508181036000830152611e5481611acd565b9050919050565b60006020820190508181036000830152611e7481611b0d565b9050919050565b60006020820190508181036000830152611e9481611b73565b9050919050565b60006020820190508181036000830152611eb481611bd9565b9050919050565b60006020820190508181036000830152611ed481611c3f565b9050919050565b60006020820190508181036000830152611ef481611ca5565b9050919050565b6000602082019050611f106000830184611ce5565b92915050565b6000602082019050611f2b6000830184611cf4565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611f5882612015565b9150611f6383612015565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f9857611f97612091565b5b828201905092915050565b6000611fae82612015565b9150611fb983612015565b925082821015611fcc57611fcb612091565b5b828203905092915050565b6000611fe282611ff5565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561204a57808201518184015260208101905061202f565b83811115612059576000848401525b50505050565b6000600282049050600182168061207757607f821691505b6020821081141561208b5761208a6120c0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61210981611fd7565b811461211457600080fd5b50565b61212081612015565b811461212b57600080fd5b5056fea2646970667358221220005e4b08b2096cf66157fee43f6e964d16ff0c67d05a0c10d14caef508fbf12164736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610334578063a9059cbb14610364578063aa271e1a14610394578063dd62ed3e146103c4578063f2fde38b146103f457610121565b806370a082311461028e578063715018a6146102be5780638da5cb5b146102c857806395d89b41146102e6578063983b2d561461030457610121565b806323338b88116100f457806323338b88146101b057806323b872dd146101e0578063313ce56714610210578063395093511461022e57806340c10f191461025e57610121565b80630323aac71461012657806306fdde0314610144578063095ea7b31461016257806318160ddd14610192575b600080fd5b61012e610410565b60405161013b9190611efb565b60405180910390f35b61014c610421565b6040516101599190611d39565b60405180910390f35b61017c60048036038101906101779190611770565b6104b3565b6040516101899190611d1e565b60405180910390f35b61019a6104d1565b6040516101a79190611efb565b60405180910390f35b6101ca60048036038101906101c591906116bc565b6104db565b6040516101d79190611d1e565b60405180910390f35b6101fa60048036038101906101f59190611721565b6105db565b6040516102079190611d1e565b60405180910390f35b6102186106d3565b6040516102259190611f16565b60405180910390f35b61024860048036038101906102439190611770565b6106dc565b6040516102559190611d1e565b60405180910390f35b61027860048036038101906102739190611770565b610788565b6040516102859190611d1e565b60405180910390f35b6102a860048036038101906102a391906116bc565b610817565b6040516102b59190611efb565b60405180910390f35b6102c661085f565b005b6102d06108e7565b6040516102dd9190611d03565b60405180910390f35b6102ee610911565b6040516102fb9190611d39565b60405180910390f35b61031e600480360381019061031991906116bc565b6109a3565b60405161032b9190611d1e565b60405180910390f35b61034e60048036038101906103499190611770565b610aa3565b60405161035b9190611d1e565b60405180910390f35b61037e60048036038101906103799190611770565b610b8e565b60405161038b9190611d1e565b60405180910390f35b6103ae60048036038101906103a991906116bc565b610bac565b6040516103bb9190611d1e565b60405180910390f35b6103de60048036038101906103d991906116e5565b610bc0565b6040516103eb9190611efb565b60405180910390f35b61040e600480360381019061040991906116bc565b610c47565b005b600061041c6006610d3f565b905090565b6060600380546104309061205f565b80601f016020809104026020016040519081016040528092919081815260200182805461045c9061205f565b80156104a95780601f1061047e576101008083540402835291602001916104a9565b820191906000526020600020905b81548152906001019060200180831161048c57829003601f168201915b5050505050905090565b60006104c76104c0610d54565b8484610d5c565b6001905092915050565b6000600254905090565b60006104e5610d54565b73ffffffffffffffffffffffffffffffffffffffff166105036108e7565b73ffffffffffffffffffffffffffffffffffffffff1614610559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055090611e3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156105c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c090611dfb565b60405180910390fd5b6105d4600683610f27565b9050919050565b60006105e8848484610f57565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610633610d54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106aa90611e1b565b60405180910390fd5b6106c7856106bf610d54565b858403610d5c565b60019150509392505050565b60006012905090565b600061077e6106e9610d54565b8484600160006106f7610d54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107799190611f4d565b610d5c565b6001905092915050565b600061079333610bac565b6107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990611e5b565b60405180910390fd5b6c0262b122c1fceeacf7480000006107e86104d1565b836107f39190611f4d565b11156108025760009050610811565b61080c83836111d8565b600190505b92915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610867610d54565b73ffffffffffffffffffffffffffffffffffffffff166108856108e7565b73ffffffffffffffffffffffffffffffffffffffff16146108db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d290611e3b565b60405180910390fd5b6108e56000611338565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109209061205f565b80601f016020809104026020016040519081016040528092919081815260200182805461094c9061205f565b80156109995780601f1061096e57610100808354040283529160200191610999565b820191906000526020600020905b81548152906001019060200180831161097c57829003601f168201915b5050505050905090565b60006109ad610d54565b73ffffffffffffffffffffffffffffffffffffffff166109cb6108e7565b73ffffffffffffffffffffffffffffffffffffffff1614610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1890611e3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890611d7b565b60405180910390fd5b610a9c6006836113fe565b9050919050565b60008060016000610ab2610d54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6690611ebb565b60405180910390fd5b610b83610b7a610d54565b85858403610d5c565b600191505092915050565b6000610ba2610b9b610d54565b8484610f57565b6001905092915050565b6000610bb960068361142e565b9050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c4f610d54565b73ffffffffffffffffffffffffffffffffffffffff16610c6d6108e7565b73ffffffffffffffffffffffffffffffffffffffff1614610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90611e3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a90611d9b565b60405180910390fd5b610d3c81611338565b50565b6000610d4d8260000161145e565b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390611e9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390611dbb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f1a9190611efb565b60405180910390a3505050565b6000610f4f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61146f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90611e7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90611d5b565b60405180910390fd5b6110428383836115f5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90611ddb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461115b9190611f4d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111bf9190611efb565b60405180910390a36111d28484846115fa565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f90611edb565b60405180910390fd5b611254600083836115f5565b80600260008282546112669190611f4d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112bb9190611f4d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113209190611efb565b60405180910390a3611334600083836115fa565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611426836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6115ff565b905092915050565b6000611456836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61166f565b905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020549050600081146115e95760006001826114a19190611fa3565b90506000600186600001805490506114b99190611fa3565b9050818114611574576000866000018281548110611500577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508087600001848154811061154a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806115ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506115ef565b60009150505b92915050565b505050565b505050565b600061160b838361166f565b611664578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611669565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b6000813590506116a181612100565b92915050565b6000813590506116b681612117565b92915050565b6000602082840312156116ce57600080fd5b60006116dc84828501611692565b91505092915050565b600080604083850312156116f857600080fd5b600061170685828601611692565b925050602061171785828601611692565b9150509250929050565b60008060006060848603121561173657600080fd5b600061174486828701611692565b935050602061175586828701611692565b9250506040611766868287016116a7565b9150509250925092565b6000806040838503121561178357600080fd5b600061179185828601611692565b92505060206117a2858286016116a7565b9150509250929050565b6117b581611fd7565b82525050565b6117c481611fe9565b82525050565b60006117d582611f31565b6117df8185611f3c565b93506117ef81856020860161202c565b6117f8816120ef565b840191505092915050565b6000611810602383611f3c565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611876602a83611f3c565b91507f4162656c6c20436f696e3a205f6164644d696e74657220697320746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006118dc602683611f3c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611942602283611f3c565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119a8602683611f3c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a0e602a83611f3c565b91507f4162656c6c20436f696e3a205f64656c4d696e74657220697320746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a74602883611f3c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ada602083611f3c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611b1a602383611f3c565b91507f4162656c6c436f696e3a2063616c6c6572206973206e6f7420746865206d696e60008301527f74657200000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b80602583611f3c565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611be6602483611f3c565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c4c602583611f3c565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611cb2601f83611f3c565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b611cee81612015565b82525050565b611cfd8161201f565b82525050565b6000602082019050611d1860008301846117ac565b92915050565b6000602082019050611d3360008301846117bb565b92915050565b60006020820190508181036000830152611d5381846117ca565b905092915050565b60006020820190508181036000830152611d7481611803565b9050919050565b60006020820190508181036000830152611d9481611869565b9050919050565b60006020820190508181036000830152611db4816118cf565b9050919050565b60006020820190508181036000830152611dd481611935565b9050919050565b60006020820190508181036000830152611df48161199b565b9050919050565b60006020820190508181036000830152611e1481611a01565b9050919050565b60006020820190508181036000830152611e3481611a67565b9050919050565b60006020820190508181036000830152611e5481611acd565b9050919050565b60006020820190508181036000830152611e7481611b0d565b9050919050565b60006020820190508181036000830152611e9481611b73565b9050919050565b60006020820190508181036000830152611eb481611bd9565b9050919050565b60006020820190508181036000830152611ed481611c3f565b9050919050565b60006020820190508181036000830152611ef481611ca5565b9050919050565b6000602082019050611f106000830184611ce5565b92915050565b6000602082019050611f2b6000830184611cf4565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611f5882612015565b9150611f6383612015565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f9857611f97612091565b5b828201905092915050565b6000611fae82612015565b9150611fb983612015565b925082821015611fcc57611fcb612091565b5b828203905092915050565b6000611fe282611ff5565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561204a57808201518184015260208101905061202f565b83811115612059576000848401525b50505050565b6000600282049050600182168061207757607f821691505b6020821081141561208b5761208a6120c0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61210981611fd7565b811461211457600080fd5b50565b61212081612015565b811461212b57600080fd5b5056fea2646970667358221220005e4b08b2096cf66157fee43f6e964d16ff0c67d05a0c10d14caef508fbf12164736f6c63430008000033

Deployed Bytecode Sourcemap

29950:1379:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30945:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5892:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8059:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7012:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30704:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8710:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6854:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9611:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30224:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7183:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29317:94;;;:::i;:::-;;28666:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6111:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30460:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10329:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7523:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31066:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7761:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29566:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30945:113;30993:7;31020:30;31041:8;31020:20;:30::i;:::-;31013:37;;30945:113;:::o;5892:100::-;5946:13;5979:5;5972:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5892:100;:::o;8059:169::-;8142:4;8159:39;8168:12;:10;:12::i;:::-;8182:7;8191:6;8159:8;:39::i;:::-;8216:4;8209:11;;8059:169;;;;:::o;7012:108::-;7073:7;7100:12;;7093:19;;7012:108;:::o;30704:229::-;30769:4;28897:12;:10;:12::i;:::-;28886:23;;:7;:5;:7::i;:::-;:23;;;28878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30816:1:::1;30794:24;;:10;:24;;;;30786:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;30883:42;30904:8;30914:10;30883:20;:42::i;:::-;30876:49;;30704:229:::0;;;:::o;8710:492::-;8850:4;8867:36;8877:6;8885:9;8896:6;8867:9;:36::i;:::-;8916:24;8943:11;:19;8955:6;8943:19;;;;;;;;;;;;;;;:33;8963:12;:10;:12::i;:::-;8943:33;;;;;;;;;;;;;;;;8916:60;;9015:6;8995:16;:26;;8987:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9102:57;9111:6;9119:12;:10;:12::i;:::-;9152:6;9133:16;:25;9102:8;:57::i;:::-;9190:4;9183:11;;;8710:492;;;;;:::o;6854:93::-;6912:5;6937:2;6930:9;;6854:93;:::o;9611:215::-;9699:4;9716:80;9725:12;:10;:12::i;:::-;9739:7;9785:10;9748:11;:25;9760:12;:10;:12::i;:::-;9748:25;;;;;;;;;;;;;;;:34;9774:7;9748:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9716:8;:80::i;:::-;9814:4;9807:11;;9611:215;;;;:::o;30224:226::-;30295:4;31244:20;31253:10;31244:8;:20::i;:::-;31236:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30133:19:::1;30326:13;:11;:13::i;:::-;30316:7;:23;;;;:::i;:::-;:36;30312:79;;;30374:5;30367:12;;;;30312:79;30401:19;30407:3;30412:7;30401:5;:19::i;:::-;30438:4;30431:11;;31315:1;30224:226:::0;;;;:::o;7183:127::-;7257:7;7284:9;:18;7294:7;7284:18;;;;;;;;;;;;;;;;7277:25;;7183:127;;;:::o;29317:94::-;28897:12;:10;:12::i;:::-;28886:23;;:7;:5;:7::i;:::-;:23;;;28878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29382:21:::1;29400:1;29382:9;:21::i;:::-;29317:94::o:0;28666:87::-;28712:7;28739:6;;;;;;;;;;;28732:13;;28666:87;:::o;6111:104::-;6167:13;6200:7;6193:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6111:104;:::o;30460:226::-;30525:4;28897:12;:10;:12::i;:::-;28886:23;;:7;:5;:7::i;:::-;:23;;;28878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30572:1:::1;30550:24;;:10;:24;;;;30542:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;30639:39;30657:8;30667:10;30639:17;:39::i;:::-;30632:46;;30460:226:::0;;;:::o;10329:413::-;10422:4;10439:24;10466:11;:25;10478:12;:10;:12::i;:::-;10466:25;;;;;;;;;;;;;;;:34;10492:7;10466:34;;;;;;;;;;;;;;;;10439:61;;10539:15;10519:16;:35;;10511:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10632:67;10641:12;:10;:12::i;:::-;10655:7;10683:15;10664:16;:34;10632:8;:67::i;:::-;10730:4;10723:11;;;10329:413;;;;:::o;7523:175::-;7609:4;7626:42;7636:12;:10;:12::i;:::-;7650:9;7661:6;7626:9;:42::i;:::-;7686:4;7679:11;;7523:175;;;;:::o;31066:129::-;31122:4;31146:41;31169:8;31179:7;31146:22;:41::i;:::-;31139:48;;31066:129;;;:::o;7761:151::-;7850:7;7877:11;:18;7889:5;7877:18;;;;;;;;;;;;;;;:27;7896:7;7877:27;;;;;;;;;;;;;;;;7870:34;;7761:151;;;;:::o;29566:192::-;28897:12;:10;:12::i;:::-;28886:23;;:7;:5;:7::i;:::-;:23;;;28878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29675:1:::1;29655:22;;:8;:22;;;;29647:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29731:19;29741:8;29731:9;:19::i;:::-;29566:192:::0;:::o;24383:117::-;24446:7;24473:19;24481:3;:10;;24473:7;:19::i;:::-;24466:26;;24383:117;;;:::o;601:98::-;654:7;681:10;674:17;;601:98;:::o;14013:380::-;14166:1;14149:19;;:5;:19;;;;14141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14247:1;14228:21;;:7;:21;;;;14220:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14331:6;14301:11;:18;14313:5;14301:18;;;;;;;;;;;;;;;:27;14320:7;14301:27;;;;;;;;;;;;;;;:36;;;;14369:7;14353:32;;14362:5;14353:32;;;14378:6;14353:32;;;;;;:::i;:::-;;;;;;;;14013:380;;;:::o;23886:158::-;23959:4;23983:53;23991:3;:10;;24027:5;24011:23;;24003:32;;23983:7;:53::i;:::-;23976:60;;23886:158;;;;:::o;11232:733::-;11390:1;11372:20;;:6;:20;;;;11364:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11474:1;11453:23;;:9;:23;;;;11445:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11529:47;11550:6;11558:9;11569:6;11529:20;:47::i;:::-;11589:21;11613:9;:17;11623:6;11613:17;;;;;;;;;;;;;;;;11589:41;;11666:6;11649:13;:23;;11641:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11787:6;11771:13;:22;11751:9;:17;11761:6;11751:17;;;;;;;;;;;;;;;:42;;;;11839:6;11815:9;:20;11825:9;11815:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11880:9;11863:35;;11872:6;11863:35;;;11891:6;11863:35;;;;;;:::i;:::-;;;;;;;;11911:46;11931:6;11939:9;11950:6;11911:19;:46::i;:::-;11232:733;;;;:::o;12252:399::-;12355:1;12336:21;;:7;:21;;;;12328:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12406:49;12435:1;12439:7;12448:6;12406:20;:49::i;:::-;12484:6;12468:12;;:22;;;;;;;:::i;:::-;;;;;;;;12523:6;12501:9;:18;12511:7;12501:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12566:7;12545:37;;12562:1;12545:37;;;12575:6;12545:37;;;;;;:::i;:::-;;;;;;;;12595:48;12623:1;12627:7;12636:6;12595:19;:48::i;:::-;12252:399;;:::o;29766:173::-;29822:16;29841:6;;;;;;;;;;;29822:25;;29867:8;29858:6;;:17;;;;;;;;;;;;;;;;;;29922:8;29891:40;;29912:8;29891:40;;;;;;;;;;;;29766:173;;:::o;23558:152::-;23628:4;23652:50;23657:3;:10;;23693:5;23677:23;;23669:32;;23652:4;:50::i;:::-;23645:57;;23558:152;;;;:::o;24130:167::-;24210:4;24234:55;24244:3;:10;;24280:5;24264:23;;24256:32;;24234:9;:55::i;:::-;24227:62;;24130:167;;;;:::o;19784:109::-;19840:7;19867:3;:11;;:18;;;;19860:25;;19784:109;;;:::o;18063:1420::-;18129:4;18247:18;18268:3;:12;;:19;18281:5;18268:19;;;;;;;;;;;;18247:40;;18318:1;18304:10;:15;18300:1176;;18679:21;18716:1;18703:10;:14;;;;:::i;:::-;18679:38;;18732:17;18773:1;18752:3;:11;;:18;;;;:22;;;;:::i;:::-;18732:42;;18808:13;18795:9;:26;18791:405;;18842:17;18862:3;:11;;18874:9;18862:22;;;;;;;;;;;;;;;;;;;;;;;;18842:42;;19016:9;18987:3;:11;;18999:13;18987:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;19127:10;19101:3;:12;;:23;19114:9;19101:23;;;;;;;;;;;:36;;;;18791:405;;19277:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19372:3;:12;;:19;19385:5;19372:19;;;;;;;;;;;19365:26;;;19415:4;19408:11;;;;;;;18300:1176;19459:5;19452:12;;;18063:1420;;;;;:::o;14993:125::-;;;;:::o;15722:124::-;;;;:::o;17473:414::-;17536:4;17558:21;17568:3;17573:5;17558:9;:21::i;:::-;17553:327;;17596:3;:11;;17613:5;17596:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17779:3;:11;;:18;;;;17757:3;:12;;:19;17770:5;17757:19;;;;;;;;;;;:40;;;;17819:4;17812:11;;;;17553:327;17863:5;17856:12;;17473:414;;;;;:::o;19569:129::-;19642:4;19689:1;19666:3;:12;;:19;19679:5;19666:19;;;;;;;;;;;;:24;;19659:31;;19569:129;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:374::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:12;3252:2;3247:3;3243:12;3236:34;3296:2;3291:3;3287:12;3280:19;;3077:228;;;:::o;3311:370::-;;3474:67;3538:2;3533:3;3474:67;:::i;:::-;3467:74;;3571:34;3567:1;3562:3;3558:11;3551:55;3637:8;3632:2;3627:3;3623:12;3616:30;3672:2;3667:3;3663:12;3656:19;;3457:224;;;:::o;3687:366::-;;3850:67;3914:2;3909:3;3850:67;:::i;:::-;3843:74;;3947:34;3943:1;3938:3;3934:11;3927:55;4013:4;4008:2;4003:3;3999:12;3992:26;4044:2;4039:3;4035:12;4028:19;;3833:220;;;:::o;4059:370::-;;4222:67;4286:2;4281:3;4222:67;:::i;:::-;4215:74;;4319:34;4315:1;4310:3;4306:11;4299:55;4385:8;4380:2;4375:3;4371:12;4364:30;4420:2;4415:3;4411:12;4404:19;;4205:224;;;:::o;4435:374::-;;4598:67;4662:2;4657:3;4598:67;:::i;:::-;4591:74;;4695:34;4691:1;4686:3;4682:11;4675:55;4761:12;4756:2;4751:3;4747:12;4740:34;4800:2;4795:3;4791:12;4784:19;;4581:228;;;:::o;4815:372::-;;4978:67;5042:2;5037:3;4978:67;:::i;:::-;4971:74;;5075:34;5071:1;5066:3;5062:11;5055:55;5141:10;5136:2;5131:3;5127:12;5120:32;5178:2;5173:3;5169:12;5162:19;;4961:226;;;:::o;5193:330::-;;5356:67;5420:2;5415:3;5356:67;:::i;:::-;5349:74;;5453:34;5449:1;5444:3;5440:11;5433:55;5514:2;5509:3;5505:12;5498:19;;5339:184;;;:::o;5529:367::-;;5692:67;5756:2;5751:3;5692:67;:::i;:::-;5685:74;;5789:34;5785:1;5780:3;5776:11;5769:55;5855:5;5850:2;5845:3;5841:12;5834:27;5887:2;5882:3;5878:12;5871:19;;5675:221;;;:::o;5902:369::-;;6065:67;6129:2;6124:3;6065:67;:::i;:::-;6058:74;;6162:34;6158:1;6153:3;6149:11;6142:55;6228:7;6223:2;6218:3;6214:12;6207:29;6262:2;6257:3;6253:12;6246:19;;6048:223;;;:::o;6277:368::-;;6440:67;6504:2;6499:3;6440:67;:::i;:::-;6433:74;;6537:34;6533:1;6528:3;6524:11;6517:55;6603:6;6598:2;6593:3;6589:12;6582:28;6636:2;6631:3;6627:12;6620:19;;6423:222;;;:::o;6651:369::-;;6814:67;6878:2;6873:3;6814:67;:::i;:::-;6807:74;;6911:34;6907:1;6902:3;6898:11;6891:55;6977:7;6972:2;6967:3;6963:12;6956:29;7011:2;7006:3;7002:12;6995:19;;6797:223;;;:::o;7026:329::-;;7189:67;7253:2;7248:3;7189:67;:::i;:::-;7182:74;;7286:33;7282:1;7277:3;7273:11;7266:54;7346:2;7341:3;7337:12;7330:19;;7172:183;;;:::o;7361:118::-;7448:24;7466:5;7448:24;:::i;:::-;7443:3;7436:37;7426:53;;:::o;7485:112::-;7568:22;7584:5;7568:22;:::i;:::-;7563:3;7556:35;7546:51;;:::o;7603:222::-;;7734:2;7723:9;7719:18;7711:26;;7747:71;7815:1;7804:9;7800:17;7791:6;7747:71;:::i;:::-;7701:124;;;;:::o;7831:210::-;;7956:2;7945:9;7941:18;7933:26;;7969:65;8031:1;8020:9;8016:17;8007:6;7969:65;:::i;:::-;7923:118;;;;:::o;8047:313::-;;8198:2;8187:9;8183:18;8175:26;;8247:9;8241:4;8237:20;8233:1;8222:9;8218:17;8211:47;8275:78;8348:4;8339:6;8275:78;:::i;:::-;8267:86;;8165:195;;;;:::o;8366:419::-;;8570:2;8559:9;8555:18;8547:26;;8619:9;8613:4;8609:20;8605:1;8594:9;8590:17;8583:47;8647:131;8773:4;8647:131;:::i;:::-;8639:139;;8537:248;;;:::o;8791:419::-;;8995:2;8984:9;8980:18;8972:26;;9044:9;9038:4;9034:20;9030:1;9019:9;9015:17;9008:47;9072:131;9198:4;9072:131;:::i;:::-;9064:139;;8962:248;;;:::o;9216:419::-;;9420:2;9409:9;9405:18;9397:26;;9469:9;9463:4;9459:20;9455:1;9444:9;9440:17;9433:47;9497:131;9623:4;9497:131;:::i;:::-;9489:139;;9387:248;;;:::o;9641:419::-;;9845:2;9834:9;9830:18;9822:26;;9894:9;9888:4;9884:20;9880:1;9869:9;9865:17;9858:47;9922:131;10048:4;9922:131;:::i;:::-;9914:139;;9812:248;;;:::o;10066:419::-;;10270:2;10259:9;10255:18;10247:26;;10319:9;10313:4;10309:20;10305:1;10294:9;10290:17;10283:47;10347:131;10473:4;10347:131;:::i;:::-;10339:139;;10237:248;;;:::o;10491:419::-;;10695:2;10684:9;10680:18;10672:26;;10744:9;10738:4;10734:20;10730:1;10719:9;10715:17;10708:47;10772:131;10898:4;10772:131;:::i;:::-;10764:139;;10662:248;;;:::o;10916:419::-;;11120:2;11109:9;11105:18;11097:26;;11169:9;11163:4;11159:20;11155:1;11144:9;11140:17;11133:47;11197:131;11323:4;11197:131;:::i;:::-;11189:139;;11087:248;;;:::o;11341:419::-;;11545:2;11534:9;11530:18;11522:26;;11594:9;11588:4;11584:20;11580:1;11569:9;11565:17;11558:47;11622:131;11748:4;11622:131;:::i;:::-;11614:139;;11512:248;;;:::o;11766:419::-;;11970:2;11959:9;11955:18;11947:26;;12019:9;12013:4;12009:20;12005:1;11994:9;11990:17;11983:47;12047:131;12173:4;12047:131;:::i;:::-;12039:139;;11937:248;;;:::o;12191:419::-;;12395:2;12384:9;12380:18;12372:26;;12444:9;12438:4;12434:20;12430:1;12419:9;12415:17;12408:47;12472:131;12598:4;12472:131;:::i;:::-;12464:139;;12362:248;;;:::o;12616:419::-;;12820:2;12809:9;12805:18;12797:26;;12869:9;12863:4;12859:20;12855:1;12844:9;12840:17;12833:47;12897:131;13023:4;12897:131;:::i;:::-;12889:139;;12787:248;;;:::o;13041:419::-;;13245:2;13234:9;13230:18;13222:26;;13294:9;13288:4;13284:20;13280:1;13269:9;13265:17;13258:47;13322:131;13448:4;13322:131;:::i;:::-;13314:139;;13212:248;;;:::o;13466:419::-;;13670:2;13659:9;13655:18;13647:26;;13719:9;13713:4;13709:20;13705:1;13694:9;13690:17;13683:47;13747:131;13873:4;13747:131;:::i;:::-;13739:139;;13637:248;;;:::o;13891:222::-;;14022:2;14011:9;14007:18;13999:26;;14035:71;14103:1;14092:9;14088:17;14079:6;14035:71;:::i;:::-;13989:124;;;;:::o;14119:214::-;;14246:2;14235:9;14231:18;14223:26;;14259:67;14323:1;14312:9;14308:17;14299:6;14259:67;:::i;:::-;14213:120;;;;:::o;14339:99::-;;14425:5;14419:12;14409:22;;14398:40;;;:::o;14444:169::-;;14562:6;14557:3;14550:19;14602:4;14597:3;14593:14;14578:29;;14540:73;;;;:::o;14619:305::-;;14678:20;14696:1;14678:20;:::i;:::-;14673:25;;14712:20;14730:1;14712:20;:::i;:::-;14707:25;;14866:1;14798:66;14794:74;14791:1;14788:81;14785:2;;;14872:18;;:::i;:::-;14785:2;14916:1;14913;14909:9;14902:16;;14663:261;;;;:::o;14930:191::-;;14990:20;15008:1;14990:20;:::i;:::-;14985:25;;15024:20;15042:1;15024:20;:::i;:::-;15019:25;;15063:1;15060;15057:8;15054:2;;;15068:18;;:::i;:::-;15054:2;15113:1;15110;15106:9;15098:17;;14975:146;;;;:::o;15127:96::-;;15193:24;15211:5;15193:24;:::i;:::-;15182:35;;15172:51;;;:::o;15229:90::-;;15306:5;15299:13;15292:21;15281:32;;15271:48;;;:::o;15325:126::-;;15402:42;15395:5;15391:54;15380:65;;15370:81;;;:::o;15457:77::-;;15523:5;15512:16;;15502:32;;;:::o;15540:86::-;;15615:4;15608:5;15604:16;15593:27;;15583:43;;;:::o;15632:307::-;15700:1;15710:113;15724:6;15721:1;15718:13;15710:113;;;15809:1;15804:3;15800:11;15794:18;15790:1;15785:3;15781:11;15774:39;15746:2;15743:1;15739:10;15734:15;;15710:113;;;15841:6;15838:1;15835:13;15832:2;;;15921:1;15912:6;15907:3;15903:16;15896:27;15832:2;15681:258;;;;:::o;15945:320::-;;16026:1;16020:4;16016:12;16006:22;;16073:1;16067:4;16063:12;16094:18;16084:2;;16150:4;16142:6;16138:17;16128:27;;16084:2;16212;16204:6;16201:14;16181:18;16178:38;16175:2;;;16231:18;;:::i;:::-;16175:2;15996:269;;;;:::o;16271:180::-;16319:77;16316:1;16309:88;16416:4;16413:1;16406:15;16440:4;16437:1;16430:15;16457:180;16505:77;16502:1;16495:88;16602:4;16599:1;16592:15;16626:4;16623:1;16616:15;16643:102;;16735:2;16731:7;16726:2;16719:5;16715:14;16711:28;16701:38;;16691:54;;;:::o;16751:122::-;16824:24;16842:5;16824:24;:::i;:::-;16817:5;16814:35;16804:2;;16863:1;16860;16853:12;16804:2;16794:79;:::o;16879:122::-;16952:24;16970:5;16952:24;:::i;:::-;16945:5;16942:35;16932:2;;16991:1;16988;16981:12;16932:2;16922:79;:::o

Swarm Source

ipfs://005e4b08b2096cf66157fee43f6e964d16ff0c67d05a0c10d14caef508fbf121
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.