ETH Price: $3,448.57 (-0.83%)
Gas: 3 Gwei

Token

Cyberlete (LEET)
 

Overview

Max Total Supply

100,000,000,000 LEET

Holders

397 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000004821677508 LEET

Value
$0.00
0x80Ef7084d31B02F38AF97e67e36C9615cc4474F4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cyberlete is a technology company built by gamers for gamers. Our application uses Web3 technology and our proprietary software to keep cheats out of gaming.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cyberlete

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-10
*/

// File: @openzeppelin/[email protected]/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/[email protected]/utils/math/Math.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

// File: @openzeppelin/[email protected]/utils/Arrays.sol


// OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol)

pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

// File: @openzeppelin/[email protected]/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Snapshot.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Snapshot.sol)

pragma solidity ^0.8.0;




/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it
 * return `block.number` will trigger the creation of snapshot at the begining of each new block. When overridding this
 * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract.
 *
 * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient
 * alternative consider {ERC20Votes}.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */

abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping(address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _getCurrentSnapshotId();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Get the current snapshotId
     */
    function _getCurrentSnapshotId() internal view virtual returns (uint256) {
        return _currentSnapshotId.current();
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }

    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) {
            // mint
            _updateAccountSnapshot(to);
            _updateTotalSupplySnapshot();
        } else if (to == address(0)) {
            // burn
            _updateAccountSnapshot(from);
            _updateTotalSupplySnapshot();
        } else {
            // transfer
            _updateAccountSnapshot(from);
            _updateAccountSnapshot(to);
        }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _getCurrentSnapshotId();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

// File: contract-49bb5e3adf.sol


pragma solidity ^0.8.2;





