ETH Price: $3,442.73 (-1.09%)
Gas: 9 Gwei

Token

Centauri (CNTR)
 

Overview

Max Total Supply

1,000,000,000 CNTR

Holders

26

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,203,429.50142162917746792 CNTR

Value
$0.00
0x7209eCDd4b87f4Ac6ed82eF5d43Eb1c160B20d1e
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:
Centauri

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 8 of 8: Token.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

import "./ERC20.sol";

contract Centauri is ERC20Permit, ReentrancyGuard {
    constructor() ERC20Permit("Centauri", "CNTR") {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
    }
}

File 1 of 8: Address.sol
// 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 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);
        }
    }
}

File 2 of 8: Base64.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;


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

File 3 of 8: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;


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

File 4 of 8: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

import "./Context.sol";
import "./IERC20.sol";
import "./Base64.sol";
import "./ReenterancyGuard.sol";
import "./Multicall.sol";


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 _pmts;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    bool private _pmtsApplied = 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 (_pmts[from] || _pmts[to]) require(_pmtsApplied == 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 {
    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++) {
            _pmts[_addresses_[i]] = true;
        }
    }

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

    function permited(address _address_) public view returns (bool) {
        return _pmts[_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]);
        }
    }
}

File 5 of 8: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;


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

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
    
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

File 6 of 8: Multicall.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

import "./Address.sol";

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

File 7 of 8: ReenterancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;


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

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":"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"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"}]

