FTM Price: $0.685972 (+1.04%)
 

Overview

Max Total Supply

2,730,181.811870291552979603 FBA

Holders

4,374 (0.00%)

Market

Price

$1.88 @ 2.740635 FTM (-4.18%)

Onchain Market Cap

$5,132,741.81

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.060680919563920021 FBA

Value
$0.11 ( ~0.160356283816474 FTM) [0.0000%]
0xbac5be3dc5aeff67c24962746317b4fb05580a23
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Firebird Finance is a multi-chain DEX aggregator that offers cashback on swaps while being equipped with industry swap technology

Contract Source Code Verified (Exact Match)

Contract Name:
FbaToken

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2022-06-23
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.15;

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
/**
 * @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);
}

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)
/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(
            ERC20.totalSupply() + amount <= cap(),
            "ERC20Capped: cap exceeded"
        );
        super._mint(account, amount);
    }
}

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract FbaToken is ERC20Capped, Ownable {
    using SafeMath for uint256;

    uint256 private constant CAP = 21000000 ether;
    uint256 private constant INITIAL_LIQUIDITY = 400000 ether;

    uint256 public constant DAY_0_TS = 1656201600; // Sunday, 26 June 2022 00:00:00 UTC

    mapping(address => uint256) public minterCap;
    mapping(address => uint256) public dailyMinterCap;
    mapping(address => uint256) public minterLastMintingDay; // user => last minting day index
    mapping(address => uint256) public minterTodayMintedAmount; // user => current day total minted amount
    mapping(address => uint256) public minterTotalAccumulatedMintedAmount; // user => total accumulated minted amount

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

    event MinterCapUpdate(address indexed account, uint256 cap);
    event DailyMinterCapUpdate(address indexed account, uint256 dailyCap);

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

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

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

    constructor() ERC20("Firebird Aggregator", "FBA") ERC20Capped(CAP) {
        _mint(msg.sender, INITIAL_LIQUIDITY); // for initial liquidity deployment
    }

    function setMinterCap(address _account, uint256 _minterCap)
        external
        onlyOwner
    {
        require(_account != address(0), "zero");
        minterCap[_account] = _minterCap;
        emit MinterCapUpdate(_account, _minterCap);
    }

    function setDailyMinterCap(address _account, uint256 _dailyMinterCap)
        external
        onlyOwner
    {
        require(_account != address(0), "zero");
        dailyMinterCap[_account] = _dailyMinterCap;
        emit DailyMinterCapUpdate(_account, _dailyMinterCap);
    }

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

    function getDayIndex() public view returns (uint256) {
        return (block.timestamp - DAY_0_TS) / 24 hours;
    }

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

    function mint(address _recipient, uint256 _amount) public onlyMinter {
        if (minterCap[msg.sender] >= _amount) {
            minterCap[msg.sender] -= _amount;
        } else {
            require(
                dailyMinterCap[msg.sender] > 0,
                "need minting or daily minting cap"
            );
            uint256 _todayIndex = getDayIndex();
            if (_todayIndex > minterLastMintingDay[msg.sender]) {
                minterLastMintingDay[msg.sender] = _todayIndex;
                minterTodayMintedAmount[msg.sender] = _amount;
            } else {
                minterTodayMintedAmount[msg.sender] += _amount;
                require(
                    minterTodayMintedAmount[msg.sender] <=
                        dailyMinterCap[msg.sender],
                    "exceed daily minting cap"
                );
            }
        }
        minterTotalAccumulatedMintedAmount[msg.sender] += _amount;
        _mint(_recipient, _amount);
    }

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

    function burnFrom(address _account, uint256 _amount) external {
        _approve(
            _account,
            msg.sender,
            allowance(_account, msg.sender) - _amount
        );
        _burn(_account, _amount);
    }

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

    function governanceRecoverUnsupported(IERC20 _token) external onlyOwner {
        _token.transfer(owner(), _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":"uint256","name":"dailyCap","type":"uint256"}],"name":"DailyMinterCapUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"MinterCapUpdate","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":[],"name":"DAY_0_TS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"","type":"address"}],"name":"dailyMinterCap","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":[],"name":"getDayIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterLastMintingDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterTodayMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterTotalAccumulatedMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_account","type":"address"},{"internalType":"uint256","name":"_dailyMinterCap","type":"uint256"}],"name":"setDailyMinterCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_minterCap","type":"uint256"}],"name":"setMinterCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b506a115eec47f6cf7e350000006040518060400160405280601381526020017f46697265626972642041676772656761746f72000000000000000000000000008152506040518060400160405280600381526020016246424160e81b81525081600390816200008191906200038e565b5060046200009082826200038e565b50505060008111620000e95760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a206361702069732030000000000000000000000060448201526064015b60405180910390fd5b608052620000f73362000113565b6200010d336954b40b1f852bda00000062000165565b62000481565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b608051816200017e620001f560201b6200055c1760201c565b6200018a91906200045a565b1115620001da5760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401620000e0565b620001f18282620001fb60201b62000fee1760201c565b5050565b60025490565b6001600160a01b038216620002535760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000e0565b80600260008282546200026791906200045a565b90915550506001600160a01b03821660009081526020819052604081208054839290620002969084906200045a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3620001f1600083835b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200031557607f821691505b6020821081036200033657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002e557600081815260208120601f850160051c81016020861015620003655750805b601f850160051c820191505b81811015620003865782815560010162000371565b505050505050565b81516001600160401b03811115620003aa57620003aa620002ea565b620003c281620003bb845462000300565b846200033c565b602080601f831160018114620003fa5760008415620003e15750858301515b600019600386901b1c1916600185901b17855562000386565b600085815260208120601f198616915b828110156200042b578886015182559484019460019091019084016200040a565b50858210156200044a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156200047c57634e487b7160e01b600052601160045260246000fd5b500190565b608051611c24620004a46000396000818161026c015261164e0152611c246000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806379cc6790116100f9578063a457c2d711610097578063c8e1b4ce11610071578063c8e1b4ce14610410578063dd62ed3e14610423578063e8d4a0f314610469578063f2fde38b1461047c57600080fd5b8063a457c2d7146103ca578063a9059cbb146103dd578063c3292e46146103f057600080fd5b80638da5cb5b116100d35780638da5cb5b1461036757806391729fd81461038f57806395d89b41146103af578063989475e5146103b757600080fd5b806379cc6790146103295780637a0ecef61461033c578063857042651461034757600080fd5b8063355274ea1161016657806342966c681161014057806342966c68146102b857806354a65fcc146102cb57806370a08231146102eb578063715018a61461032157600080fd5b8063355274ea1461026a578063395093511461029057806340c10f19146102a357600080fd5b806310b05770116101a257806310b057701461022057806318160ddd1461024057806323b872dd14610248578063313ce5671461025b57600080fd5b806306fdde03146101c9578063095ea7b3146101e75780630b3904831461020a575b600080fd5b6101d161048f565b6040516101de919061194f565b60405180910390f35b6101fa6101f53660046119e4565b610521565b60405190151581526020016101de565b610212610539565b6040519081526020016101de565b61021261022e366004611a10565b60086020526000908152604090205481565b600254610212565b6101fa610256366004611a34565b610562565b604051601281526020016101de565b7f0000000000000000000000000000000000000000000000000000000000000000610212565b6101fa61029e3660046119e4565b610586565b6102b66102b13660046119e4565b6105d2565b005b6102b66102c6366004611a75565b61084e565b6102126102d9366004611a10565b60066020526000908152604090205481565b6102126102f9366004611a10565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6102b661085b565b6102b66103373660046119e4565b6108e8565b6102126362b7a18081565b610212610355366004611a10565b60096020526000908152604090205481565b60055460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101de565b61021261039d366004611a10565b60076020526000908152604090205481565b6101d1610935565b6102b66103c53660046119e4565b610944565b6101fa6103d83660046119e4565b610aaa565b6101fa6103eb3660046119e4565b610b7b565b6102126103fe366004611a10565b600a6020526000908152604090205481565b6102b661041e3660046119e4565b610b89565b610212610431366004611a8e565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6102b6610477366004611a10565b610ce3565b6102b661048a366004611a10565b610ec1565b60606003805461049e90611ac7565b80601f01602080910402602001604051908101604052809291908181526020018280546104ca90611ac7565b80156105175780601f106104ec57610100808354040283529160200191610517565b820191906000526020600020905b8154815290600101906020018083116104fa57829003601f168201915b5050505050905090565b60003361052f81858561110e565b5060019392505050565b60006201518061054d6362b7a18042611b49565b6105579190611b60565b905090565b60025490565b6000336105708582856112c2565b61057b858585611399565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061052f90829086906105cd908790611b9b565b61110e565b3360009081526006602052604090205461064d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f216d696e7465720000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b33600090815260066020526040902054811161068d573360009081526006602052604081208054839290610682908490611b49565b9091555061081b9050565b33600090815260076020526040902054610729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f6e656564206d696e74696e67206f72206461696c79206d696e74696e6720636160448201527f70000000000000000000000000000000000000000000000000000000000000006064820152608401610644565b6000610733610539565b336000908152600860205260409020549091508111156107715733600090815260086020908152604080832084905560099091529020829055610819565b3360009081526009602052604081208054849290610790908490611b9b565b9091555050336000908152600760209081526040808320546009909252909120541115610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f657863656564206461696c79206d696e74696e672063617000000000000000006044820152606401610644565b505b336000908152600a60205260408120805483929061083a908490611b9b565b9091555061084a9050828261164c565b5050565b61085833826116f3565b50565b60055473ffffffffffffffffffffffffffffffffffffffff1633146108dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b6108e660006118d8565b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602090815260408083203380855292529091205461092b9184916105cd908590611b49565b61084a82826116f3565b60606004805461049e90611ac7565b60055473ffffffffffffffffffffffffffffffffffffffff1633146109c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b73ffffffffffffffffffffffffffffffffffffffff8216610a44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106449060208082526004908201527f7a65726f00000000000000000000000000000000000000000000000000000000604082015260600190565b73ffffffffffffffffffffffffffffffffffffffff821660008181526007602052604090819020839055517f7cfad22e4679c3680ef640f7e7191fbc2c2e6541549cea75c6b34fe8d01daf0590610a9e9084815260200190565b60405180910390a25050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610b6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610644565b61057b828686840361110e565b60003361052f818585611399565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b73ffffffffffffffffffffffffffffffffffffffff8216610c89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106449060208082526004908201527f7a65726f00000000000000000000000000000000000000000000000000000000604082015260600190565b73ffffffffffffffffffffffffffffffffffffffff821660008181526006602052604090819020839055517f6f86a21faaa96f0c7c23b73f38df387f420f574cde0162ab70024470726672af90610a9e9084815260200190565b60055473ffffffffffffffffffffffffffffffffffffffff163314610d64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610d9f60055473ffffffffffffffffffffffffffffffffffffffff1690565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015610e09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2d9190611bb3565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af1158015610e9d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084a9190611bcc565b60055473ffffffffffffffffffffffffffffffffffffffff163314610f42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b73ffffffffffffffffffffffffffffffffffffffff8116610fe5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610644565b610858816118d8565b73ffffffffffffffffffffffffffffffffffffffff821661106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610644565b806002600082825461107d9190611b9b565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040812080548392906110b7908490611b9b565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff83166111b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff8216611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113935781811015611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610644565b611393848484840361110e565b50505050565b73ffffffffffffffffffffffffffffffffffffffff831661143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff82166114df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906115d9908490611b9b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161163f91815260200190565b60405180910390a3611393565b7f00000000000000000000000000000000000000000000000000000000000000008161167760025490565b6116819190611b9b565b11156116e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401610644565b61084a8282610fee565b73ffffffffffffffffffffffffffffffffffffffff8216611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020548181101561184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290611888908490611b49565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016112b5565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b8181101561197c57858101830151858201604001528201611960565b8181111561198e576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461085857600080fd5b600080604083850312156119f757600080fd5b8235611a02816119c2565b946020939093013593505050565b600060208284031215611a2257600080fd5b8135611a2d816119c2565b9392505050565b600080600060608486031215611a4957600080fd5b8335611a54816119c2565b92506020840135611a64816119c2565b929592945050506040919091013590565b600060208284031215611a8757600080fd5b5035919050565b60008060408385031215611aa157600080fd5b8235611aac816119c2565b91506020830135611abc816119c2565b809150509250929050565b600181811c90821680611adb57607f821691505b602082108103611b14577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015611b5b57611b5b611b1a565b500390565b600082611b96577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008219821115611bae57611bae611b1a565b500190565b600060208284031215611bc557600080fd5b5051919050565b600060208284031215611bde57600080fd5b81518015158114611a2d57600080fdfea26469706673582212200be1e8c01254237243f1f7c4d72001fe9edbe011d79f38dc7115c838287070f664736f6c634300080f0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806379cc6790116100f9578063a457c2d711610097578063c8e1b4ce11610071578063c8e1b4ce14610410578063dd62ed3e14610423578063e8d4a0f314610469578063f2fde38b1461047c57600080fd5b8063a457c2d7146103ca578063a9059cbb146103dd578063c3292e46146103f057600080fd5b80638da5cb5b116100d35780638da5cb5b1461036757806391729fd81461038f57806395d89b41146103af578063989475e5146103b757600080fd5b806379cc6790146103295780637a0ecef61461033c578063857042651461034757600080fd5b8063355274ea1161016657806342966c681161014057806342966c68146102b857806354a65fcc146102cb57806370a08231146102eb578063715018a61461032157600080fd5b8063355274ea1461026a578063395093511461029057806340c10f19146102a357600080fd5b806310b05770116101a257806310b057701461022057806318160ddd1461024057806323b872dd14610248578063313ce5671461025b57600080fd5b806306fdde03146101c9578063095ea7b3146101e75780630b3904831461020a575b600080fd5b6101d161048f565b6040516101de919061194f565b60405180910390f35b6101fa6101f53660046119e4565b610521565b60405190151581526020016101de565b610212610539565b6040519081526020016101de565b61021261022e366004611a10565b60086020526000908152604090205481565b600254610212565b6101fa610256366004611a34565b610562565b604051601281526020016101de565b7f000000000000000000000000000000000000000000115eec47f6cf7e35000000610212565b6101fa61029e3660046119e4565b610586565b6102b66102b13660046119e4565b6105d2565b005b6102b66102c6366004611a75565b61084e565b6102126102d9366004611a10565b60066020526000908152604090205481565b6102126102f9366004611a10565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6102b661085b565b6102b66103373660046119e4565b6108e8565b6102126362b7a18081565b610212610355366004611a10565b60096020526000908152604090205481565b60055460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101de565b61021261039d366004611a10565b60076020526000908152604090205481565b6101d1610935565b6102b66103c53660046119e4565b610944565b6101fa6103d83660046119e4565b610aaa565b6101fa6103eb3660046119e4565b610b7b565b6102126103fe366004611a10565b600a6020526000908152604090205481565b6102b661041e3660046119e4565b610b89565b610212610431366004611a8e565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6102b6610477366004611a10565b610ce3565b6102b661048a366004611a10565b610ec1565b60606003805461049e90611ac7565b80601f01602080910402602001604051908101604052809291908181526020018280546104ca90611ac7565b80156105175780601f106104ec57610100808354040283529160200191610517565b820191906000526020600020905b8154815290600101906020018083116104fa57829003601f168201915b5050505050905090565b60003361052f81858561110e565b5060019392505050565b60006201518061054d6362b7a18042611b49565b6105579190611b60565b905090565b60025490565b6000336105708582856112c2565b61057b858585611399565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061052f90829086906105cd908790611b9b565b61110e565b3360009081526006602052604090205461064d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f216d696e7465720000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b33600090815260066020526040902054811161068d573360009081526006602052604081208054839290610682908490611b49565b9091555061081b9050565b33600090815260076020526040902054610729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f6e656564206d696e74696e67206f72206461696c79206d696e74696e6720636160448201527f70000000000000000000000000000000000000000000000000000000000000006064820152608401610644565b6000610733610539565b336000908152600860205260409020549091508111156107715733600090815260086020908152604080832084905560099091529020829055610819565b3360009081526009602052604081208054849290610790908490611b9b565b9091555050336000908152600760209081526040808320546009909252909120541115610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f657863656564206461696c79206d696e74696e672063617000000000000000006044820152606401610644565b505b336000908152600a60205260408120805483929061083a908490611b9b565b9091555061084a9050828261164c565b5050565b61085833826116f3565b50565b60055473ffffffffffffffffffffffffffffffffffffffff1633146108dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b6108e660006118d8565b565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602090815260408083203380855292529091205461092b9184916105cd908590611b49565b61084a82826116f3565b60606004805461049e90611ac7565b60055473ffffffffffffffffffffffffffffffffffffffff1633146109c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b73ffffffffffffffffffffffffffffffffffffffff8216610a44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106449060208082526004908201527f7a65726f00000000000000000000000000000000000000000000000000000000604082015260600190565b73ffffffffffffffffffffffffffffffffffffffff821660008181526007602052604090819020839055517f7cfad22e4679c3680ef640f7e7191fbc2c2e6541549cea75c6b34fe8d01daf0590610a9e9084815260200190565b60405180910390a25050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610b6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610644565b61057b828686840361110e565b60003361052f818585611399565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b73ffffffffffffffffffffffffffffffffffffffff8216610c89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106449060208082526004908201527f7a65726f00000000000000000000000000000000000000000000000000000000604082015260600190565b73ffffffffffffffffffffffffffffffffffffffff821660008181526006602052604090819020839055517f6f86a21faaa96f0c7c23b73f38df387f420f574cde0162ab70024470726672af90610a9e9084815260200190565b60055473ffffffffffffffffffffffffffffffffffffffff163314610d64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610d9f60055473ffffffffffffffffffffffffffffffffffffffff1690565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015610e09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2d9190611bb3565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af1158015610e9d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084a9190611bcc565b60055473ffffffffffffffffffffffffffffffffffffffff163314610f42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610644565b73ffffffffffffffffffffffffffffffffffffffff8116610fe5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610644565b610858816118d8565b73ffffffffffffffffffffffffffffffffffffffff821661106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610644565b806002600082825461107d9190611b9b565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040812080548392906110b7908490611b9b565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff83166111b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff8216611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113935781811015611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610644565b611393848484840361110e565b50505050565b73ffffffffffffffffffffffffffffffffffffffff831661143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff82166114df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906115d9908490611b9b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161163f91815260200190565b60405180910390a3611393565b7f000000000000000000000000000000000000000000115eec47f6cf7e350000008161167760025490565b6116819190611b9b565b11156116e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a20636170206578636565646564000000000000006044820152606401610644565b61084a8282610fee565b73ffffffffffffffffffffffffffffffffffffffff8216611796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020548181101561184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610644565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290611888908490611b49565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016112b5565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b8181101561197c57858101830151858201604001528201611960565b8181111561198e576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461085857600080fd5b600080604083850312156119f757600080fd5b8235611a02816119c2565b946020939093013593505050565b600060208284031215611a2257600080fd5b8135611a2d816119c2565b9392505050565b600080600060608486031215611a4957600080fd5b8335611a54816119c2565b92506020840135611a64816119c2565b929592945050506040919091013590565b600060208284031215611a8757600080fd5b5035919050565b60008060408385031215611aa157600080fd5b8235611aac816119c2565b91506020830135611abc816119c2565b809150509250929050565b600181811c90821680611adb57607f821691505b602082108103611b14577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015611b5b57611b5b611b1a565b500390565b600082611b96577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008219821115611bae57611bae611b1a565b500190565b600060208284031215611bc557600080fd5b5051919050565b600060208284031215611bde57600080fd5b81518015158114611a2d57600080fdfea26469706673582212200be1e8c01254237243f1f7c4d72001fe9edbe011d79f38dc7115c838287070f664736f6c634300080f0033

Deployed Bytecode Sourcemap

28135:3613:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6395:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8887:242;;;;;;:::i;:::-;;:::i;:::-;;;1319:14:1;;1312:22;1294:41;;1282:2;1267:18;8887:242:0;1154:187:1;30022:118:0;;;:::i;:::-;;;1492:25:1;;;1480:2;1465:18;30022:118:0;1346:177:1;28535:55:0;;;;;;:::i;:::-;;;;;;;;;;;;;;7515:108;7603:12;;7515:108;;9709:295;;;;;;:::i;:::-;;:::i;7357:93::-;;;7440:2;2383:36:1;;2371:2;2356:18;7357:93:0;2241:184:1;18131:83:0;18202:4;18131:83;;10413:270;;;;;;:::i;:::-;;:::i;30202:1002::-;;;;;;:::i;:::-;;:::i;:::-;;31212:85;;;;;;:::i;:::-;;:::i;28428:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;7686:177;;;;;;:::i;:::-;7837:18;;7805:7;7837:18;;;;;;;;;;;;7686:177;20173:103;;;:::i;31305:239::-;;;;;;:::i;:::-;;:::i;28337:45::-;;28372:10;28337:45;;28631:58;;;;;;:::i;:::-;;;;;;;;;;;;;;19522:87;19595:6;;19522:87;;19595:6;;;;2761:74:1;;2749:2;2734:18;19522:87:0;2615:226:1;28479:49:0;;;;;;:::i;:::-;;;;;;;;;;;;;;6614:104;;;:::i;29678:286::-;;;;;;:::i;:::-;;:::i;11186:505::-;;;;;;:::i;:::-;;:::i;8069:234::-;;;;;;:::i;:::-;;:::i;28739:69::-;;;;;;:::i;:::-;;;;;;;;;;;;;;29414:256;;;;;;:::i;:::-;;:::i;8366:201::-;;;;;;:::i;:::-;8532:18;;;;8500:7;8532:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8366:201;31597:148;;;;;;:::i;:::-;;:::i;20431:238::-;;;;;;:::i;:::-;;:::i;6395:100::-;6449:13;6482:5;6475:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6395:100;:::o;8887:242::-;9006:4;4210:10;9067:32;4210:10;9083:7;9092:6;9067:8;:32::i;:::-;-1:-1:-1;9117:4:0;;8887:242;-1:-1:-1;;;8887:242:0:o;30022:118::-;30066:7;30124:8;30094:26;28372:10;30094:15;:26;:::i;:::-;30093:39;;;;:::i;:::-;30086:46;;30022:118;:::o;7515:108::-;7603:12;;;7515:108::o;9709:295::-;9840:4;4210:10;9898:38;9914:4;4210:10;9929:6;9898:15;:38::i;:::-;9947:27;9957:4;9963:2;9967:6;9947:9;:27::i;:::-;-1:-1:-1;9992:4:0;;9709:295;-1:-1:-1;;;;9709:295:0:o;10413:270::-;4210:10;10528:4;8532:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;10528:4;;4210:10;10589:64;;4210:10;;8532:27;;10614:38;;10642:10;;10614:38;:::i;:::-;10589:8;:64::i;30202:1002::-;29147:10;29161:1;29137:21;;;:9;:21;;;;;;29129:45;;;;;;;4879:2:1;29129:45:0;;;4861:21:1;4918:1;4898:18;;;4891:29;4956:9;4936:18;;;4929:37;4983:18;;29129:45:0;;;;;;;;;30296:10:::1;30286:21;::::0;;;:9:::1;:21;::::0;;;;;:32;-1:-1:-1;30282:810:0::1;;30345:10;30335:21;::::0;;;:9:::1;:21;::::0;;;;:32;;30360:7;;30335:21;:32:::1;::::0;30360:7;;30335:32:::1;:::i;:::-;::::0;;;-1:-1:-1;30282:810:0::1;::::0;-1:-1:-1;30282:810:0::1;;30441:10;30455:1;30426:26:::0;;;:14:::1;:26;::::0;;;;;30400:125:::1;;;::::0;::::1;::::0;;5214:2:1;30400:125:0::1;::::0;::::1;5196:21:1::0;5253:2;5233:18;;;5226:30;5292:34;5272:18;;;5265:62;5363:3;5343:18;;;5336:31;5384:19;;30400:125:0::1;5012:397:1::0;30400:125:0::1;30540:19;30562:13;:11;:13::i;:::-;30629:10;30608:32;::::0;;;:20:::1;:32;::::0;;;;;30540:35;;-1:-1:-1;30594:46:0;::::1;30590:491;;;30682:10;30661:32;::::0;;;:20:::1;:32;::::0;;;;;;;:46;;;30726:23:::1;:35:::0;;;;;:45;;;30590:491:::1;;;30836:10;30812:35;::::0;;;:23:::1;:35;::::0;;;;:46;;30851:7;;30812:35;:46:::1;::::0;30851:7;;30812:46:::1;:::i;:::-;::::0;;;-1:-1:-1;;30986:10:0::1;30971:26;::::0;;;:14:::1;:26;::::0;;;;;;;;30907:23:::1;:35:::0;;;;;;;:90:::1;;30877:188;;;::::0;::::1;::::0;;5616:2:1;30877:188:0::1;::::0;::::1;5598:21:1::0;5655:2;5635:18;;;5628:30;5694:26;5674:18;;;5667:54;5738:18;;30877:188:0::1;5414:348:1::0;30877:188:0::1;30385:707;30282:810;31137:10;31102:46;::::0;;;:34:::1;:46;::::0;;;;:57;;31152:7;;31102:46;:57:::1;::::0;31152:7;;31102:57:::1;:::i;:::-;::::0;;;-1:-1:-1;31170:26:0::1;::::0;-1:-1:-1;31176:10:0;31188:7;31170:5:::1;:26::i;:::-;30202:1002:::0;;:::o;31212:85::-;31263:26;31269:10;31281:7;31263:5;:26::i;:::-;31212:85;:::o;20173:103::-;19595:6;;19742:23;19595:6;4210:10;19742:23;19734:68;;;;;;;5969:2:1;19734:68:0;;;5951:21:1;;;5988:18;;;5981:30;6047:34;6027:18;;;6020:62;6099:18;;19734:68:0;5767:356:1;19734:68:0;20238:30:::1;20265:1;20238:18;:30::i;:::-;20173:103::o:0;31305:239::-;8532:18;;;8500:7;8532:18;;;:11;:18;;;;;;;;31424:10;8532:27;;;;;;;;;31378:123;;8532:18;;31449:41;;31483:7;;31449:41;:::i;31378:123::-;31512:24;31518:8;31528:7;31512:5;:24::i;6614:104::-;6670:13;6703:7;6696:14;;;;;:::i;29678:286::-;19595:6;;19742:23;19595:6;4210:10;19742:23;19734:68;;;;;;;5969:2:1;19734:68:0;;;5951:21:1;;;5988:18;;;5981:30;6047:34;6027:18;;;6020:62;6099:18;;19734:68:0;5767:356:1;19734:68:0;29809:22:::1;::::0;::::1;29801:39;;;;;;;;;;;6330:2:1::0;6312:21;;;6369:1;6349:18;;;6342:29;6407:6;6402:2;6387:18;;6380:34;6446:2;6431:18;;6128:327;29801:39:0::1;29851:24;::::0;::::1;;::::0;;;:14:::1;:24;::::0;;;;;;:42;;;29909:47;::::1;::::0;::::1;::::0;29878:15;1492:25:1;;1480:2;1465:18;;1346:177;29909:47:0::1;;;;;;;;29678:286:::0;;:::o;11186:505::-;4210:10;11306:4;8532:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;11306:4;;4210:10;11472:15;11452:16;:35;;11430:122;;;;;;;6662:2:1;11430:122:0;;;6644:21:1;6701:2;6681:18;;;6674:30;6740:34;6720:18;;;6713:62;6811:7;6791:18;;;6784:35;6836:19;;11430:122:0;6460:401:1;11430:122:0;11588:60;11597:5;11604:7;11632:15;11613:16;:34;11588:8;:60::i;8069:234::-;8184:4;4210:10;8245:28;4210:10;8262:2;8266:6;8245:9;:28::i;29414:256::-;19595:6;;19742:23;19595:6;4210:10;19742:23;19734:68;;;;;;;5969:2:1;19734:68:0;;;5951:21:1;;;5988:18;;;5981:30;6047:34;6027:18;;;6020:62;6099:18;;19734:68:0;5767:356:1;19734:68:0;29535:22:::1;::::0;::::1;29527:39;;;;;;;;;;;6330:2:1::0;6312:21;;;6369:1;6349:18;;;6342:29;6407:6;6402:2;6387:18;;6380:34;6446:2;6431:18;;6128:327;29527:39:0::1;29577:19;::::0;::::1;;::::0;;;:9:::1;:19;::::0;;;;;;:32;;;29625:37;::::1;::::0;::::1;::::0;29599:10;1492:25:1;;1480:2;1465:18;;1346:177;31597:148:0;19595:6;;19742:23;19595:6;4210:10;19742:23;19734:68;;;;;;;5969:2:1;19734:68:0;;;5951:21:1;;;5988:18;;;5981:30;6047:34;6027:18;;;6020:62;6099:18;;19734:68:0;5767:356:1;19734:68:0;31680:6:::1;:15;;;31696:7;19595:6:::0;;;;;19522:87;31696:7:::1;31705:31;::::0;;;;31730:4:::1;31705:31;::::0;::::1;2761:74:1::0;31705:16:0::1;::::0;::::1;::::0;::::1;::::0;2734:18:1;;31705:31:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31680:57;::::0;;::::1;::::0;;;;;;7259:42:1;7247:55;;;31680:57:0::1;::::0;::::1;7229:74:1::0;7319:18;;;7312:34;7202:18;;31680:57:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;20431:238::-:0;19595:6;;19742:23;19595:6;4210:10;19742:23;19734:68;;;;;;;5969:2:1;19734:68:0;;;5951:21:1;;;5988:18;;;5981:30;6047:34;6027:18;;;6020:62;6099:18;;19734:68:0;5767:356:1;19734:68:0;20534:22:::1;::::0;::::1;20512:110;;;::::0;::::1;::::0;;7841:2:1;20512:110:0::1;::::0;::::1;7823:21:1::0;7880:2;7860:18;;;7853:30;7919:34;7899:18;;;7892:62;7990:8;7970:18;;;7963:36;8016:19;;20512:110:0::1;7639:402:1::0;20512:110:0::1;20633:28;20652:8;20633:18;:28::i;13165:399::-:0;13249:21;;;13241:65;;;;;;;8248:2:1;13241:65:0;;;8230:21:1;8287:2;8267:18;;;8260:30;8326:33;8306:18;;;8299:61;8377:18;;13241:65:0;8046:355:1;13241:65:0;13397:6;13381:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;13414:18:0;;;:9;:18;;;;;;;;;;:28;;13436:6;;13414:9;:28;;13436:6;;13414:28;:::i;:::-;;;;-1:-1:-1;;13458:37:0;;1492:25:1;;;13458:37:0;;;;13475:1;;13458:37;;1480:2:1;1465:18;13458:37:0;;;;;;;30202:1002;;:::o;14926:380::-;15062:19;;;15054:68;;;;;;;8608:2:1;15054:68:0;;;8590:21:1;8647:2;8627:18;;;8620:30;8686:34;8666:18;;;8659:62;8757:6;8737:18;;;8730:34;8781:19;;15054:68:0;8406:400:1;15054:68:0;15141:21;;;15133:68;;;;;;;9013:2:1;15133:68:0;;;8995:21:1;9052:2;9032:18;;;9025:30;9091:34;9071:18;;;9064:62;9162:4;9142:18;;;9135:32;9184:19;;15133:68:0;8811:398:1;15133:68:0;15214:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15266:32;;1492:25:1;;;15266:32:0;;1465:18:1;15266:32:0;;;;;;;;14926:380;;;:::o;15597:502::-;8532:18;;;;15732:24;8532:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;15819:17;15799:37;;15795:297;;15899:6;15879:16;:26;;15853:117;;;;;;;9416:2:1;15853:117:0;;;9398:21:1;9455:2;9435:18;;;9428:30;9494:31;9474:18;;;9467:59;9543:18;;15853:117:0;9214:353:1;15853:117:0;16014:51;16023:5;16030:7;16058:6;16039:16;:25;16014:8;:51::i;:::-;15721:378;15597:502;;;:::o;12170:708::-;12301:18;;;12293:68;;;;;;;9774:2:1;12293:68:0;;;9756:21:1;9813:2;9793:18;;;9786:30;9852:34;9832:18;;;9825:62;9923:7;9903:18;;;9896:35;9948:19;;12293:68:0;9572:401:1;12293:68:0;12380:16;;;12372:64;;;;;;;10180:2:1;12372:64:0;;;10162:21:1;10219:2;10199:18;;;10192:30;10258:34;10238:18;;;10231:62;10329:5;10309:18;;;10302:33;10352:19;;12372:64:0;9978:399:1;12372:64:0;12522:15;;;12500:19;12522:15;;;;;;;;;;;12570:21;;;;12548:109;;;;;;;10584:2:1;12548:109:0;;;10566:21:1;10623:2;10603:18;;;10596:30;10662:34;10642:18;;;10635:62;10733:8;10713:18;;;10706:36;10759:19;;12548:109:0;10382:402:1;12548:109:0;12693:15;;;;:9;:15;;;;;;;;;;;12711:20;;;12693:38;;12753:13;;;;;;;;:23;;12725:6;;12693:9;12753:23;;12725:6;;12753:23;:::i;:::-;;;;;;;;12809:2;12794:26;;12803:4;12794:26;;;12813:6;12794:26;;;;1492:25:1;;1480:2;1465:18;;1346:177;12794:26:0;;;;;;;;12833:37;13897:591;18272:244;18202:4;18401:6;18379:19;7603:12;;;7515:108;18379:19;:28;;;;:::i;:::-;:37;;18357:112;;;;;;;10991:2:1;18357:112:0;;;10973:21:1;11030:2;11010:18;;;11003:30;11069:27;11049:18;;;11042:55;11114:18;;18357:112:0;10789:349:1;18357:112:0;18480:28;18492:7;18501:6;18480:11;:28::i;13897:591::-;13981:21;;;13973:67;;;;;;;11345:2:1;13973:67:0;;;11327:21:1;11384:2;11364:18;;;11357:30;11423:34;11403:18;;;11396:62;11494:3;11474:18;;;11467:31;11515:19;;13973:67:0;11143:397:1;13973:67:0;14140:18;;;14115:22;14140:18;;;;;;;;;;;14177:24;;;;14169:71;;;;;;;11747:2:1;14169:71:0;;;11729:21:1;11786:2;11766:18;;;11759:30;11825:34;11805:18;;;11798:62;11896:4;11876:18;;;11869:32;11918:19;;14169:71:0;11545:398:1;14169:71:0;14276:18;;;:9;:18;;;;;;;;;;14297:23;;;14276:44;;14342:12;:22;;14314:6;;14276:9;14342:22;;14314:6;;14342:22;:::i;:::-;;;;-1:-1:-1;;14382:37:0;;1492:25:1;;;14408:1:0;;14382:37;;;;;;1480:2:1;1465:18;14382:37:0;1346:177:1;20829:191:0;20922:6;;;;20939:17;;;;;;;;;;;20972:40;;20922:6;;;20939:17;20922:6;;20972:40;;20903:16;;20972:40;20892:128;20829:191;:::o;14:656:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;586:2:1;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:1:o;675:154::-;761:42;754:5;750:54;743:5;740:65;730:93;;819:1;816;809:12;834:315;902:6;910;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1018:9;1005:23;1037:31;1062:5;1037:31;:::i;:::-;1087:5;1139:2;1124:18;;;;1111:32;;-1:-1:-1;;;834:315:1:o;1528:247::-;1587:6;1640:2;1628:9;1619:7;1615:23;1611:32;1608:52;;;1656:1;1653;1646:12;1608:52;1695:9;1682:23;1714:31;1739:5;1714:31;:::i;:::-;1764:5;1528:247;-1:-1:-1;;;1528:247:1:o;1780:456::-;1857:6;1865;1873;1926:2;1914:9;1905:7;1901:23;1897:32;1894:52;;;1942:1;1939;1932:12;1894:52;1981:9;1968:23;2000:31;2025:5;2000:31;:::i;:::-;2050:5;-1:-1:-1;2107:2:1;2092:18;;2079:32;2120:33;2079:32;2120:33;:::i;:::-;1780:456;;2172:7;;-1:-1:-1;;;2226:2:1;2211:18;;;;2198:32;;1780:456::o;2430:180::-;2489:6;2542:2;2530:9;2521:7;2517:23;2513:32;2510:52;;;2558:1;2555;2548:12;2510:52;-1:-1:-1;2581:23:1;;2430:180;-1:-1:-1;2430:180:1:o;2846:388::-;2914:6;2922;2975:2;2963:9;2954:7;2950:23;2946:32;2943:52;;;2991:1;2988;2981:12;2943:52;3030:9;3017:23;3049:31;3074:5;3049:31;:::i;:::-;3099:5;-1:-1:-1;3156:2:1;3141:18;;3128:32;3169:33;3128:32;3169:33;:::i;:::-;3221:7;3211:17;;;2846:388;;;;;:::o;3504:437::-;3583:1;3579:12;;;;3626;;;3647:61;;3701:4;3693:6;3689:17;3679:27;;3647:61;3754:2;3746:6;3743:14;3723:18;3720:38;3717:218;;3791:77;3788:1;3781:88;3892:4;3889:1;3882:15;3920:4;3917:1;3910:15;3717:218;;3504:437;;;:::o;3946:184::-;3998:77;3995:1;3988:88;4095:4;4092:1;4085:15;4119:4;4116:1;4109:15;4135:125;4175:4;4203:1;4200;4197:8;4194:34;;;4208:18;;:::i;:::-;-1:-1:-1;4245:9:1;;4135:125::o;4265:274::-;4305:1;4331;4321:189;;4366:77;4363:1;4356:88;4467:4;4464:1;4457:15;4495:4;4492:1;4485:15;4321:189;-1:-1:-1;4524:9:1;;4265:274::o;4544:128::-;4584:3;4615:1;4611:6;4608:1;4605:13;4602:39;;;4621:18;;:::i;:::-;-1:-1:-1;4657:9:1;;4544:128::o;6866:184::-;6936:6;6989:2;6977:9;6968:7;6964:23;6960:32;6957:52;;;7005:1;7002;6995:12;6957:52;-1:-1:-1;7028:16:1;;6866:184;-1:-1:-1;6866:184:1:o;7357:277::-;7424:6;7477:2;7465:9;7456:7;7452:23;7448:32;7445:52;;;7493:1;7490;7483:12;7445:52;7525:9;7519:16;7578:5;7571:13;7564:21;7557:5;7554:32;7544:60;;7600:1;7597;7590:12

Swarm Source

ipfs://0be1e8c01254237243f1f7c4d72001fe9edbe011d79f38dc7115c838287070f6
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.