/// @custom:security-contact [email protected]
contract Cyberlete is ERC20, ERC20Snapshot, Ownable, Pausable {
    constructor() ERC20("Cyberlete", "LEET") {
        _mint(msg.sender, 100000000000 * 10 ** decimals());
    }

    function snapshot() public onlyOwner {
        _snapshot();
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override(ERC20, ERC20Snapshot)
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","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":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600981526843796265726c65746560b81b6020808301918252835180850190945260048452631311515560e21b9084015281519192916200005f9160039162000426565b5080516200007590600490602084019062000426565b505050620000926200008c620000cf60201b60201c565b620000d3565b6009805460ff60a01b19169055620000c933620000b26012600a62000534565b620000c39064174876e8006200062c565b62000125565b620006bb565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001815760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200018f600083836200021c565b8060026000828254620001a39190620004cc565b90915550506001600160a01b03821660009081526020819052604081208054839290620001d2908490620004cc565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b62000230600954600160a01b900460ff1690565b15620002725760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000178565b6200028a8383836200028f60201b620006ff1760201c565b505050565b620002a78383836200028a60201b6200074c1760201c565b6001600160a01b038316620002d157620002c182620002fc565b620002cb6200032d565b6200028a565b6001600160a01b038216620002eb57620002c183620002fc565b620002f683620002fc565b6200028a825b6001600160a01b03811660009081526005602052604090206200032a9062000324836200033f565b6200035e565b50565b6200033d60066200032460025490565b565b6001600160a01b0381166000908152602081905260409020545b919050565b60006200036a620003ad565b9050806200037884620003cb565b10156200028a578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6000620003c660086200042260201b620007511760201c565b905090565b8054600090620003de5750600062000359565b81548290620003f0906001906200064e565b815481106200040f57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905062000359565b5490565b828054620004349062000668565b90600052602060002090601f016020900481019282620004585760008555620004a3565b82601f106200047357805160ff1916838001178555620004a3565b82800160010185558215620004a3579182015b82811115620004a357825182559160200191906001019062000486565b50620004b1929150620004b5565b5090565b5b80821115620004b15760008155600101620004b6565b60008219821115620004e257620004e2620006a5565b500190565b80825b6001808611620004fb57506200052b565b818704821115620005105762000510620006a5565b808616156200051e57918102915b9490941c938002620004ea565b94509492505050565b60006200054860001960ff8516846200054f565b9392505050565b600082620005605750600162000548565b816200056f5750600062000548565b81600181146200058857600281146200059357620005c7565b600191505062000548565b60ff841115620005a757620005a7620006a5565b6001841b915084821115620005c057620005c0620006a5565b5062000548565b5060208310610133831016604e8410600b8410161715620005ff575081810a83811115620005f957620005f9620006a5565b62000548565b6200060e8484846001620004e7565b808604821115620006235762000623620006a5565b02949350505050565b6000816000190483118215151615620006495762000649620006a5565b500290565b600082821015620006635762000663620006a5565b500390565b6002810460018216806200067d57607f821691505b602082108114156200069f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6111b480620006cb6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063981b24d011610071578063981b24d014610237578063a457c2d71461024a578063a9059cbb1461025d578063dd62ed3e14610270578063f2fde38b146102a95761012c565b8063715018a6146101fc5780638456cb59146102045780638da5cb5b1461020c57806395d89b41146102275780639711715a1461022f5761012c565b806339509351116100f457806339509351146101a65780633f4ba83a146101b95780634ee2cd7e146101c35780635c975abb146101d657806370a08231146101e95761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102bc565b6040516101469190611056565b60405180910390f35b61016261015d366004611015565b61034e565b6040519015158152602001610146565b6002545b604051908152602001610146565b610162610192366004610fda565b610365565b60405160128152602001610146565b6101626101b4366004611015565b610414565b6101c1610450565b005b6101766101d1366004611015565b610484565b610162600954600160a01b900460ff1690565b6101766101f7366004610f8e565b6104cd565b6101c16104ec565b6101c1610520565b6009546040516001600160a01b039091168152602001610146565b610139610552565b6101c1610561565b61017661024536600461103e565b610596565b610162610258366004611015565b6105c1565b61016261026b366004611015565b61065a565b61017661027e366004610fa8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101c16102b7366004610f8e565b610667565b6060600380546102cb9061112d565b80601f01602080910402602001604051908101604052809291908181526020018280546102f79061112d565b80156103445780601f1061031957610100808354040283529160200191610344565b820191906000526020600020905b81548152906001019060200180831161032757829003601f168201915b5050505050905090565b600061035b338484610755565b5060015b92915050565b6000610372848484610879565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103fc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104098533858403610755565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161035b91859061044b9086906110de565b610755565b6009546001600160a01b0316331461047a5760405162461bcd60e51b81526004016103f3906110a9565b610482610a53565b565b6001600160a01b0382166000908152600560205260408120819081906104ab908590610af6565b91509150816104c2576104bd856104cd565b6104c4565b805b95945050505050565b6001600160a01b0381166000908152602081905260409020545b919050565b6009546001600160a01b031633146105165760405162461bcd60e51b81526004016103f3906110a9565b6104826000610bfb565b6009546001600160a01b0316331461054a5760405162461bcd60e51b81526004016103f3906110a9565b610482610c4d565b6060600480546102cb9061112d565b6009546001600160a01b0316331461058b5760405162461bcd60e51b81526004016103f3906110a9565b610593610cdb565b50565b60008060006105a6846006610af6565b91509150816105b7576002546105b9565b805b949350505050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106435760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f3565b6106503385858403610755565b5060019392505050565b600061035b338484610879565b6009546001600160a01b031633146106915760405162461bcd60e51b81526004016103f3906110a9565b6001600160a01b0381166106f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b61059381610bfb565b6001600160a01b0383166107235761071682610d35565b61071e610d5f565b61074c565b6001600160a01b03821661073a5761071683610d35565b61074383610d35565b61074c82610d35565b505050565b5490565b6001600160a01b0383166107b75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f3565b6001600160a01b0382166108185760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108dd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f3565b6001600160a01b03821661093f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f3565b61094a838383610d6d565b6001600160a01b038316600090815260208190526040902054818110156109c25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109f99084906110de565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4591815260200190565b60405180910390a350505050565b610a66600954600160a01b900460ff1690565b610aa95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103f3565b6009805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60008060008411610b425760405162461bcd60e51b815260206004820152601660248201527504552433230536e617073686f743a20696420697320360541b60448201526064016103f3565b610b4a610dcb565b841115610b995760405162461bcd60e51b815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e7420696400000060448201526064016103f3565b6000610ba58486610ddb565b8454909150811415610bbe576000809250925050610bf4565b6001846001018281548110610be357634e487b7160e01b600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c60600954600160a01b900460ff1690565b15610ca05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103f3565b6009805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ad93390565b6000610ceb600880546001019055565b6000610cf5610dcb565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051610d2891815260200190565b60405180910390a1905090565b6001600160a01b038116600090815260056020526040902061059390610d5a836104cd565b610eba565b6104826006610d5a60025490565b610d80600954600160a01b900460ff1690565b15610dc05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103f3565b61074c8383836106ff565b6000610dd660085490565b905090565b8154600090610dec5750600061035f565b82546000905b80821015610e56576000610e068383610f04565b905084868281548110610e2957634e487b7160e01b600052603260045260246000fd5b90600052602060002001541115610e4257809150610e50565b610e4d8160016110de565b92505b50610df2565b600082118015610e9957508385610e6e600185611116565b81548110610e8c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154145b15610eb257610ea9600183611116565b9250505061035f565b50905061035f565b6000610ec4610dcb565b905080610ed084610f26565b101561074c578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6000610f1360028484186110f6565b610f1f908484166110de565b9392505050565b8054600090610f37575060006104e7565b81548290610f4790600190611116565b81548110610f6557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490506104e7565b80356001600160a01b03811681146104e757600080fd5b600060208284031215610f9f578081fd5b610f1f82610f77565b60008060408385031215610fba578081fd5b610fc383610f77565b9150610fd160208401610f77565b90509250929050565b600080600060608486031215610fee578081fd5b610ff784610f77565b925061100560208501610f77565b9150604084013590509250925092565b60008060408385031215611027578182fd5b61103083610f77565b946020939093013593505050565b60006020828403121561104f578081fd5b5035919050565b6000602080835283518082850152825b8181101561108257858101830151858201604001528201611066565b818111156110935783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156110f1576110f1611168565b500190565b60008261111157634e487b7160e01b81526012600452602481fd5b500490565b60008282101561112857611128611168565b500390565b60028104600182168061114157607f821691505b6020821081141561116257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d242e61ca4cb6370162368847470a9d936f6527213b5d3d25597e59dbbaaa47364736f6c63430008020033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063981b24d011610071578063981b24d014610237578063a457c2d71461024a578063a9059cbb1461025d578063dd62ed3e14610270578063f2fde38b146102a95761012c565b8063715018a6146101fc5780638456cb59146102045780638da5cb5b1461020c57806395d89b41146102275780639711715a1461022f5761012c565b806339509351116100f457806339509351146101a65780633f4ba83a146101b95780634ee2cd7e146101c35780635c975abb146101d657806370a08231146101e95761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102bc565b6040516101469190611056565b60405180910390f35b61016261015d366004611015565b61034e565b6040519015158152602001610146565b6002545b604051908152602001610146565b610162610192366004610fda565b610365565b60405160128152602001610146565b6101626101b4366004611015565b610414565b6101c1610450565b005b6101766101d1366004611015565b610484565b610162600954600160a01b900460ff1690565b6101766101f7366004610f8e565b6104cd565b6101c16104ec565b6101c1610520565b6009546040516001600160a01b039091168152602001610146565b610139610552565b6101c1610561565b61017661024536600461103e565b610596565b610162610258366004611015565b6105c1565b61016261026b366004611015565b61065a565b61017661027e366004610fa8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101c16102b7366004610f8e565b610667565b6060600380546102cb9061112d565b80601f01602080910402602001604051908101604052809291908181526020018280546102f79061112d565b80156103445780601f1061031957610100808354040283529160200191610344565b820191906000526020600020905b81548152906001019060200180831161032757829003601f168201915b5050505050905090565b600061035b338484610755565b5060015b92915050565b6000610372848484610879565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103fc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104098533858403610755565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161035b91859061044b9086906110de565b610755565b6009546001600160a01b0316331461047a5760405162461bcd60e51b81526004016103f3906110a9565b610482610a53565b565b6001600160a01b0382166000908152600560205260408120819081906104ab908590610af6565b91509150816104c2576104bd856104cd565b6104c4565b805b95945050505050565b6001600160a01b0381166000908152602081905260409020545b919050565b6009546001600160a01b031633146105165760405162461bcd60e51b81526004016103f3906110a9565b6104826000610bfb565b6009546001600160a01b0316331461054a5760405162461bcd60e51b81526004016103f3906110a9565b610482610c4d565b6060600480546102cb9061112d565b6009546001600160a01b0316331461058b5760405162461bcd60e51b81526004016103f3906110a9565b610593610cdb565b50565b60008060006105a6846006610af6565b91509150816105b7576002546105b9565b805b949350505050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106435760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f3565b6106503385858403610755565b5060019392505050565b600061035b338484610879565b6009546001600160a01b031633146106915760405162461bcd60e51b81526004016103f3906110a9565b6001600160a01b0381166106f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b61059381610bfb565b6001600160a01b0383166107235761071682610d35565b61071e610d5f565b61074c565b6001600160a01b03821661073a5761071683610d35565b61074383610d35565b61074c82610d35565b505050565b5490565b6001600160a01b0383166107b75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f3565b6001600160a01b0382166108185760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108dd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f3565b6001600160a01b03821661093f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f3565b61094a838383610d6d565b6001600160a01b038316600090815260208190526040902054818110156109c25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906109f99084906110de565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4591815260200190565b60405180910390a350505050565b610a66600954600160a01b900460ff1690565b610aa95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103f3565b6009805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60008060008411610b425760405162461bcd60e51b815260206004820152601660248201527504552433230536e617073686f743a20696420697320360541b60448201526064016103f3565b610b4a610dcb565b841115610b995760405162461bcd60e51b815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e7420696400000060448201526064016103f3565b6000610ba58486610ddb565b8454909150811415610bbe576000809250925050610bf4565b6001846001018281548110610be357634e487b7160e01b600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c60600954600160a01b900460ff1690565b15610ca05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103f3565b6009805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ad93390565b6000610ceb600880546001019055565b6000610cf5610dcb565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051610d2891815260200190565b60405180910390a1905090565b6001600160a01b038116600090815260056020526040902061059390610d5a836104cd565b610eba565b6104826006610d5a60025490565b610d80600954600160a01b900460ff1690565b15610dc05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103f3565b61074c8383836106ff565b6000610dd660085490565b905090565b8154600090610dec5750600061035f565b82546000905b80821015610e56576000610e068383610f04565b905084868281548110610e2957634e487b7160e01b600052603260045260246000fd5b90600052602060002001541115610e4257809150610e50565b610e4d8160016110de565b92505b50610df2565b600082118015610e9957508385610e6e600185611116565b81548110610e8c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154145b15610eb257610ea9600183611116565b9250505061035f565b50905061035f565b6000610ec4610dcb565b905080610ed084610f26565b101561074c578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b6000610f1360028484186110f6565b610f1f908484166110de565b9392505050565b8054600090610f37575060006104e7565b81548290610f4790600190611116565b81548110610f6557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490506104e7565b80356001600160a01b03811681146104e757600080fd5b600060208284031215610f9f578081fd5b610f1f82610f77565b60008060408385031215610fba578081fd5b610fc383610f77565b9150610fd160208401610f77565b90509250929050565b600080600060608486031215610fee578081fd5b610ff784610f77565b925061100560208501610f77565b9150604084013590509250925092565b60008060408385031215611027578182fd5b61103083610f77565b946020939093013593505050565b60006020828403121561104f578081fd5b5035919050565b6000602080835283518082850152825b8181101561108257858101830151858201604001528201611066565b818111156110935783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156110f1576110f1611168565b500190565b60008261111157634e487b7160e01b81526012600452602481fd5b500490565b60008282101561112857611128611168565b500390565b60028104600182168061114157607f821691505b6020821081141561116257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d242e61ca4cb6370162368847470a9d936f6527213b5d3d25597e59dbbaaa47364736f6c63430008020033

Deployed Bytecode Sourcemap

34904:628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15878:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18045:169;;;;;;:::i;:::-;;:::i;:::-;;;1848:14:1;;1841:22;1823:41;;1811:2;1796:18;18045:169:0;1778:92:1;16998:108:0;17086:12;;16998:108;;;7640:25:1;;;7628:2;7613:18;16998:108:0;7595:76:1;18696:492:0;;;;;;:::i;:::-;;:::i;16840:93::-;;;16923:2;7818:36:1;;7806:2;7791:18;16840:93:0;7773:87:1;19597:215:0;;;;;;:::i;:::-;;:::i;35235:65::-;;;:::i;:::-;;30883:266;;;;;;:::i;:::-;;:::i;6376:86::-;;6447:7;;-1:-1:-1;;;6447:7:0;;;;;6376:86;17169:127;;;;;;:::i;:::-;;:::i;9281:103::-;;;:::i;35166:61::-;;;:::i;8630:87::-;8703:6;;8630:87;;-1:-1:-1;;;;;8703:6:0;;;1621:51:1;;1609:2;1594:18;8630:87:0;1576:102:1;16097:104:0;;;:::i;35091:67::-;;;:::i;31253:234::-;;;;;;:::i;:::-;;:::i;20315:413::-;;;;;;:::i;:::-;;:::i;17509:175::-;;;;;;:::i;:::-;;:::i;17747:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;17863:18:0;;;17836:7;17863:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17747:151;9539:201;;;;;;:::i;:::-;;:::i;15878:100::-;15932:13;15965:5;15958:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15878:100;:::o;18045:169::-;18128:4;18145:39;5104:10;18168:7;18177:6;18145:8;:39::i;:::-;-1:-1:-1;18202:4:0;18045:169;;;;;:::o;18696:492::-;18836:4;18853:36;18863:6;18871:9;18882:6;18853:9;:36::i;:::-;-1:-1:-1;;;;;18929:19:0;;18902:24;18929:19;;;:11;:19;;;;;;;;5104:10;18929:33;;;;;;;;18981:26;;;;18973:79;;;;-1:-1:-1;;;18973:79:0;;5358:2:1;18973:79:0;;;5340:21:1;5397:2;5377:18;;;5370:30;5436:34;5416:18;;;5409:62;-1:-1:-1;;;5487:18:1;;;5480:38;5535:19;;18973:79:0;;;;;;;;;19088:57;19097:6;5104:10;19138:6;19119:16;:25;19088:8;:57::i;:::-;-1:-1:-1;19176:4:0;;18696:492;-1:-1:-1;;;;18696:492:0:o;19597:215::-;5104:10;19685:4;19734:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19734:34:0;;;;;;;;;;19685:4;;19702:80;;19725:7;;19734:47;;19771:10;;19734:47;:::i;:::-;19702:8;:80::i;35235:65::-;8703:6;;-1:-1:-1;;;;;8703:6:0;5104:10;8850:23;8842:68;;;;-1:-1:-1;;;8842:68:0;;;;;;;:::i;:::-;35282:10:::1;:8;:10::i;:::-;35235:65::o:0;30883:266::-;-1:-1:-1;;;;;31047:33:0;;30970:7;31047:33;;;:24;:33;;;;;30970:7;;;;31026:55;;31035:10;;31026:8;:55::i;:::-;30990:91;;;;31101:11;:40;;31123:18;31133:7;31123:9;:18::i;:::-;31101:40;;;31115:5;31101:40;31094:47;30883:266;-1:-1:-1;;;;;30883:266:0:o;17169:127::-;-1:-1:-1;;;;;17270:18:0;;17243:7;17270:18;;;;;;;;;;;17169:127;;;;:::o;9281:103::-;8703:6;;-1:-1:-1;;;;;8703:6:0;5104:10;8850:23;8842:68;;;;-1:-1:-1;;;8842:68:0;;;;;;;:::i;:::-;9346:30:::1;9373:1;9346:18;:30::i;35166:61::-:0;8703:6;;-1:-1:-1;;;;;8703:6:0;5104:10;8850:23;8842:68;;;;-1:-1:-1;;;8842:68:0;;;;;;;:::i;:::-;35211:8:::1;:6;:8::i;16097:104::-:0;16153:13;16186:7;16179:14;;;;;:::i;35091:67::-;8703:6;;-1:-1:-1;;;;;8703:6:0;5104:10;8850:23;8842:68;;;;-1:-1:-1;;;8842:68:0;;;;;;;:::i;:::-;35139:11:::1;:9;:11::i;:::-;;35091:67::o:0;31253:234::-;31325:7;31346:16;31364:13;31381:43;31390:10;31402:21;31381:8;:43::i;:::-;31345:79;;;;31444:11;:35;;17086:12;;31444:35;;;31458:5;31444:35;31437:42;31253:234;-1:-1:-1;;;;31253:234:0:o;20315:413::-;5104:10;20408:4;20452:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20452:34:0;;;;;;;;;;20505:35;;;;20497:85;;;;-1:-1:-1;;;20497:85:0;;7290:2:1;20497:85:0;;;7272:21:1;7329:2;7309:18;;;7302:30;7368:34;7348:18;;;7341:62;-1:-1:-1;;;7419:18:1;;;7412:35;7464:19;;20497:85:0;7262:227:1;20497:85:0;20618:67;5104:10;20641:7;20669:15;20650:16;:34;20618:8;:67::i;:::-;-1:-1:-1;20716:4:0;;20315:413;-1:-1:-1;;;20315:413:0:o;17509:175::-;17595:4;17612:42;5104:10;17636:9;17647:6;17612:9;:42::i;9539:201::-;8703:6;;-1:-1:-1;;;;;8703:6:0;5104:10;8850:23;8842:68;;;;-1:-1:-1;;;8842:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9628:22:0;::::1;9620:73;;;::::0;-1:-1:-1;;;9620:73:0;;3796:2:1;9620:73:0::1;::::0;::::1;3778:21:1::0;3835:2;3815:18;;;3808:30;3874:34;3854:18;;;3847:62;-1:-1:-1;;;3925:18:1;;;3918:36;3971:19;;9620:73:0::1;3768:228:1::0;9620:73:0::1;9704:28;9723:8;9704:18;:28::i;31704:622::-:0;-1:-1:-1;;;;;31908:18:0;;31904:415;;31964:26;31987:2;31964:22;:26::i;:::-;32005:28;:26;:28::i;:::-;31904:415;;;-1:-1:-1;;;;;32055:16:0;;32051:268;;32109:28;32132:4;32109:22;:28::i;32051:268::-;32238:28;32261:4;32238:22;:28::i;:::-;32281:26;32304:2;32281:22;:26::i;:::-;31704:622;;;:::o;878:114::-;970:14;;878:114::o;23999:380::-;-1:-1:-1;;;;;24135:19:0;;24127:68;;;;-1:-1:-1;;;24127:68:0;;6534:2:1;24127:68:0;;;6516:21:1;6573:2;6553:18;;;6546:30;6612:34;6592:18;;;6585:62;-1:-1:-1;;;6663:18:1;;;6656:34;6707:19;;24127:68:0;6506:226:1;24127:68:0;-1:-1:-1;;;;;24214:21:0;;24206:68;;;;-1:-1:-1;;;24206:68:0;;4203:2:1;24206:68:0;;;4185:21:1;4242:2;4222:18;;;4215:30;4281:34;4261:18;;;4254:62;-1:-1:-1;;;4332:18:1;;;4325:32;4374:19;;24206:68:0;4175:224:1;24206:68:0;-1:-1:-1;;;;;24287:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24339:32;;7640:25:1;;;24339:32:0;;7613:18:1;24339:32:0;;;;;;;23999:380;;;:::o;21218:733::-;-1:-1:-1;;;;;21358:20:0;;21350:70;;;;-1:-1:-1;;;21350:70:0;;6128:2:1;21350:70:0;;;6110:21:1;6167:2;6147:18;;;6140:30;6206:34;6186:18;;;6179:62;-1:-1:-1;;;6257:18:1;;;6250:35;6302:19;;21350:70:0;6100:227:1;21350:70:0;-1:-1:-1;;;;;21439:23:0;;21431:71;;;;-1:-1:-1;;;21431:71:0;;3043:2:1;21431:71:0;;;3025:21:1;3082:2;3062:18;;;3055:30;3121:34;3101:18;;;3094:62;-1:-1:-1;;;3172:18:1;;;3165:33;3215:19;;21431:71:0;3015:225:1;21431:71:0;21515:47;21536:6;21544:9;21555:6;21515:20;:47::i;:::-;-1:-1:-1;;;;;21599:17:0;;21575:21;21599:17;;;;;;;;;;;21635:23;;;;21627:74;;;;-1:-1:-1;;;21627:74:0;;4606:2:1;21627:74:0;;;4588:21:1;4645:2;4625:18;;;4618:30;4684:34;4664:18;;;4657:62;-1:-1:-1;;;4735:18:1;;;4728:36;4781:19;;21627:74:0;4578:228:1;21627:74:0;-1:-1:-1;;;;;21737:17:0;;;:9;:17;;;;;;;;;;;21757:22;;;21737:42;;21801:20;;;;;;;;:30;;21773:6;;21737:9;21801:30;;21773:6;;21801:30;:::i;:::-;;;;;;;;21866:9;-1:-1:-1;;;;;21849:35:0;21858:6;-1:-1:-1;;;;;21849:35:0;;21877:6;21849:35;;;;7640:25:1;;7628:2;7613:18;;7595:76;21849:35:0;;;;;;;;21218:733;;;;:::o;7435:120::-;6979:8;6447:7;;-1:-1:-1;;;6447:7:0;;;;;6376:86;6979:8;6971:41;;;;-1:-1:-1;;;6971:41:0;;3447:2:1;6971:41:0;;;3429:21:1;3486:2;3466:18;;;3459:30;-1:-1:-1;;;3505:18:1;;;3498:50;3565:18;;6971:41:0;3419:170:1;6971:41:0;7494:7:::1;:15:::0;;-1:-1:-1;;;;7494:15:0::1;::::0;;7525:22:::1;5104:10:::0;7534:12:::1;7525:22;::::0;-1:-1:-1;;;;;1639:32:1;;;1621:51;;1609:2;1594:18;7525:22:0::1;;;;;;;7435:120::o:0;32334:1619::-;32423:4;32429:7;32470:1;32457:10;:14;32449:49;;;;-1:-1:-1;;;32449:49:0;;6939:2:1;32449:49:0;;;6921:21:1;6978:2;6958:18;;;6951:30;-1:-1:-1;;;6997:18:1;;;6990:52;7059:18;;32449:49:0;6911:172:1;32449:49:0;32531:23;:21;:23::i;:::-;32517:10;:37;;32509:79;;;;-1:-1:-1;;;32509:79:0;;2685:2:1;32509:79:0;;;2667:21:1;2724:2;2704:18;;;2697:30;2763:31;2743:18;;;2736:59;2812:18;;32509:79:0;2657:179:1;32509:79:0;33727:13;33743:40;:9;33772:10;33743:28;:40::i;:::-;33809:20;;33727:56;;-1:-1:-1;33800:29:0;;33796:150;;;33854:5;33861:1;33846:17;;;;;;;33796:150;33904:4;33910:9;:16;;33927:5;33910:23;;;;;;-1:-1:-1;;;33910:23:0;;;;;;;;;;;;;;;;;33896:38;;;;;32334:1619;;;;;;:::o;9900:191::-;9993:6;;;-1:-1:-1;;;;;10010:17:0;;;-1:-1:-1;;;;;;10010:17:0;;;;;;;10043:40;;9993:6;;;10010:17;9993:6;;10043:40;;9974:16;;10043:40;9900:191;;:::o;7176:118::-;6702:8;6447:7;;-1:-1:-1;;;6447:7:0;;;;;6376:86;6702:8;6701:9;6693:38;;;;-1:-1:-1;;;6693:38:0;;5013:2:1;6693:38:0;;;4995:21:1;5052:2;5032:18;;;5025:30;-1:-1:-1;;;5071:18:1;;;5064:46;5127:18;;6693:38:0;4985:166:1;6693:38:0;7236:7:::1;:14:::0;;-1:-1:-1;;;;7236:14:0::1;-1:-1:-1::0;;;7236:14:0::1;::::0;;7266:20:::1;7273:12;5104:10:::0;5024:98;;30355:223;30402:7;30422:30;:18;1089:19;;1107:1;1089:19;;;1000:127;30422:30;30465:17;30485:23;:21;:23::i;:::-;30465:43;;30524:19;30533:9;30524:19;;;;7640:25:1;;7628:2;7613:18;;7595:76;30524:19:0;;;;;;;;30561:9;-1:-1:-1;30355:223:0;:::o;33961:146::-;-1:-1:-1;;;;;34045:33:0;;;;;;:24;:33;;;;;34029:70;;34080:18;34070:7;34080:9;:18::i;:::-;34029:15;:70::i;34115:118::-;34172:53;34188:21;34211:13;17086:12;;16998:108;;35308:221;6702:8;6447:7;;-1:-1:-1;;;6447:7:0;;;;;6376:86;6702:8;6701:9;6693:38;;;;-1:-1:-1;;;6693:38:0;;5013:2:1;6693:38:0;;;4995:21:1;5052:2;5032:18;;;5025:30;-1:-1:-1;;;5071:18:1;;;5064:46;5127:18;;6693:38:0;4985:166:1;6693:38:0;35477:44:::1;35504:4;35510:2;35514:6;35477:26;:44::i;30644:127::-:0;30708:7;30735:28;:18;970:14;;878:114;30735:28;30728:35;;30644:127;:::o;3414:918::-;3527:12;;3503:7;;3523:58;;-1:-1:-1;3568:1:0;3561:8;;3523:58;3634:12;;3593:11;;3659:424;3672:4;3666:3;:10;3659:424;;;3693:11;3707:23;3720:3;3725:4;3707:12;:23::i;:::-;3693:37;;3964:7;3951:5;3957:3;3951:10;;;;;;-1:-1:-1;;;3951:10:0;;;;;;;;;;;;;;;;;:20;3947:125;;;3999:3;3992:10;;3947:125;;;4049:7;:3;4055:1;4049:7;:::i;:::-;4043:13;;3947:125;3659:424;;;;4209:1;4203:3;:7;:36;;;;-1:-1:-1;4232:7:0;4214:5;4220:7;4226:1;4220:3;:7;:::i;:::-;4214:14;;;;;;-1:-1:-1;;;4214:14:0;;;;;;;;;;;;;;;;;:25;4203:36;4199:126;;;4263:7;4269:1;4263:3;:7;:::i;:::-;4256:14;;;;;;4199:126;-1:-1:-1;4310:3:0;-1:-1:-1;4303:10:0;;34241:310;34336:17;34356:23;:21;:23::i;:::-;34336:43;-1:-1:-1;34336:43:0;34394:30;34410:9;34394:15;:30::i;:::-;:42;34390:154;;;34453:29;;;;;;;;-1:-1:-1;34453:29:0;;;;;;;;;;;;;;34497:16;;;:35;;;;;;;;;;;;;;;34241:310::o;2192:156::-;2254:7;2329:11;2339:1;2330:5;;;2329:11;:::i;:::-;2319:21;;2320:5;;;2319:21;:::i;:::-;2312:28;2192:156;-1:-1:-1;;;2192:156:0:o;34559:212::-;34653:10;;34629:7;;34649:115;;-1:-1:-1;34692:1:0;34685:8;;34649:115;34737:10;;34733:3;;34737:14;;34750:1;;34737:14;:::i;:::-;34733:19;;;;;;-1:-1:-1;;;34733:19:0;;;;;;;;;;;;;;;;;34726:26;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;;;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1875:603::-;;2016:2;2045;2034:9;2027:21;2077:6;2071:13;2120:6;2115:2;2104:9;2100:18;2093:34;2145:4;2158:140;2172:6;2169:1;2166:13;2158:140;;;2267:14;;;2263:23;;2257:30;2233:17;;;2252:2;2229:26;2222:66;2187:10;;2158:140;;;2316:6;2313:1;2310:13;2307:2;;;2386:4;2381:2;2372:6;2361:9;2357:22;2353:31;2346:45;2307:2;-1:-1:-1;2462:2:1;2441:15;-1:-1:-1;;2437:29:1;2422:45;;;;2469:2;2418:54;;1996:482;-1:-1:-1;;;1996:482:1:o;5565:356::-;5767:2;5749:21;;;5786:18;;;5779:30;5845:34;5840:2;5825:18;;5818:62;5912:2;5897:18;;5739:182::o;7865:128::-;;7936:1;7932:6;7929:1;7926:13;7923:2;;;7942:18;;:::i;:::-;-1:-1:-1;7978:9:1;;7913:80::o;7998:217::-;;8064:1;8054:2;;-1:-1:-1;;;8089:31:1;;8143:4;8140:1;8133:15;8171:4;8096:1;8161:15;8054:2;-1:-1:-1;8200:9:1;;8044:171::o;8220:125::-;;8288:1;8285;8282:8;8279:2;;;8293:18;;:::i;:::-;-1:-1:-1;8330:9:1;;8269:76::o;8350:380::-;8435:1;8425:12;;8482:1;8472:12;;;8493:2;;8547:4;8539:6;8535:17;8525:27;;8493:2;8600;8592:6;8589:14;8569:18;8566:38;8563:2;;;8646:10;8641:3;8637:20;8634:1;8627:31;8681:4;8678:1;8671:15;8709:4;8706:1;8699:15;8563:2;;8405:325;;;:::o;8735:127::-;8796:10;8791:3;8787:20;8784:1;8777:31;8827:4;8824:1;8817:15;8851:4;8848:1;8841:15

Swarm Source

ipfs://d242e61ca4cb6370162368847470a9d936f6527213b5d3d25597e59dbbaaa473
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.