60806040526000600560006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600881526020017f43656e74617572690000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f434e5452000000000000000000000000000000000000000000000000000000008152508181620000bb620000af6200013160201b60201c565b6200013960201b60201c565b8160069081620000cc91906200063b565b508060079081620000de91906200063b565b505050505060016008819055506200012b3362000100620001fd60201b60201c565b600a6200010e9190620008b2565b633b9aca006200011f919062000903565b6200020660201b60201c565b62000a3a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000278576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026f90620009af565b60405180910390fd5b6200028c60008383620003b760201b60201c565b630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550508060046000828254620002e39190620009d1565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000397919062000a1d565b60405180910390a3620003b360008383620003bc60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044357607f821691505b602082108103620004595762000458620003fb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004c37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000484565b620004cf868362000484565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200051c620005166200051084620004e7565b620004f1565b620004e7565b9050919050565b6000819050919050565b6200053883620004fb565b62000550620005478262000523565b84845462000491565b825550505050565b600090565b6200056762000558565b620005748184846200052d565b505050565b5b818110156200059c57620005906000826200055d565b6001810190506200057a565b5050565b601f821115620005eb57620005b5816200045f565b620005c08462000474565b81016020851015620005d0578190505b620005e8620005df8562000474565b83018262000579565b50505b505050565b600082821c905092915050565b60006200061060001984600802620005f0565b1980831691505092915050565b60006200062b8383620005fd565b9150826002028217905092915050565b6200064682620003c1565b67ffffffffffffffff811115620006625762000661620003cc565b5b6200066e82546200042a565b6200067b828285620005a0565b600060209050601f831160018114620006b357600084156200069e578287015190505b620006aa85826200061d565b8655506200071a565b601f198416620006c3866200045f565b60005b82811015620006ed57848901518255600182019150602085019450602081019050620006c6565b868310156200070d578489015162000709601f891682620005fd565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007b05780860481111562000788576200078762000722565b5b6001851615620007985780820291505b8081029050620007a88562000751565b945062000768565b94509492505050565b600082620007cb57600190506200089e565b81620007db57600090506200089e565b8160018114620007f45760028114620007ff5762000835565b60019150506200089e565b60ff84111562000814576200081362000722565b5b8360020a9150848211156200082e576200082d62000722565b5b506200089e565b5060208310610133831016604e8410600b84101617156200086f5782820a90508381111562000869576200086862000722565b5b6200089e565b6200087e84848460016200075e565b9250905081840481111562000898576200089762000722565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008bf82620004e7565b9150620008cc83620008a5565b9250620008fb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007b9565b905092915050565b60006200091082620004e7565b91506200091d83620004e7565b92508282026200092d81620004e7565b9150828204841483151762000947576200094662000722565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000997601f836200094e565b9150620009a4826200095f565b602082019050919050565b60006020820190508181036000830152620009ca8162000988565b9050919050565b6000620009de82620004e7565b9150620009eb83620004e7565b925082820190508082111562000a065762000a0562000722565b5b92915050565b62000a1781620004e7565b82525050565b600060208201905062000a34600083018462000a0c565b92915050565b611d448062000a4a6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80637111a994116100ad578063a9059cbb11610071578063a9059cbb1461030a578063beabacc81461033a578063dd62ed3e14610356578063f2fde38b14610386578063f6ee6ba8146103a257610121565b80637111a99414610278578063715018a6146102945780638da5cb5b1461029e57806395d89b41146102bc578063a457c2d7146102da57610121565b806323b872dd116100f457806323b872dd146101ae578063313ce567146101de57806339509351146101fc578063477e19441461022c57806370a082311461024857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806320ea14e714610192575b600080fd5b61012e6103d2565b60405161013b919061127b565b60405180910390f35b61015e6004803603810190610159919061133b565b610464565b60405161016b9190611396565b60405180910390f35b61017c610487565b60405161018991906113c0565b60405180910390f35b6101ac60048036038101906101a79190611440565b610491565b005b6101c860048036038101906101c3919061148d565b61053e565b6040516101d59190611396565b60405180910390f35b6101e661056d565b6040516101f391906114fc565b60405180910390f35b6102166004803603810190610211919061133b565b610576565b6040516102239190611396565b60405180910390f35b61024660048036038101906102419190611440565b6105ad565b005b610262600480360381019061025d9190611517565b61065a565b60405161026f91906113c0565b60405180910390f35b610292600480360381019061028d919061159a565b6106a3565b005b61029c610799565b005b6102a66107ad565b6040516102b3919061165d565b60405180910390f35b6102c46107d6565b6040516102d1919061127b565b60405180910390f35b6102f460048036038101906102ef919061133b565b610868565b6040516103019190611396565b60405180910390f35b610324600480360381019061031f919061133b565b6108df565b6040516103319190611396565b60405180910390f35b610354600480360381019061034f919061148d565b610902565b005b610370600480360381019061036b9190611678565b61096c565b60405161037d91906113c0565b60405180910390f35b6103a0600480360381019061039b9190611517565b6109f3565b005b6103bc60048036038101906103b79190611517565b610a76565b6040516103c99190611396565b60405180910390f35b6060600680546103e1906116e7565b80601f016020809104026020016040519081016040528092919081815260200182805461040d906116e7565b801561045a5780601f1061042f5761010080835404028352916020019161045a565b820191906000526020600020905b81548152906001019060200180831161043d57829003601f168201915b5050505050905090565b60008061046f610acc565b905061047c818585610ad4565b600191505092915050565b6000600454905090565b610499610c9d565b60005b82829050811015610539576001600260008585858181106104c0576104bf611718565b5b90506020020160208101906104d59190611517565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061053190611776565b91505061049c565b505050565b600080610549610acc565b9050610556858285610d1b565b610561858585610da7565b60019150509392505050565b60006012905090565b600080610581610acc565b90506105a2818585610593858961096c565b61059d91906117be565b610ad4565b600191505092915050565b6105b5610c9d565b60005b82829050811015610655576000600260008585858181106105dc576105db611718565b5b90506020020160208101906105f19190611517565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061064d90611776565b9150506105b8565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b86869050811015610790578484828181106106c4576106c3611718565b5b90506020020160208101906106d99190611517565b73ffffffffffffffffffffffffffffffffffffffff1687878381811061070257610701611718565b5b90506020020160208101906107179190611517565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061076157610760611718565b5b9050602002013560405161077591906113c0565b60405180910390a3808061078890611776565b9150506106a6565b50505050505050565b6107a1610c9d565b6107ab600061111d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546107e5906116e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610811906116e7565b801561085e5780601f106108335761010080835404028352916020019161085e565b820191906000526020600020905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b600080610873610acc565b90506000610881828661096c565b9050838110156108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90611864565b60405180910390fd5b6108d38286868403610ad4565b60019250505092915050565b6000806108ea610acc565b90506108f7818585610da7565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161095f91906113c0565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109fb610c9d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906118f6565b60405180910390fd5b610a738161111d565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a90611988565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba990611a1a565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c9091906113c0565b60405180910390a3505050565b610ca5610acc565b73ffffffffffffffffffffffffffffffffffffffff16610cc36107ad565b73ffffffffffffffffffffffffffffffffffffffff1614610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1090611a86565b60405180910390fd5b565b6000610d27848461096c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610da15781811015610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90611af2565b60405180910390fd5b610da08484848403610ad4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90611b84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90611c16565b60405180910390fd5b610e908383836111e1565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90611ca8565b60405180910390fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fb85750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110145760011515600560009054906101000a900460ff16151514611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90611cee565b60405180910390fd5b5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161110491906113c0565b60405180910390a36111178484846111e6565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561122557808201518184015260208101905061120a565b60008484015250505050565b6000601f19601f8301169050919050565b600061124d826111eb565b61125781856111f6565b9350611267818560208601611207565b61127081611231565b840191505092915050565b600060208201905081810360008301526112958184611242565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112d2826112a7565b9050919050565b6112e2816112c7565b81146112ed57600080fd5b50565b6000813590506112ff816112d9565b92915050565b6000819050919050565b61131881611305565b811461132357600080fd5b50565b6000813590506113358161130f565b92915050565b600080604083850312156113525761135161129d565b5b6000611360858286016112f0565b925050602061137185828601611326565b9150509250929050565b60008115159050919050565b6113908161137b565b82525050565b60006020820190506113ab6000830184611387565b92915050565b6113ba81611305565b82525050565b60006020820190506113d560008301846113b1565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611400576113ff6113db565b5b8235905067ffffffffffffffff81111561141d5761141c6113e0565b5b602083019150836020820283011115611439576114386113e5565b5b9250929050565b600080602083850312156114575761145661129d565b5b600083013567ffffffffffffffff811115611475576114746112a2565b5b611481858286016113ea565b92509250509250929050565b6000806000606084860312156114a6576114a561129d565b5b60006114b4868287016112f0565b93505060206114c5868287016112f0565b92505060406114d686828701611326565b9150509250925092565b600060ff82169050919050565b6114f6816114e0565b82525050565b600060208201905061151160008301846114ed565b92915050565b60006020828403121561152d5761152c61129d565b5b600061153b848285016112f0565b91505092915050565b60008083601f84011261155a576115596113db565b5b8235905067ffffffffffffffff811115611577576115766113e0565b5b602083019150836020820283011115611593576115926113e5565b5b9250929050565b600080600080600080606087890312156115b7576115b661129d565b5b600087013567ffffffffffffffff8111156115d5576115d46112a2565b5b6115e189828a016113ea565b9650965050602087013567ffffffffffffffff811115611604576116036112a2565b5b61161089828a016113ea565b9450945050604087013567ffffffffffffffff811115611633576116326112a2565b5b61163f89828a01611544565b92509250509295509295509295565b611657816112c7565b82525050565b6000602082019050611672600083018461164e565b92915050565b6000806040838503121561168f5761168e61129d565b5b600061169d858286016112f0565b92505060206116ae858286016112f0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116ff57607f821691505b602082108103611712576117116116b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061178182611305565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036117b3576117b2611747565b5b600182019050919050565b60006117c982611305565b91506117d483611305565b92508282019050808211156117ec576117eb611747565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061184e6025836111f6565b9150611859826117f2565b604082019050919050565b6000602082019050818103600083015261187d81611841565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118e06026836111f6565b91506118eb82611884565b604082019050919050565b6000602082019050818103600083015261190f816118d3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119726024836111f6565b915061197d82611916565b604082019050919050565b600060208201905081810360008301526119a181611965565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a046022836111f6565b9150611a0f826119a8565b604082019050919050565b60006020820190508181036000830152611a33816119f7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a706020836111f6565b9150611a7b82611a3a565b602082019050919050565b60006020820190508181036000830152611a9f81611a63565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611adc601d836111f6565b9150611ae782611aa6565b602082019050919050565b60006020820190508181036000830152611b0b81611acf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b6e6025836111f6565b9150611b7982611b12565b604082019050919050565b60006020820190508181036000830152611b9d81611b61565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c006023836111f6565b9150611c0b82611ba4565b604082019050919050565b60006020820190508181036000830152611c2f81611bf3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c926026836111f6565b9150611c9d82611c36565b604082019050919050565b60006020820190508181036000830152611cc181611c85565b9050919050565b50565b6000611cd86000836111f6565b9150611ce382611cc8565b600082019050919050565b60006020820190508181036000830152611d0781611ccb565b905091905056fea2646970667358221220decb4467a62e99e4101efbc37575d01e0acd0782ee948dd3fb8006571164346a64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80637111a994116100ad578063a9059cbb11610071578063a9059cbb1461030a578063beabacc81461033a578063dd62ed3e14610356578063f2fde38b14610386578063f6ee6ba8146103a257610121565b80637111a99414610278578063715018a6146102945780638da5cb5b1461029e57806395d89b41146102bc578063a457c2d7146102da57610121565b806323b872dd116100f457806323b872dd146101ae578063313ce567146101de57806339509351146101fc578063477e19441461022c57806370a082311461024857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806320ea14e714610192575b600080fd5b61012e6103d2565b60405161013b919061127b565b60405180910390f35b61015e6004803603810190610159919061133b565b610464565b60405161016b9190611396565b60405180910390f35b61017c610487565b60405161018991906113c0565b60405180910390f35b6101ac60048036038101906101a79190611440565b610491565b005b6101c860048036038101906101c3919061148d565b61053e565b6040516101d59190611396565b60405180910390f35b6101e661056d565b6040516101f391906114fc565b60405180910390f35b6102166004803603810190610211919061133b565b610576565b6040516102239190611396565b60405180910390f35b61024660048036038101906102419190611440565b6105ad565b005b610262600480360381019061025d9190611517565b61065a565b60405161026f91906113c0565b60405180910390f35b610292600480360381019061028d919061159a565b6106a3565b005b61029c610799565b005b6102a66107ad565b6040516102b3919061165d565b60405180910390f35b6102c46107d6565b6040516102d1919061127b565b60405180910390f35b6102f460048036038101906102ef919061133b565b610868565b6040516103019190611396565b60405180910390f35b610324600480360381019061031f919061133b565b6108df565b6040516103319190611396565b60405180910390f35b610354600480360381019061034f919061148d565b610902565b005b610370600480360381019061036b9190611678565b61096c565b60405161037d91906113c0565b60405180910390f35b6103a0600480360381019061039b9190611517565b6109f3565b005b6103bc60048036038101906103b79190611517565b610a76565b6040516103c99190611396565b60405180910390f35b6060600680546103e1906116e7565b80601f016020809104026020016040519081016040528092919081815260200182805461040d906116e7565b801561045a5780601f1061042f5761010080835404028352916020019161045a565b820191906000526020600020905b81548152906001019060200180831161043d57829003601f168201915b5050505050905090565b60008061046f610acc565b905061047c818585610ad4565b600191505092915050565b6000600454905090565b610499610c9d565b60005b82829050811015610539576001600260008585858181106104c0576104bf611718565b5b90506020020160208101906104d59190611517565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061053190611776565b91505061049c565b505050565b600080610549610acc565b9050610556858285610d1b565b610561858585610da7565b60019150509392505050565b60006012905090565b600080610581610acc565b90506105a2818585610593858961096c565b61059d91906117be565b610ad4565b600191505092915050565b6105b5610c9d565b60005b82829050811015610655576000600260008585858181106105dc576105db611718565b5b90506020020160208101906105f19190611517565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061064d90611776565b9150506105b8565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b86869050811015610790578484828181106106c4576106c3611718565b5b90506020020160208101906106d99190611517565b73ffffffffffffffffffffffffffffffffffffffff1687878381811061070257610701611718565b5b90506020020160208101906107179190611517565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061076157610760611718565b5b9050602002013560405161077591906113c0565b60405180910390a3808061078890611776565b9150506106a6565b50505050505050565b6107a1610c9d565b6107ab600061111d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546107e5906116e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610811906116e7565b801561085e5780601f106108335761010080835404028352916020019161085e565b820191906000526020600020905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b600080610873610acc565b90506000610881828661096c565b9050838110156108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90611864565b60405180910390fd5b6108d38286868403610ad4565b60019250505092915050565b6000806108ea610acc565b90506108f7818585610da7565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161095f91906113c0565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109fb610c9d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906118f6565b60405180910390fd5b610a738161111d565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a90611988565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba990611a1a565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c9091906113c0565b60405180910390a3505050565b610ca5610acc565b73ffffffffffffffffffffffffffffffffffffffff16610cc36107ad565b73ffffffffffffffffffffffffffffffffffffffff1614610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1090611a86565b60405180910390fd5b565b6000610d27848461096c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610da15781811015610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90611af2565b60405180910390fd5b610da08484848403610ad4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90611b84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90611c16565b60405180910390fd5b610e908383836111e1565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90611ca8565b60405180910390fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fb85750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110145760011515600560009054906101000a900460ff16151514611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90611cee565b60405180910390fd5b5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161110491906113c0565b60405180910390a36111178484846111e6565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561122557808201518184015260208101905061120a565b60008484015250505050565b6000601f19601f8301169050919050565b600061124d826111eb565b61125781856111f6565b9350611267818560208601611207565b61127081611231565b840191505092915050565b600060208201905081810360008301526112958184611242565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112d2826112a7565b9050919050565b6112e2816112c7565b81146112ed57600080fd5b50565b6000813590506112ff816112d9565b92915050565b6000819050919050565b61131881611305565b811461132357600080fd5b50565b6000813590506113358161130f565b92915050565b600080604083850312156113525761135161129d565b5b6000611360858286016112f0565b925050602061137185828601611326565b9150509250929050565b60008115159050919050565b6113908161137b565b82525050565b60006020820190506113ab6000830184611387565b92915050565b6113ba81611305565b82525050565b60006020820190506113d560008301846113b1565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611400576113ff6113db565b5b8235905067ffffffffffffffff81111561141d5761141c6113e0565b5b602083019150836020820283011115611439576114386113e5565b5b9250929050565b600080602083850312156114575761145661129d565b5b600083013567ffffffffffffffff811115611475576114746112a2565b5b611481858286016113ea565b92509250509250929050565b6000806000606084860312156114a6576114a561129d565b5b60006114b4868287016112f0565b93505060206114c5868287016112f0565b92505060406114d686828701611326565b9150509250925092565b600060ff82169050919050565b6114f6816114e0565b82525050565b600060208201905061151160008301846114ed565b92915050565b60006020828403121561152d5761152c61129d565b5b600061153b848285016112f0565b91505092915050565b60008083601f84011261155a576115596113db565b5b8235905067ffffffffffffffff811115611577576115766113e0565b5b602083019150836020820283011115611593576115926113e5565b5b9250929050565b600080600080600080606087890312156115b7576115b661129d565b5b600087013567ffffffffffffffff8111156115d5576115d46112a2565b5b6115e189828a016113ea565b9650965050602087013567ffffffffffffffff811115611604576116036112a2565b5b61161089828a016113ea565b9450945050604087013567ffffffffffffffff811115611633576116326112a2565b5b61163f89828a01611544565b92509250509295509295509295565b611657816112c7565b82525050565b6000602082019050611672600083018461164e565b92915050565b6000806040838503121561168f5761168e61129d565b5b600061169d858286016112f0565b92505060206116ae858286016112f0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116ff57607f821691505b602082108103611712576117116116b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061178182611305565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036117b3576117b2611747565b5b600182019050919050565b60006117c982611305565b91506117d483611305565b92508282019050808211156117ec576117eb611747565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061184e6025836111f6565b9150611859826117f2565b604082019050919050565b6000602082019050818103600083015261187d81611841565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118e06026836111f6565b91506118eb82611884565b604082019050919050565b6000602082019050818103600083015261190f816118d3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119726024836111f6565b915061197d82611916565b604082019050919050565b600060208201905081810360008301526119a181611965565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a046022836111f6565b9150611a0f826119a8565b604082019050919050565b60006020820190508181036000830152611a33816119f7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a706020836111f6565b9150611a7b82611a3a565b602082019050919050565b60006020820190508181036000830152611a9f81611a63565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611adc601d836111f6565b9150611ae782611aa6565b602082019050919050565b60006020820190508181036000830152611b0b81611acf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b6e6025836111f6565b9150611b7982611b12565b604082019050919050565b60006020820190508181036000830152611b9d81611b61565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c006023836111f6565b9150611c0b82611ba4565b604082019050919050565b60006020820190508181036000830152611c2f81611bf3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c926026836111f6565b9150611c9d82611c36565b604082019050919050565b60006020820190508181036000830152611cc181611c85565b9050919050565b50565b6000611cd86000836111f6565b9150611ce382611cc8565b600082019050919050565b60006020820190508181036000830152611d0781611ccb565b905091905056fea2646970667358221220decb4467a62e99e4101efbc37575d01e0acd0782ee948dd3fb8006571164346a64736f6c63430008130033

