Token MeebMaster.com Token

 

Overview ERC-20

Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
7,858,069.385281 MEEB

Holders:
9,197 addresses
 
Filtered by Token Holder (Polygon BabyDoge: PolyBabyDoge Token)

Balance
0.004942162689142 MEEB

Value
$0.00
0xdf2140dee6b07ae495382bc1cd446f7b328f63e3
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

A Polygon-based real-time PvP game to bring NFT gaming experience to everyone.


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

Contract Source Code Verified (Exact Match)

Contract Name:
MeebToken

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-17
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.6;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

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

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

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

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

/**
 * @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 guidelines: functions revert instead
 * of 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 Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 public cap;
    mapping(address => bool) public minter;

    uint256 private _totalBurned;

    /* ========== EVENTS ========== */

    event MinterUpdate(address indexed account, bool isMinter);

    /* ========== Modifiers =============== */

    modifier onlyMinter() {
        require(minter[msg.sender], "!minter");
        _;
    }

    /* ========== GOVERNANCE ========== */

    constructor() ERC20("MeebMaster.com Token", "MEEB") {
        cap = 21000000 ether; // Max Supply: 21 million MEEB
        _mint(_msgSender(), (cap * 15) / 100); // Private sale + IDO + Airdrop + Advisor: 15%
    }

    function setCap(uint256 _newCap) external onlyOwner {
        require(totalSupply() <= _newCap, "exceeds current supply");
        cap = _newCap;
    }

    function setMinter(address _account, bool _isMinter) external onlyOwner {
        require(_account != address(0), "zero");
        minter[_account] = _isMinter;
        emit MinterUpdate(_account, _isMinter);
    }

    /* ========== VIEW FUNCTIONS ========== */

    function totalBurned() external view returns (uint256) {
        return _totalBurned;
    }

    /* ========== MUTATIVE FUNCTIONS ========== */

    function mint(address _recipient, uint256 _amount) external onlyMinter returns (bool) {
        uint256 balanceBefore = balanceOf(_recipient);
        _mint(_recipient, _amount);
        return balanceOf(_recipient) > balanceBefore;
    }

    function burn(uint256 _amount) external {
        _burn(msg.sender, _amount);
    }

    function burnFrom(address _account, uint256 _amount) external {
        _approve(_account, _msgSender(), allowance(_account, _msgSender()).sub(_amount, "ERC20: burn amount exceeds allowance"));
        _burn(_account, _amount);
    }

    /* ========== OVERRIDE STANDARD FUNCTIONS ========== */

    /**
     * @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 override {
        super._burn(_account, _amount);
        _totalBurned = _totalBurned.add(_amount);
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - minted tokens must not cause the total supply to go over the cap.
     */
    function _beforeTokenTransfer(
        address _from,
        address _to,
        uint256 _amount
    ) internal override {
        super._beforeTokenTransfer(_from, _to, _amount);
        if (_from == address(0)) {
            // When minting tokens
            require(totalSupply().add(_amount) <= cap, "cap exceeded");
        }
        if (_to == address(0)) {
            // When burning tokens
            cap = cap.sub(_amount, "burn amount exceeds cap");
        }
    }

    /* ========== EMERGENCY ========== */

    function rescueStuckErc20(address _token) external onlyOwner {
        IERC20(_token).transfer(owner(), IERC20(_token).balanceOf(address(this)));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isMinter","type":"bool"}],"name":"MinterUpdate","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","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":"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":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"rescueStuckErc20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCap","type":"uint256"}],"name":"setCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_isMinter","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040523480156200001157600080fd5b50604080518082018252601481527f4d6565624d61737465722e636f6d20546f6b656e00000000000000000000000060208083019182528351808501909452600484526326a2a2a160e11b90840152815191929162000073916003916200036d565b508051620000899060049060208401906200036d565b505050620000a6620000a0620000e560201b60201c565b620000e9565b6a115eec47f6cf7e35000000600655620000df336064600654600f620000cd9190620004a9565b620000d9919062000486565b6200013b565b6200051e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001975760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001a56000838362000232565b8060026000828254620001b991906200046b565b90915550506001600160a01b03821660009081526020819052604081208054839290620001e89084906200046b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6200024a8383836200032460201b62000de41760201c565b6001600160a01b038316620002be576006546200027f826200026b60025490565b6200032960201b62000de91790919060201c565b1115620002be5760405162461bcd60e51b815260206004820152600c60248201526b18d85c08195e18d95959195960a21b60448201526064016200018e565b6001600160a01b038216620003245762000320816040518060400160405280601781526020017f6275726e20616d6f756e742065786365656473206361700000000000000000008152506006546200033e60201b62000dfc179092919060201c565b6006555b505050565b60006200033782846200046b565b9392505050565b60008184841115620003655760405162461bcd60e51b81526004016200018e919062000413565b505050900390565b8280546200037b90620004cb565b90600052602060002090601f0160209004810192826200039f5760008555620003ea565b82601f10620003ba57805160ff1916838001178555620003ea565b82800160010185558215620003ea579182015b82811115620003ea578251825591602001919060010190620003cd565b50620003f8929150620003fc565b5090565b5b80821115620003f85760008155600101620003fd565b600060208083528351808285015260005b81811015620004425785810183015185820160400152820162000424565b8181111562000455576000604083870101525b50601f01601f1916929092016040019392505050565b6000821982111562000481576200048162000508565b500190565b600082620004a457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615620004c657620004c662000508565b500290565b600181811c90821680620004e057607f821691505b602082108114156200050257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b611a5c806200052e6000396000f3fe608060405234801561001057600080fd5b506004361061018d5760003560e01c806370a08231116100e3578063a457c2d71161008c578063d89135cd11610066578063d89135cd1461034e578063dd62ed3e14610356578063f2fde38b1461039c57600080fd5b8063a457c2d714610315578063a9059cbb14610328578063cf456ae71461033b57600080fd5b806381ca7eba116100bd57806381ca7eba146102d25780638da5cb5b146102e557806395d89b411461030d57600080fd5b806370a0823114610281578063715018a6146102b757806379cc6790146102bf57600080fd5b8063355274ea1161014557806340c10f191161011f57806340c10f191461024657806342966c681461025957806347786d371461026e57600080fd5b8063355274ea1461020757806339509351146102105780633dd08c381461022357600080fd5b806318160ddd1161017657806318160ddd146101d357806323b872dd146101e5578063313ce567146101f857600080fd5b806306fdde0314610192578063095ea7b3146101b0575b600080fd5b61019a6103af565b6040516101a791906118cf565b60405180910390f35b6101c36101be366004611856565b610441565b60405190151581526020016101a7565b6002545b6040519081526020016101a7565b6101c36101f33660046117e3565b610457565b604051601281526020016101a7565b6101d760065481565b6101c361021e366004611856565b610542565b6101c3610231366004611795565b60076020526000908152604090205460ff1681565b6101c3610254366004611856565b61058b565b61026c61026736600461189d565b61066a565b005b61026c61027c36600461189d565b610677565b6101d761028f366004611795565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61026c61076f565b61026c6102cd366004611856565b6107fc565b61026c6102e0366004611795565b61083d565b60055460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101a7565b61019a610a39565b6101c3610323366004611856565b610a48565b6101c3610336366004611856565b610b20565b61026c61034936600461181f565b610b2d565b6008546101d7565b6101d76103643660046117b0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61026c6103aa366004611795565b610cb7565b6060600380546103be90611971565b80601f01602080910402602001604051908101604052809291908181526020018280546103ea90611971565b80156104375780601f1061040c57610100808354040283529160200191610437565b820191906000526020600020905b81548152906001019060200180831161041a57829003601f168201915b5050505050905090565b600061044e338484610e42565b50600192915050565b6000610464848484610ff5565b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602090815260408083203384529091529020548281101561052a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105378533858403610e42565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161044e918590610586908690611942565b610e42565b3360009081526007602052604081205460ff16610604576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f216d696e746572000000000000000000000000000000000000000000000000006044820152606401610521565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205461063484846112b4565b806106618573ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b11949350505050565b61067433826113e0565b50565b60055473ffffffffffffffffffffffffffffffffffffffff1633146106f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610521565b8061070260025490565b111561076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f657863656564732063757272656e7420737570706c79000000000000000000006044820152606401610521565b600655565b60055473ffffffffffffffffffffffffffffffffffffffff1633146107f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610521565b6107fa60006113fe565b565b61082f823361058684604051806060016040528060248152602001611a03602491396108288833610364565b9190610dfc565b61083982826113e0565b5050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146108be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610521565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6108f960055473ffffffffffffffffffffffffffffffffffffffff1690565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8516906370a082319060240160206040518083038186803b15801561095e57600080fd5b505afa158015610972573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099691906118b6565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401602060405180830381600087803b158015610a0157600080fd5b505af1158015610a15573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108399190611880565b6060600480546103be90611971565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610b09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610521565b610b163385858403610e42565b5060019392505050565b600061044e338484610ff5565b60055473ffffffffffffffffffffffffffffffffffffffff163314610bae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610521565b73ffffffffffffffffffffffffffffffffffffffff8216610c2d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105219060208082526004908201527f7a65726f00000000000000000000000000000000000000000000000000000000604082015260600190565b73ffffffffffffffffffffffffffffffffffffffff821660008181526007602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f279360e293bcf8120adefa5fb6f669c774022ed25c09e099edd1818d155c57b6910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610d38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610521565b73ffffffffffffffffffffffffffffffffffffffff8116610ddb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610521565b610674816113fe565b505050565b6000610df58284611942565b9392505050565b60008184841115610e3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052191906118cf565b505050900390565b73ffffffffffffffffffffffffffffffffffffffff8316610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610521565b73ffffffffffffffffffffffffffffffffffffffff8216610f87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610521565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610521565b73ffffffffffffffffffffffffffffffffffffffff821661113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610521565b611146838383611475565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156111fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610521565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290611240908490611942565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a691815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610521565b61133d60008383611475565b806002600082825461134f9190611942565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290611389908490611942565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6113ea8282611573565b6008546113f79082610de9565b6008555050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff831661150e576006546114a6826114a060025490565b90610de9565b111561150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f63617020657863656564656400000000000000000000000000000000000000006044820152606401610521565b73ffffffffffffffffffffffffffffffffffffffff8216610de45760408051808201909152601781527f6275726e20616d6f756e74206578636565647320636170000000000000000000602082015260065461156b918390610dfc565b600655505050565b73ffffffffffffffffffffffffffffffffffffffff8216611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610521565b61162282600083611475565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054818110156116d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610521565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040812083830390556002805484929061171490849061195a565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461179057600080fd5b919050565b6000602082840312156117a757600080fd5b610df58261176c565b600080604083850312156117c357600080fd5b6117cc8361176c565b91506117da6020840161176c565b90509250929050565b6000806000606084860312156117f857600080fd5b6118018461176c565b925061180f6020850161176c565b9150604084013590509250925092565b6000806040838503121561183257600080fd5b61183b8361176c565b9150602083013561184b816119f4565b809150509250929050565b6000806040838503121561186957600080fd5b6118728361176c565b946020939093013593505050565b60006020828403121561189257600080fd5b8151610df5816119f4565b6000602082840312156118af57600080fd5b5035919050565b6000602082840312156118c857600080fd5b5051919050565b600060208083528351808285015260005b818110156118fc578581018301518582016040015282016118e0565b8181111561190e576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115611955576119556119c5565b500190565b60008282101561196c5761196c6119c5565b500390565b600181811c9082168061198557607f821691505b602082108114156119bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b801515811461067457600080fdfe45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220a6fa756913a9cc3b64bba4f83236c332c9deccce679c7845b592a574000f1bb064736f6c63430008060033

Deployed ByteCode Sourcemap

25089:3345:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6074:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8241:169;;;;;;:::i;:::-;;:::i;:::-;;;2905:14:1;;2898:22;2880:41;;2868:2;2853:18;8241:169:0;2835:92:1;7194:108:0;7282:12;;7194:108;;;9871:25:1;;;9859:2;9844:18;7194:108:0;9826:76:1;8892:492:0;;;;;;:::i;:::-;;:::i;7036:93::-;;;7119:2;10049:36:1;;10037:2;10022:18;7036:93:0;10004:87:1;25168:18:0;;;;;;9793:215;;;;;;:::i;:::-;;:::i;25193:38::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26399:242;;;;;;:::i;:::-;;:::i;26649:85::-;;;;;;:::i;:::-;;:::i;:::-;;25806:154;;;;;;:::i;:::-;;:::i;7365:127::-;;;;;;:::i;:::-;7466:18;;7439:7;7466:18;;;;;;;;;;;;7365:127;17596:94;;;:::i;26742:236::-;;;;;;:::i;:::-;;:::i;28278:153::-;;;;;;:::i;:::-;;:::i;16945:87::-;17018:6;;16945:87;;17018:6;;;;2353:74:1;;2341:2;2326:18;16945:87:0;2308:125:1;6293:104:0;;;:::i;10511:413::-;;;;;;:::i;:::-;;:::i;7705:175::-;;;;;;:::i;:::-;;:::i;25968:218::-;;;;;;:::i;:::-;;:::i;26244:93::-;26317:12;;26244:93;;7943:151;;;;;;:::i;:::-;8059:18;;;;8032:7;8059:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7943:151;17845:192;;;;;;:::i;:::-;;:::i;6074:100::-;6128:13;6161:5;6154:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6074:100;:::o;8241:169::-;8324:4;8341:39;3973:10;8364:7;8373:6;8341:8;:39::i;:::-;-1:-1:-1;8398:4:0;8241:169;;;;:::o;8892:492::-;9032:4;9049:36;9059:6;9067:9;9078:6;9049:9;:36::i;:::-;9125:19;;;9098:24;9125:19;;;:11;:19;;;;;;;;3973:10;9125:33;;;;;;;;9177:26;;;;9169:79;;;;;;;7178:2:1;9169:79:0;;;7160:21:1;7217:2;7197:18;;;7190:30;7256:34;7236:18;;;7229:62;7327:10;7307:18;;;7300:38;7355:19;;9169:79:0;;;;;;;;;9284:57;9293:6;3973:10;9334:6;9315:16;:25;9284:8;:57::i;:::-;-1:-1:-1;9372:4:0;;8892:492;-1:-1:-1;;;;8892:492:0:o;9793:215::-;3973:10;9881:4;9930:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;9881:4;;9898:80;;9921:7;;9930:47;;9967:10;;9930:47;:::i;:::-;9898:8;:80::i;26399:242::-;25484:10;26479:4;25477:18;;;:6;:18;;;;;;;;25469:38;;;;;;;3795:2:1;25469:38:0;;;3777:21:1;3834:1;3814:18;;;3807:29;3872:9;3852:18;;;3845:37;3899:18;;25469:38:0;3767:156:1;25469:38:0;7466:18;;;26496:21:::1;7466:18:::0;;;;;;;;;;;26552:26:::1;7466:18:::0;26570:7;26552:5:::1;:26::i;:::-;26620:13;26596:21;26606:10;7466:18:::0;;7439:7;7466:18;;;;;;;;;;;;7365:127;26596:21:::1;:37;::::0;26399:242;-1:-1:-1;;;;26399:242:0:o;26649:85::-;26700:26;26706:10;26718:7;26700:5;:26::i;:::-;26649:85;:::o;25806:154::-;17018:6;;17165:23;17018:6;3973:10;17165:23;17157:68;;;;;;;7587:2:1;17157:68:0;;;7569:21:1;;;7606:18;;;7599:30;7665:34;7645:18;;;7638:62;7717:18;;17157:68:0;7559:182:1;17157:68:0;25894:7:::1;25877:13;7282:12:::0;;;7194:108;25877:13:::1;:24;;25869:59;;;::::0;::::1;::::0;;6827:2:1;25869:59:0::1;::::0;::::1;6809:21:1::0;6866:2;6846:18;;;6839:30;6905:24;6885:18;;;6878:52;6947:18;;25869:59:0::1;6799:172:1::0;25869:59:0::1;25939:3;:13:::0;25806:154::o;17596:94::-;17018:6;;17165:23;17018:6;3973:10;17165:23;17157:68;;;;;;;7587:2:1;17157:68:0;;;7569:21:1;;;7606:18;;;7599:30;7665:34;7645:18;;;7638:62;7717:18;;17157:68:0;7559:182:1;17157:68:0;17661:21:::1;17679:1;17661:9;:21::i;:::-;17596:94::o:0;26742:236::-;26815:120;26824:8;3973:10;26848:86;26886:7;26848:86;;;;;;;;;;;;;;;;;:33;26858:8;3973:10;7943:151;:::i;26848:33::-;:37;:86;:37;:86::i;26815:120::-;26946:24;26952:8;26962:7;26946:5;:24::i;:::-;26742:236;;:::o;28278:153::-;17018:6;;17165:23;17018:6;3973:10;17165:23;17157:68;;;;;;;7587:2:1;17157:68:0;;;7569:21:1;;;7606:18;;;7599:30;7665:34;7645:18;;;7638:62;7717:18;;17157:68:0;7559:182:1;17157:68:0;28357:6:::1;28350:23;;;28374:7;17018:6:::0;;;;;16945:87;28374:7:::1;28383:39;::::0;;;;28416:4:::1;28383:39;::::0;::::1;2353:74:1::0;28383:24:0::1;::::0;::::1;::::0;::::1;::::0;2326:18:1;;28383:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28350:73;::::0;;::::1;::::0;;;;;;2642:42:1;2630:55;;;28350:73:0::1;::::0;::::1;2612:74:1::0;2702:18;;;2695:34;2585:18;;28350:73:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;6293:104::-:0;6349:13;6382:7;6375:14;;;;;:::i;10511:413::-;3973:10;10604:4;10648:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;10701:35;;;;10693:85;;;;;;;9161:2:1;10693:85:0;;;9143:21:1;9200:2;9180:18;;;9173:30;9239:34;9219:18;;;9212:62;9310:7;9290:18;;;9283:35;9335:19;;10693:85:0;9133:227:1;10693:85:0;10814:67;3973:10;10837:7;10865:15;10846:16;:34;10814:8;:67::i;:::-;-1:-1:-1;10912:4:0;;10511:413;-1:-1:-1;;;10511:413:0:o;7705:175::-;7791:4;7808:42;3973:10;7832:9;7843:6;7808:9;:42::i;25968:218::-;17018:6;;17165:23;17018:6;3973:10;17165:23;17157:68;;;;;;;7587:2:1;17157:68:0;;;7569:21:1;;;7606:18;;;7599:30;7665:34;7645:18;;;7638:62;7717:18;;17157:68:0;7559:182:1;17157:68:0;26059:22:::1;::::0;::::1;26051:39;;;;;;;;;;;5747:2:1::0;5729:21;;;5786:1;5766:18;;;5759:29;5824:6;5819:2;5804:18;;5797:34;5863:2;5848:18;;5719:153;26051:39:0::1;26101:16;::::0;::::1;;::::0;;;:6:::1;:16;::::0;;;;;;;;:28;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;26145:33;;2880:41:1;;;26145:33:0::1;::::0;2853:18:1;26145:33:0::1;;;;;;;25968:218:::0;;:::o;17845:192::-;17018:6;;17165:23;17018:6;3973:10;17165:23;17157:68;;;;;;;7587:2:1;17157:68:0;;;7569:21:1;;;7606:18;;;7599:30;7665:34;7645:18;;;7638:62;7717:18;;17157:68:0;7559:182:1;17157:68:0;17934:22:::1;::::0;::::1;17926:73;;;::::0;::::1;::::0;;4937:2:1;17926:73:0::1;::::0;::::1;4919:21:1::0;4976:2;4956:18;;;4949:30;5015:34;4995:18;;;4988:62;5086:8;5066:18;;;5059:36;5112:19;;17926:73:0::1;4909:228:1::0;17926:73:0::1;18010:19;18020:8;18010:9;:19::i;15175:125::-:0;;;;:::o;20924:98::-;20982:7;21009:5;21013:1;21009;:5;:::i;:::-;21002:12;20924:98;-1:-1:-1;;;20924:98:0:o;23203:240::-;23323:7;23384:12;23376:6;;;;23368:29;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;23419:5:0;;;23203:240::o;14195:380::-;14331:19;;;14323:68;;;;;;;8756:2:1;14323:68:0;;;8738:21:1;8795:2;8775:18;;;8768:30;8834:34;8814:18;;;8807:62;8905:6;8885:18;;;8878:34;8929:19;;14323:68:0;8728:226:1;14323:68:0;14410:21;;;14402:68;;;;;;;5344:2:1;14402:68:0;;;5326:21:1;5383:2;5363:18;;;5356:30;5422:34;5402:18;;;5395:62;5493:4;5473:18;;;5466:32;5515:19;;14402:68:0;5316:224:1;14402:68:0;14483:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14535:32;;9871:25:1;;;14535:32:0;;9844:18:1;14535:32:0;;;;;;;14195:380;;;:::o;11414:733::-;11554:20;;;11546:70;;;;;;;8350:2:1;11546:70:0;;;8332:21:1;8389:2;8369:18;;;8362:30;8428:34;8408:18;;;8401:62;8499:7;8479:18;;;8472:35;8524:19;;11546:70:0;8322:227:1;11546:70:0;11635:23;;;11627:71;;;;;;;4130:2:1;11627:71:0;;;4112:21:1;4169:2;4149:18;;;4142:30;4208:34;4188:18;;;4181:62;4279:5;4259:18;;;4252:33;4302:19;;11627:71:0;4102:225:1;11627:71:0;11711:47;11732:6;11740:9;11751:6;11711:20;:47::i;:::-;11795:17;;;11771:21;11795:17;;;;;;;;;;;11831:23;;;;11823:74;;;;;;;6420:2:1;11823:74:0;;;6402:21:1;6459:2;6439:18;;;6432:30;6498:34;6478:18;;;6471:62;6569:8;6549:18;;;6542:36;6595:19;;11823:74:0;6392:228:1;11823:74:0;11933:17;;;;:9;:17;;;;;;;;;;;11953:22;;;11933:42;;11997:20;;;;;;;;:30;;11969:6;;11933:9;11997:30;;11969:6;;11997:30;:::i;:::-;;;;;;;;12062:9;12045:35;;12054:6;12045:35;;;12073:6;12045:35;;;;9871:25:1;;9859:2;9844:18;;9826:76;12045:35:0;;;;;;;;11535:612;11414:733;;;:::o;12434:399::-;12518:21;;;12510:65;;;;;;;9567:2:1;12510:65:0;;;9549:21:1;9606:2;9586:18;;;9579:30;9645:33;9625:18;;;9618:61;9696:18;;12510:65:0;9539:181:1;12510:65:0;12588:49;12617:1;12621:7;12630:6;12588:20;:49::i;:::-;12666:6;12650:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;12683:18:0;;;:9;:18;;;;;;;;;;:28;;12705:6;;12683:9;:28;;12705:6;;12683:28;:::i;:::-;;;;-1:-1:-1;;12727:37:0;;9871:25:1;;;12727:37:0;;;;12744:1;;12727:37;;9859:2:1;9844:18;12727:37:0;;;;;;;26742:236;;:::o;27376:168::-;27455:30;27467:8;27477:7;27455:11;:30::i;:::-;27511:12;;:25;;27528:7;27511:16;:25::i;:::-;27496:12;:40;-1:-1:-1;;27376:168:0:o;18045:173::-;18120:6;;;;18137:17;;;;;;;;;;;18170:40;;18120:6;;;18137:17;18120:6;;18170:40;;18101:16;;18170:40;18090:128;18045:173;:::o;27731:494::-;27931:19;;;27927:146;;28041:3;;28011:26;28029:7;28011:13;7282:12;;;7194:108;28011:13;:17;;:26::i;:::-;:33;;28003:58;;;;;;;6079:2:1;28003:58:0;;;6061:21:1;6118:2;6098:18;;;6091:30;6157:14;6137:18;;;6130:42;6189:18;;28003:58:0;6051:162:1;28003:58:0;28087:17;;;28083:135;;28163:43;;;;;;;;;;;;;;;;;:3;;:43;;28171:7;;28163;:43::i;:::-;28157:3;:49;27731:494;;;:::o;13166:591::-;13250:21;;;13242:67;;;;;;;7948:2:1;13242:67:0;;;7930:21:1;7987:2;7967:18;;;7960:30;8026:34;8006:18;;;7999:62;8097:3;8077:18;;;8070:31;8118:19;;13242:67:0;7920:223:1;13242:67:0;13322:49;13343:7;13360:1;13364:6;13322:20;:49::i;:::-;13409:18;;;13384:22;13409:18;;;;;;;;;;;13446:24;;;;13438:71;;;;;;;4534:2:1;13438:71:0;;;4516:21:1;4573:2;4553:18;;;4546:30;4612:34;4592:18;;;4585:62;4683:4;4663:18;;;4656:32;4705:19;;13438:71:0;4506:224:1;13438:71:0;13545:18;;;:9;:18;;;;;;;;;;13566:23;;;13545:44;;13611:12;:22;;13583:6;;13545:9;13611:22;;13583:6;;13611:22;:::i;:::-;;;;-1:-1:-1;;13651:37:0;;9871:25:1;;;13677:1:0;;13651:37;;;;;;9859:2:1;9844:18;13651:37:0;;;;;;;15175:125;;;:::o;14:196:1:-;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:315::-;1069:6;1077;1130:2;1118:9;1109:7;1105:23;1101:32;1098:2;;;1146:1;1143;1136:12;1098:2;1169:29;1188:9;1169:29;:::i;:::-;1159:39;;1248:2;1237:9;1233:18;1220:32;1261:28;1283:5;1261:28;:::i;:::-;1308:5;1298:15;;;1088:231;;;;;:::o;1324:254::-;1392:6;1400;1453:2;1441:9;1432:7;1428:23;1424:32;1421:2;;;1469:1;1466;1459:12;1421:2;1492:29;1511:9;1492:29;:::i;:::-;1482:39;1568:2;1553:18;;;;1540:32;;-1:-1:-1;;;1411:167:1:o;1583:245::-;1650:6;1703:2;1691:9;1682:7;1678:23;1674:32;1671:2;;;1719:1;1716;1709:12;1671:2;1751:9;1745:16;1770:28;1792:5;1770:28;:::i;1833:180::-;1892:6;1945:2;1933:9;1924:7;1920:23;1916:32;1913:2;;;1961:1;1958;1951:12;1913:2;-1:-1:-1;1984:23:1;;1903:110;-1:-1:-1;1903:110:1:o;2018:184::-;2088:6;2141:2;2129:9;2120:7;2116:23;2112:32;2109:2;;;2157:1;2154;2147:12;2109:2;-1:-1:-1;2180:16:1;;2099:103;-1:-1:-1;2099:103:1:o;2932:656::-;3044:4;3073:2;3102;3091:9;3084:21;3134:6;3128:13;3177:6;3172:2;3161:9;3157:18;3150:34;3202:1;3212:140;3226:6;3223:1;3220:13;3212:140;;;3321:14;;;3317:23;;3311:30;3287:17;;;3306:2;3283:26;3276:66;3241:10;;3212:140;;;3370:6;3367:1;3364:13;3361:2;;;3440:1;3435:2;3426:6;3415:9;3411:22;3407:31;3400:42;3361:2;-1:-1:-1;3504:2:1;3492:15;3509:66;3488:88;3473:104;;;;3579:2;3469:113;;3053:535;-1:-1:-1;;;3053:535:1:o;10096:128::-;10136:3;10167:1;10163:6;10160:1;10157:13;10154:2;;;10173:18;;:::i;:::-;-1:-1:-1;10209:9:1;;10144:80::o;10229:125::-;10269:4;10297:1;10294;10291:8;10288:2;;;10302:18;;:::i;:::-;-1:-1:-1;10339:9:1;;10278:76::o;10359:437::-;10438:1;10434:12;;;;10481;;;10502:2;;10556:4;10548:6;10544:17;10534:27;;10502:2;10609;10601:6;10598:14;10578:18;10575:38;10572:2;;;10646:77;10643:1;10636:88;10747:4;10744:1;10737:15;10775:4;10772:1;10765:15;10572:2;;10414:382;;;:::o;10801:184::-;10853:77;10850:1;10843:88;10950:4;10947:1;10940:15;10974:4;10971:1;10964:15;10990:118;11076:5;11069:13;11062:21;11055:5;11052:32;11042:2;;11098:1;11095;11088:12

Swarm Source

ipfs://a6fa756913a9cc3b64bba4f83236c332c9deccce679c7845b592a574000f1bb0
Loading