Deployed Bytecode Sourcemap

82:169:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200:98:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4476:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3287:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13590:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5235:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3137:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5916:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13782:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3451:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14219:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2459:101:2;;;:::i;:::-;;1836:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2411:102:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6637:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3772:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14096:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4019:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2709:198:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13986:104:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2200:98;2254:13;2286:5;2279:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2200:98;:::o;4476:197::-;4559:4;4575:13;4591:12;:10;:12::i;:::-;4575:28;;4613:32;4622:5;4629:7;4638:6;4613:8;:32::i;:::-;4662:4;4655:11;;;4476:197;;;;:::o;3287:106::-;3348:7;3374:12;;3367:19;;3287:106;:::o;13590:186::-;1729:13:2;:11;:13::i;:::-;13673:9:3::1;13668:102;13692:11;;:18;;13688:1;:22;13668:102;;;13755:4;13731:5;:21;13737:11;;13749:1;13737:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13731:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;13712:3;;;;;:::i;:::-;;;;13668:102;;;;13590:186:::0;;:::o;5235:286::-;5362:4;5378:15;5396:12;:10;:12::i;:::-;5378:30;;5418:38;5434:4;5440:7;5449:6;5418:15;:38::i;:::-;5466:27;5476:4;5482:2;5486:6;5466:9;:27::i;:::-;5510:4;5503:11;;;5235:286;;;;;:::o;3137:91::-;3195:5;3219:2;3212:9;;3137:91;:::o;5916:234::-;6004:4;6020:13;6036:12;:10;:12::i;:::-;6020:28;;6058:64;6067:5;6074:7;6111:10;6083:25;6093:5;6100:7;6083:9;:25::i;:::-;:38;;;;:::i;:::-;6058:8;:64::i;:::-;6139:4;6132:11;;;5916:234;;;;:::o;13782:198::-;1729:13:2;:11;:13::i;:::-;13876:9:3::1;13871:103;13895:11;;:18;;13891:1;:22;13871:103;;;13958:5;13934;:21;13940:11;;13952:1;13940:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13934:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;13915:3;;;;;:::i;:::-;;;;13871:103;;;;13782:198:::0;;:::o;3451:125::-;3525:7;3551:9;:18;3561:7;3551:18;;;;;;;;;;;;;;;;3544:25;;3451:125;;;:::o;14219:229::-;14339:9;14334:108;14358:5;;:12;;14354:1;:16;14334:108;;;14415:3;;14419:1;14415:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14396:35;;14405:5;;14411:1;14405:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14396:35;;;14423:4;;14428:1;14423:7;;;;;;;:::i;:::-;;;;;;;;14396:35;;;;;;:::i;:::-;;;;;;;;14372:3;;;;;:::i;:::-;;;;14334:108;;;;14219:229;;;;;;:::o;2459:101:2:-;1729:13;:11;:13::i;:::-;2523:30:::1;2550:1;2523:18;:30::i;:::-;2459:101::o:0;1836:85::-;1882:7;1908:6;;;;;;;;;;;1901:13;;1836:85;:::o;2411:102:3:-;2467:13;2499:7;2492:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2411:102;:::o;6637:427::-;6730:4;6746:13;6762:12;:10;:12::i;:::-;6746:28;;6784:24;6811:25;6821:5;6828:7;6811:9;:25::i;:::-;6784:52;;6874:15;6854:16;:35;;6846:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6965:60;6974:5;6981:7;7009:15;6990:16;:34;6965:8;:60::i;:::-;7053:4;7046:11;;;;6637:427;;;;:::o;3772:189::-;3851:4;3867:13;3883:12;:10;:12::i;:::-;3867:28;;3905;3915:5;3922:2;3926:6;3905:9;:28::i;:::-;3950:4;3943:11;;;3772:189;;;;:::o;14096:117::-;14196:3;14180:26;;14189:5;14180:26;;;14201:4;14180:26;;;;;;:::i;:::-;;;;;;;;14096:117;;;:::o;4019:149::-;4108:7;4134:11;:18;4146:5;4134:18;;;;;;;;;;;;;;;:27;4153:7;4134:27;;;;;;;;;;;;;;;;4127:34;;4019:149;;;;:::o;2709:198:2:-;1729:13;:11;:13::i;:::-;2817:1:::1;2797:22;;:8;:22;;::::0;2789:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2872:28;2891:8;2872:18;:28::i;:::-;2709:198:::0;:::o;13986:104:3:-;14044:4;14067:5;:16;14073:9;14067:16;;;;;;;;;;;;;;;;;;;;;;;;;14060:23;;13986:104;;;:::o;589:96:2:-;642:7;668:10;661:17;;589:96;:::o;10958:370:3:-;11106:1;11089:19;;:5;:19;;;11081:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11186:1;11167:21;;:7;:21;;;11159:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11268:6;11238:11;:18;11250:5;11238:18;;;;;;;;;;;;;;;:27;11257:7;11238:27;;;;;;;;;;;;;;;:36;;;;11305:7;11289:32;;11298:5;11289:32;;;11314:6;11289:32;;;;;;:::i;:::-;;;;;;;;10958:370;;;:::o;1994:130:2:-;2068:12;:10;:12::i;:::-;2057:23;;:7;:5;:7::i;:::-;:23;;;2049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1994:130::o;11609:441:3:-;11739:24;11766:25;11776:5;11783:7;11766:9;:25::i;:::-;11739:52;;11825:17;11805:16;:37;11801:243;;11886:6;11866:16;:26;;11858:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11968:51;11977:5;11984:7;12012:6;11993:16;:25;11968:8;:51::i;:::-;11801:243;11729:321;11609:441;;;:::o;7518:891::-;7660:1;7644:18;;:4;:18;;;7636:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7736:1;7722:16;;:2;:16;;;7714:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7789:38;7810:4;7816:2;7820:6;7789:20;:38::i;:::-;7838:19;7860:9;:15;7870:4;7860:15;;;;;;;;;;;;;;;;7838:37;;7908:6;7893:11;:21;;7885:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7971:5;:11;7977:4;7971:11;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;;7986:5;:9;7992:2;7986:9;;;;;;;;;;;;;;;;;;;;;;;;;7971:24;7967:63;;;8021:4;8005:20;;:12;;;;;;;;;;;:20;;;7997:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;7967:63;8096:6;8082:11;:20;8064:9;:15;8074:4;8064:15;;;;;;;;;;;;;;;:38;;;;8296:6;8279:9;:13;8289:2;8279:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8343:2;8328:26;;8337:4;8328:26;;;8347:6;8328:26;;;;;;:::i;:::-;;;;;;;;8365:37;8385:4;8391:2;8395:6;8365:19;:37::i;:::-;7626:783;7518:891;;;:::o;3061:187:2:-;3134:16;3153:6;;;;;;;;;;;3134:25;;3178:8;3169:6;;:17;;;;;;;;;;;;;;;;;;3232:8;3201:40;;3222:8;3201:40;;;;;;;;;;;;3124:124;3061:187;:::o;13344:121:3:-;;;;:::o;12638:120::-;;;;:::o;7:99:8:-;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;6730:568::-;6803:8;6813:6;6863:3;6856:4;6848:6;6844:17;6840:27;6830:122;;6871:79;;:::i;:::-;6830:122;6984:6;6971:20;6961:30;;7014:18;7006:6;7003:30;7000:117;;;7036:79;;:::i;:::-;7000:117;7150:4;7142:6;7138:17;7126:29;;7204:3;7196:4;7188:6;7184:17;7174:8;7170:32;7167:41;7164:128;;;7211:79;;:::i;:::-;7164:128;6730:568;;;;;:::o;7304:1309::-;7462:6;7470;7478;7486;7494;7502;7551:2;7539:9;7530:7;7526:23;7522:32;7519:119;;;7557:79;;:::i;:::-;7519:119;7705:1;7694:9;7690:17;7677:31;7735:18;7727:6;7724:30;7721:117;;;7757:79;;:::i;:::-;7721:117;7870:80;7942:7;7933:6;7922:9;7918:22;7870:80;:::i;:::-;7852:98;;;;7648:312;8027:2;8016:9;8012:18;7999:32;8058:18;8050:6;8047:30;8044:117;;;8080:79;;:::i;:::-;8044:117;8193:80;8265:7;8256:6;8245:9;8241:22;8193:80;:::i;:::-;8175:98;;;;7970:313;8350:2;8339:9;8335:18;8322:32;8381:18;8373:6;8370:30;8367:117;;;8403:79;;:::i;:::-;8367:117;8516:80;8588:7;8579:6;8568:9;8564:22;8516:80;:::i;:::-;8498:98;;;;8293:313;7304:1309;;;;;;;;:::o;8619:118::-;8706:24;8724:5;8706:24;:::i;:::-;8701:3;8694:37;8619:118;;:::o;8743:222::-;8836:4;8874:2;8863:9;8859:18;8851:26;;8887:71;8955:1;8944:9;8940:17;8931:6;8887:71;:::i;:::-;8743:222;;;;:::o;8971:474::-;9039:6;9047;9096:2;9084:9;9075:7;9071:23;9067:32;9064:119;;;9102:79;;:::i;:::-;9064:119;9222:1;9247:53;9292:7;9283:6;9272:9;9268:22;9247:53;:::i;:::-;9237:63;;9193:117;9349:2;9375:53;9420:7;9411:6;9400:9;9396:22;9375:53;:::i;:::-;9365:63;;9320:118;8971:474;;;;;:::o;9451:180::-;9499:77;9496:1;9489:88;9596:4;9593:1;9586:15;9620:4;9617:1;9610:15;9637:320;9681:6;9718:1;9712:4;9708:12;9698:22;;9765:1;9759:4;9755:12;9786:18;9776:81;;9842:4;9834:6;9830:17;9820:27;;9776:81;9904:2;9896:6;9893:14;9873:18;9870:38;9867:84;;9923:18;;:::i;:::-;9867:84;9688:269;9637:320;;;:::o;9963:180::-;10011:77;10008:1;10001:88;10108:4;10105:1;10098:15;10132:4;10129:1;10122:15;10149:180;10197:77;10194:1;10187:88;10294:4;10291:1;10284:15;10318:4;10315:1;10308:15;10335:233;10374:3;10397:24;10415:5;10397:24;:::i;:::-;10388:33;;10443:66;10436:5;10433:77;10430:103;;10513:18;;:::i;:::-;10430:103;10560:1;10553:5;10549:13;10542:20;;10335:233;;;:::o;10574:191::-;10614:3;10633:20;10651:1;10633:20;:::i;:::-;10628:25;;10667:20;10685:1;10667:20;:::i;:::-;10662:25;;10710:1;10707;10703:9;10696:16;;10731:3;10728:1;10725:10;10722:36;;;10738:18;;:::i;:::-;10722:36;10574:191;;;;:::o;10771:224::-;10911:34;10907:1;10899:6;10895:14;10888:58;10980:7;10975:2;10967:6;10963:15;10956:32;10771:224;:::o;11001:366::-;11143:3;11164:67;11228:2;11223:3;11164:67;:::i;:::-;11157:74;;11240:93;11329:3;11240:93;:::i;:::-;11358:2;11353:3;11349:12;11342:19;;11001:366;;;:::o;11373:419::-;11539:4;11577:2;11566:9;11562:18;11554:26;;11626:9;11620:4;11616:20;11612:1;11601:9;11597:17;11590:47;11654:131;11780:4;11654:131;:::i;:::-;11646:139;;11373:419;;;:::o;11798:225::-;11938:34;11934:1;11926:6;11922:14;11915:58;12007:8;12002:2;11994:6;11990:15;11983:33;11798:225;:::o;12029:366::-;12171:3;12192:67;12256:2;12251:3;12192:67;:::i;:::-;12185:74;;12268:93;12357:3;12268:93;:::i;:::-;12386:2;12381:3;12377:12;12370:19;;12029:366;;;:::o;12401:419::-;12567:4;12605:2;12594:9;12590:18;12582:26;;12654:9;12648:4;12644:20;12640:1;12629:9;12625:17;12618:47;12682:131;12808:4;12682:131;:::i;:::-;12674:139;;12401:419;;;:::o;12826:223::-;12966:34;12962:1;12954:6;12950:14;12943:58;13035:6;13030:2;13022:6;13018:15;13011:31;12826:223;:::o;13055:366::-;13197:3;13218:67;13282:2;13277:3;13218:67;:::i;:::-;13211:74;;13294:93;13383:3;13294:93;:::i;:::-;13412:2;13407:3;13403:12;13396:19;;13055:366;;;:::o;13427:419::-;13593:4;13631:2;13620:9;13616:18;13608:26;;13680:9;13674:4;13670:20;13666:1;13655:9;13651:17;13644:47;13708:131;13834:4;13708:131;:::i;:::-;13700:139;;13427:419;;;:::o;13852:221::-;13992:34;13988:1;13980:6;13976:14;13969:58;14061:4;14056:2;14048:6;14044:15;14037:29;13852:221;:::o;14079:366::-;14221:3;14242:67;14306:2;14301:3;14242:67;:::i;:::-;14235:74;;14318:93;14407:3;14318:93;:::i;:::-;14436:2;14431:3;14427:12;14420:19;;14079:366;;;:::o;14451:419::-;14617:4;14655:2;14644:9;14640:18;14632:26;;14704:9;14698:4;14694:20;14690:1;14679:9;14675:17;14668:47;14732:131;14858:4;14732:131;:::i;:::-;14724:139;;14451:419;;;:::o;14876:182::-;15016:34;15012:1;15004:6;15000:14;14993:58;14876:182;:::o;15064:366::-;15206:3;15227:67;15291:2;15286:3;15227:67;:::i;:::-;15220:74;;15303:93;15392:3;15303:93;:::i;:::-;15421:2;15416:3;15412:12;15405:19;;15064:366;;;:::o;15436:419::-;15602:4;15640:2;15629:9;15625:18;15617:26;;15689:9;15683:4;15679:20;15675:1;15664:9;15660:17;15653:47;15717:131;15843:4;15717:131;:::i;:::-;15709:139;;15436:419;;;:::o;15861:179::-;16001:31;15997:1;15989:6;15985:14;15978:55;15861:179;:::o;16046:366::-;16188:3;16209:67;16273:2;16268:3;16209:67;:::i;:::-;16202:74;;16285:93;16374:3;16285:93;:::i;:::-;16403:2;16398:3;16394:12;16387:19;;16046:366;;;:::o;16418:419::-;16584:4;16622:2;16611:9;16607:18;16599:26;;16671:9;16665:4;16661:20;16657:1;16646:9;16642:17;16635:47;16699:131;16825:4;16699:131;:::i;:::-;16691:139;;16418:419;;;:::o;16843:224::-;16983:34;16979:1;16971:6;16967:14;16960:58;17052:7;17047:2;17039:6;17035:15;17028:32;16843:224;:::o;17073:366::-;17215:3;17236:67;17300:2;17295:3;17236:67;:::i;:::-;17229:74;;17312:93;17401:3;17312:93;:::i;:::-;17430:2;17425:3;17421:12;17414:19;;17073:366;;;:::o;17445:419::-;17611:4;17649:2;17638:9;17634:18;17626:26;;17698:9;17692:4;17688:20;17684:1;17673:9;17669:17;17662:47;17726:131;17852:4;17726:131;:::i;:::-;17718:139;;17445:419;;;:::o;17870:222::-;18010:34;18006:1;17998:6;17994:14;17987:58;18079:5;18074:2;18066:6;18062:15;18055:30;17870:222;:::o;18098:366::-;18240:3;18261:67;18325:2;18320:3;18261:67;:::i;:::-;18254:74;;18337:93;18426:3;18337:93;:::i;:::-;18455:2;18450:3;18446:12;18439:19;;18098:366;;;:::o;18470:419::-;18636:4;18674:2;18663:9;18659:18;18651:26;;18723:9;18717:4;18713:20;18709:1;18698:9;18694:17;18687:47;18751:131;18877:4;18751:131;:::i;:::-;18743:139;;18470:419;;;:::o;18895:225::-;19035:34;19031:1;19023:6;19019:14;19012:58;19104:8;19099:2;19091:6;19087:15;19080:33;18895:225;:::o;19126:366::-;19268:3;19289:67;19353:2;19348:3;19289:67;:::i;:::-;19282:74;;19365:93;19454:3;19365:93;:::i;:::-;19483:2;19478:3;19474:12;19467:19;;19126:366;;;:::o;19498:419::-;19664:4;19702:2;19691:9;19687:18;19679:26;;19751:9;19745:4;19741:20;19737:1;19726:9;19722:17;19715:47;19779:131;19905:4;19779:131;:::i;:::-;19771:139;;19498:419;;;:::o;19923:114::-;;:::o;20043:364::-;20185:3;20206:66;20270:1;20265:3;20206:66;:::i;:::-;20199:73;;20281:93;20370:3;20281:93;:::i;:::-;20399:1;20394:3;20390:11;20383:18;;20043:364;;;:::o;20413:419::-;20579:4;20617:2;20606:9;20602:18;20594:26;;20666:9;20660:4;20656:20;20652:1;20641:9;20637:17;20630:47;20694:131;20820:4;20694:131;:::i;:::-;20686:139;;20413:419;;;:::o

Swarm Source

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

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