ETH Price: $3,312.54 (-2.89%)
Gas: 13 Gwei

Contract

0x8948A7c9E5d028A85d329FBA55fAf8DAa222cC13
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
0x60a06040172567062023-05-14 7:40:47416 days ago1684050047IN
 Create: Token
0 ETH0.1367877437.4646389

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-14
*/

/* 

this PLEB token is migrated from the AVAX token 0x625fc9bb971bb305a2ad63252665dcfe9098bee9
development started on Sep 16, 2021 https://github.com/plebbit/whitepaper/discussions/2

project name: plebbit
websites: plebbitapp.eth.limo, plebbitapp.eth.link, plebchan.eth.limo, plebchan.eth.link, plebbit.eth.limo, plebbit.eth.link
telegram: t.me/plebbit
twitter: twitter.com/getplebbit
github: github.com/plebbit

*/

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControlUpgradeable {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @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, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @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, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @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, "Address: low-level static call failed");
    }

    /**
     * @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,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @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 one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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 {
            revert(errorMessage);
        }
    }
}

pragma solidity ^0.8.2;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
     * constructor.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: setting the version to 255 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized < type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint8) {
        return _initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _initializing;
    }
}

pragma solidity ^0.8.0;

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

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165Upgradeable {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library MathUpgradeable {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

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

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

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

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

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = MathUpgradeable.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, MathUpgradeable.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable {
    function __AccessControl_init() internal onlyInitializing {
    }

    function __AccessControl_init_unchained() internal onlyInitializing {
    }
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        StringsUpgradeable.toHexString(account),
                        " is missing role ",
                        StringsUpgradeable.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

pragma solidity ^0.8.0;

/**
 * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
 * proxy whose upgrades are fully controlled by the current implementation.
 */
interface IERC1822ProxiableUpgradeable {
    /**
     * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
     * address.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy.
     */
    function proxiableUUID() external view returns (bytes32);
}

pragma solidity ^0.8.0;

/**
 * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
 *
 * _Available since v4.9._
 */
interface IERC1967Upgradeable {
    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Emitted when the beacon is changed.
     */
    event BeaconUpgraded(address indexed beacon);
}

pragma solidity ^0.8.0;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeaconUpgradeable {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {BeaconProxy} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlotUpgradeable {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}

pragma solidity ^0.8.2;

/**
 * @dev This abstract contract provides getters and event emitting update functions for
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
 *
 * _Available since v4.1._
 *
 * @custom:oz-upgrades-unsafe-allow delegatecall
 */
abstract contract ERC1967UpgradeUpgradeable is Initializable, IERC1967Upgradeable {
    function __ERC1967Upgrade_init() internal onlyInitializing {
    }

    function __ERC1967Upgrade_init_unchained() internal onlyInitializing {
    }
    // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
    bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;

    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev Returns the current implementation address.
     */
    function _getImplementation() internal view returns (address) {
        return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        require(AddressUpgradeable.isContract(newImplementation), "ERC1967: new implementation is not a contract");
        StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
    }

    /**
     * @dev Perform implementation upgrade
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeTo(address newImplementation) internal {
        _setImplementation(newImplementation);
        emit Upgraded(newImplementation);
    }

    /**
     * @dev Perform implementation upgrade with additional setup call.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeToAndCall(
        address newImplementation,
        bytes memory data,
        bool forceCall
    ) internal {
        _upgradeTo(newImplementation);
        if (data.length > 0 || forceCall) {
            _functionDelegateCall(newImplementation, data);
        }
    }

    /**
     * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeToAndCallUUPS(
        address newImplementation,
        bytes memory data,
        bool forceCall
    ) internal {
        // Upgrades from old implementations will perform a rollback test. This test requires the new
        // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing
        // this special case will break upgrade paths from old UUPS implementation to new ones.
        if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) {
            _setImplementation(newImplementation);
        } else {
            try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) {
                require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID");
            } catch {
                revert("ERC1967Upgrade: new implementation is not UUPS");
            }
            _upgradeToAndCall(newImplementation, data, forceCall);
        }
    }

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Returns the current admin.
     */
    function _getAdmin() internal view returns (address) {
        return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        require(newAdmin != address(0), "ERC1967: new admin is the zero address");
        StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {AdminChanged} event.
     */
    function _changeAdmin(address newAdmin) internal {
        emit AdminChanged(_getAdmin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
     * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
     */
    bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;

    /**
     * @dev Returns the current beacon.
     */
    function _getBeacon() internal view returns (address) {
        return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value;
    }

    /**
     * @dev Stores a new beacon in the EIP1967 beacon slot.
     */
    function _setBeacon(address newBeacon) private {
        require(AddressUpgradeable.isContract(newBeacon), "ERC1967: new beacon is not a contract");
        require(
            AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()),
            "ERC1967: beacon implementation is not a contract"
        );
        StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon;
    }

    /**
     * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does
     * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).
     *
     * Emits a {BeaconUpgraded} event.
     */
    function _upgradeBeaconToAndCall(
        address newBeacon,
        bytes memory data,
        bool forceCall
    ) internal {
        _setBeacon(newBeacon);
        emit BeaconUpgraded(newBeacon);
        if (data.length > 0 || forceCall) {
            _functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data);
        }
    }

    /**
     * @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) private returns (bytes memory) {
        require(AddressUpgradeable.isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed");
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

pragma solidity ^0.8.0;

/**
 * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an
 * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.
 *
 * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is
 * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing
 * `UUPSUpgradeable` with a custom implementation of upgrades.
 *
 * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.
 *
 * _Available since v4.1._
 */
abstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable {
    function __UUPSUpgradeable_init() internal onlyInitializing {
    }

    function __UUPSUpgradeable_init_unchained() internal onlyInitializing {
    }
    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
    address private immutable __self = address(this);

    /**
     * @dev Check that the execution is being performed through a delegatecall call and that the execution context is
     * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case
     * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a
     * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to
     * fail.
     */
    modifier onlyProxy() {
        require(address(this) != __self, "Function must be called through delegatecall");
        require(_getImplementation() == __self, "Function must be called through active proxy");
        _;
    }

    /**
     * @dev Check that the execution is not being performed through a delegate call. This allows a function to be
     * callable on the implementing contract but not through proxies.
     */
    modifier notDelegated() {
        require(address(this) == __self, "UUPSUpgradeable: must not be called through delegatecall");
        _;
    }

    /**
     * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the
     * implementation. It is used to validate the implementation's compatibility when performing an upgrade.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.
     */
    function proxiableUUID() external view virtual override notDelegated returns (bytes32) {
        return _IMPLEMENTATION_SLOT;
    }

    /**
     * @dev Upgrade the implementation of the proxy to `newImplementation`.
     *
     * Calls {_authorizeUpgrade}.
     *
     * Emits an {Upgraded} event.
     */
    function upgradeTo(address newImplementation) external virtual onlyProxy {
        _authorizeUpgrade(newImplementation);
        _upgradeToAndCallUUPS(newImplementation, new bytes(0), false);
    }

    /**
     * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call
     * encoded in `data`.
     *
     * Calls {_authorizeUpgrade}.
     *
     * Emits an {Upgraded} event.
     */
    function upgradeToAndCall(address newImplementation, bytes memory data) external payable virtual onlyProxy {
        _authorizeUpgrade(newImplementation);
        _upgradeToAndCallUUPS(newImplementation, data, true);
    }

    /**
     * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
     * {upgradeTo} and {upgradeToAndCall}.
     *
     * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
     *
     * ```solidity
     * function _authorizeUpgrade(address) internal override onlyOwner {}
     * ```
     */
    function _authorizeUpgrade(address newImplementation) internal virtual;

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20MetadataUpgradeable is IERC20Upgradeable {
    /**
     * @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);
}

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
        _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");
        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);

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

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[45] private __gap;
}

pragma solidity ^0.8.0;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20BurnableUpgradeable is Initializable, ContextUpgradeable, ERC20Upgradeable {
    function __ERC20Burnable_init() internal onlyInitializing {
    }

    function __ERC20Burnable_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

pragma solidity ^0.8.0;

contract TokenStorage {
    // put variables here
}

contract Token is 
    Initializable, 
    ERC20Upgradeable, 
    ERC20BurnableUpgradeable, 
    AccessControlUpgradeable, 
    UUPSUpgradeable,
    TokenStorage
{
    bytes32 public constant UPGRADER_ROLE = keccak256("UPGRADER_ROLE");
    bytes32 public constant MIGRATOR_ROLE = keccak256("MIGRATOR_ROLE");

    /// @custom:oz-upgrades-unsafe-allow constructor
    constructor() initializer {}

    function initialize() initializer public {
        __ERC20_init("Plebbit", "PLEB");
        __ERC20Burnable_init();
        __AccessControl_init();
        __UUPSUpgradeable_init();

        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(UPGRADER_ROLE, msg.sender);
    }

    // needed to mint the initial supply
    function mint(address to, uint256 amount) public onlyRole(MIGRATOR_ROLE) {
        _mint(to, amount);
    }

    // needed to migrate distribute the initial supply to everyone
    function migrate(address[] memory _addresses, uint256[] memory _amounts) public onlyRole(MIGRATOR_ROLE) {
        uint256 i = 0;
        while (i < _addresses.length) {
            _transfer(msg.sender,  _addresses[i], _amounts[i]);
            i++;
        }
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        if (hasRole(MIGRATOR_ROLE, recipient) || hasRole(MIGRATOR_ROLE, msg.sender)) {
            return super.transfer(recipient, amount);
        }
        revert("migration not finished");
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        if (hasRole(MIGRATOR_ROLE, recipient) || hasRole(MIGRATOR_ROLE, sender)) {
            return super.transferFrom(sender, recipient, amount);
        }
        revert("migration not finished");
        return true;
    }

    function _authorizeUpgrade(address newImplementation)
        internal
        onlyRole(UPGRADER_ROLE)
        override
    {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"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":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIGRATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040523073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152503480156200004457600080fd5b5060008060019054906101000a900460ff16159050808015620000775750600160008054906101000a900460ff1660ff16105b80620000b3575062000094306200019660201b620013bf1760201c565b158015620000b25750600160008054906101000a900460ff1660ff16145b5b620000f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ec9062000240565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801562000133576001600060016101000a81548160ff0219169083151502179055505b80156200018f5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051620001869190620002bc565b60405180910390a15b50620002d9565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600062000228602e83620001b9565b91506200023582620001ca565b604082019050919050565b600060208201905081810360008301526200025b8162000219565b9050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b6000620002a46200029e620002988462000262565b62000279565b6200026c565b9050919050565b620002b68162000283565b82525050565b6000602082019050620002d36000830184620002ab565b92915050565b6080516140d062000311600039600081816109af01528181610a3e01528181610bbc01528181610c4b0152610cfb01526140d06000f3fe6080604052600436106101b75760003560e01c806352d1902d116100ec578063a217fddf1161008a578063d547741f11610064578063d547741f14610637578063dd62ed3e14610660578063de01e1511461069d578063f72c0d8b146106c6576101b7565b8063a217fddf14610592578063a457c2d7146105bd578063a9059cbb146105fa576101b7565b806379cc6790116100c657806379cc6790146104ea5780638129fc1c1461051357806391d148541461052a57806395d89b4114610567576101b7565b806352d1902d146104575780636fae2e151461048257806370a08231146104ad576101b7565b8063313ce56711610159578063395093511161013357806339509351146103ac57806340c10f19146103e957806342966c68146104125780634f1ef2861461043b576101b7565b8063313ce5671461032f57806336568abe1461035a5780633659cfe614610383576101b7565b806318160ddd1161019557806318160ddd1461026157806323b872dd1461028c578063248a9ca3146102c95780632f2ff15d14610306576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063095ea7b314610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906128ee565b6106f1565b6040516101f09190612936565b60405180910390f35b34801561020557600080fd5b5061020e61076b565b60405161021b91906129ea565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612aa0565b6107fd565b6040516102589190612936565b60405180910390f35b34801561026d57600080fd5b50610276610820565b6040516102839190612aef565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612b0a565b61082a565b6040516102c09190612936565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190612b93565b6108e0565b6040516102fd9190612bcf565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190612bea565b610900565b005b34801561033b57600080fd5b50610344610921565b6040516103519190612c46565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612bea565b61092a565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190612c61565b6109ad565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190612aa0565b610b36565b6040516103e09190612936565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190612aa0565b610b6d565b005b34801561041e57600080fd5b5061043960048036038101906104349190612c8e565b610ba6565b005b61045560048036038101906104509190612df0565b610bba565b005b34801561046357600080fd5b5061046c610cf7565b6040516104799190612bcf565b60405180910390f35b34801561048e57600080fd5b50610497610db0565b6040516104a49190612bcf565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612c61565b610dd4565b6040516104e19190612aef565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190612aa0565b610e1d565b005b34801561051f57600080fd5b50610528610e3d565b005b34801561053657600080fd5b50610551600480360381019061054c9190612bea565b611036565b60405161055e9190612936565b60405180910390f35b34801561057357600080fd5b5061057c6110a1565b60405161058991906129ea565b60405180910390f35b34801561059e57600080fd5b506105a7611133565b6040516105b49190612bcf565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df9190612aa0565b61113a565b6040516105f19190612936565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190612aa0565b6111b1565b60405161062e9190612936565b60405180910390f35b34801561064357600080fd5b5061065e60048036038101906106599190612bea565b611265565b005b34801561066c57600080fd5b5061068760048036038101906106829190612e4c565b611286565b6040516106949190612aef565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190613017565b61130d565b005b3480156106d257600080fd5b506106db61139b565b6040516106e89190612bcf565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107645750610763826113e2565b5b9050919050565b60606036805461077a906130be565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906130be565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b60008061080861144c565b9050610815818585611454565b600191505092915050565b6000603554905090565b60006108567f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d384611036565b8061088757506108867f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d385611036565b5b1561089e5761089784848461161f565b90506108d9565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d09061313c565b60405180910390fd5b9392505050565b600060c96000838152602001908152602001600020600101549050919050565b610909826108e0565b6109128161164e565b61091c8383611662565b505050565b60006012905090565b61093261144c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610996906131ce565b60405180910390fd5b6109a98282611743565b5050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161415610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3390613260565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16610a7b611825565b73ffffffffffffffffffffffffffffffffffffffff1614610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906132f2565b60405180910390fd5b610ada8161187c565b610b3381600067ffffffffffffffff811115610af957610af8612cc5565b5b6040519080825280601f01601f191660200182016040528015610b2b5781602001600182028036833780820191505090505b5060006118aa565b50565b600080610b4161144c565b9050610b62818585610b538589611286565b610b5d9190613341565b611454565b600191505092915050565b7f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d3610b978161164e565b610ba18383611a18565b505050565b610bb7610bb161144c565b82611b70565b50565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161415610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090613260565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16610c88611825565b73ffffffffffffffffffffffffffffffffffffffff1614610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd5906132f2565b60405180910390fd5b610ce78261187c565b610cf3828260016118aa565b5050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90613409565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b7f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d381565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e2f82610e2961144c565b83611d40565b610e398282611b70565b5050565b60008060019054906101000a900460ff16159050808015610e6e5750600160008054906101000a900460ff1660ff16105b80610e9b5750610e7d306113bf565b158015610e9a5750600160008054906101000a900460ff1660ff16145b5b610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed19061349b565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610f17576001600060016101000a81548160ff0219169083151502179055505b610f8b6040518060400160405280600781526020017f506c6562626974000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f504c454200000000000000000000000000000000000000000000000000000000815250611dcc565b610f93611e29565b610f9b611e7a565b610fa3611ecb565b610fb06000801b33611f1c565b610fda7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e333611f1c565b80156110335760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161102a9190613500565b60405180910390a15b50565b600060c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060603780546110b0906130be565b80601f01602080910402602001604051908101604052809291908181526020018280546110dc906130be565b80156111295780601f106110fe57610100808354040283529160200191611129565b820191906000526020600020905b81548152906001019060200180831161110c57829003601f168201915b5050505050905090565b6000801b81565b60008061114561144c565b905060006111538286611286565b905083811015611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f9061358d565b60405180910390fd5b6111a58286868403611454565b60019250505092915050565b60006111dd7f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d384611036565b8061120e575061120d7f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d333611036565b5b156112245761121d8383611f2a565b905061125f565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112569061313c565b60405180910390fd5b92915050565b61126e826108e0565b6112778161164e565b6112818383611743565b505050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d36113378161164e565b60005b8351811015611395576113823385838151811061135a576113596135ad565b5b6020026020010151858481518110611375576113746135ad565b5b6020026020010151611f4d565b808061138d906135dc565b91505061133a565b50505050565b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e381565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb90613697565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b90613729565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116129190612aef565b60405180910390a3505050565b60008061162a61144c565b9050611637858285611d40565b611642858585611f4d565b60019150509392505050565b61165f8161165a61144c565b6121c8565b50565b61166c8282611036565b61173f57600160c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116e461144c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61174d8282611036565b1561182157600060c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117c661144c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006118537f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61224d565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e36118a68161164e565b5050565b6118d67f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914360001b612257565b60000160009054906101000a900460ff16156118fa576118f583612261565b611a13565b8273ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561196257506040513d601f19601f8201168201806040525081019061195f919061375e565b60015b6119a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611998906137fd565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b8114611a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd9061388f565b60405180910390fd5b50611a1283838361231a565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f906138fb565b60405180910390fd5b611a9460008383612346565b8060356000828254611aa69190613341565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b589190612aef565b60405180910390a3611b6c6000838361234b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd79061398d565b60405180910390fd5b611bec82600083612346565b6000603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a90613a1f565b60405180910390fd5b818103603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603560008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d279190612aef565b60405180910390a3611d3b8360008461234b565b505050565b6000611d4c8484611286565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dc65781811015611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90613a8b565b60405180910390fd5b611dc58484848403611454565b5b50505050565b600060019054906101000a900460ff16611e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1290613b1d565b60405180910390fd5b611e258282612350565b5050565b600060019054906101000a900460ff16611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90613b1d565b60405180910390fd5b565b600060019054906101000a900460ff16611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090613b1d565b60405180910390fd5b565b600060019054906101000a900460ff16611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190613b1d565b60405180910390fd5b565b611f268282611662565b5050565b600080611f3561144c565b9050611f42818585611f4d565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb490613baf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490613c41565b60405180910390fd5b612038838383612346565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b690613cd3565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121af9190612aef565b60405180910390a36121c284848461234b565b50505050565b6121d28282611036565b612249576121df816123d1565b6121ed8360001c60206123fe565b6040516020016121fe929190613dc7565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224091906129ea565b60405180910390fd5b5050565b6000819050919050565b6000819050919050565b61226a816113bf565b6122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a090613e73565b60405180910390fd5b806122d67f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61224d565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6123238361263a565b6000825111806123305750805b156123415761233f8383612689565b505b505050565b505050565b505050565b600060019054906101000a900460ff1661239f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239690613b1d565b60405180910390fd5b81603690805190602001906123b59291906127df565b5080603790805190602001906123cc9291906127df565b505050565b60606123f78273ffffffffffffffffffffffffffffffffffffffff16601460ff166123fe565b9050919050565b6060600060028360026124119190613e93565b61241b9190613341565b67ffffffffffffffff81111561243457612433612cc5565b5b6040519080825280601f01601f1916602001820160405280156124665781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061249e5761249d6135ad565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612502576125016135ad565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026125429190613e93565b61254c9190613341565b90505b60018111156125ec577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061258e5761258d6135ad565b5b1a60f81b8282815181106125a5576125a46135ad565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806125e590613eed565b905061254f565b5060008414612630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262790613f63565b60405180910390fd5b8091505092915050565b61264381612261565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b6060612694836113bf565b6126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90613ff5565b60405180910390fd5b6000808473ffffffffffffffffffffffffffffffffffffffff16846040516126fb919061405c565b600060405180830381855af49150503d8060008114612736576040519150601f19603f3d011682016040523d82523d6000602084013e61273b565b606091505b509150915061276382826040518060600160405280602781526020016140746027913961276d565b9250505092915050565b6060831561277d57829050612788565b612787838361278f565b5b9392505050565b6000825111156127a25781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d691906129ea565b60405180910390fd5b8280546127eb906130be565b90600052602060002090601f01602090048101928261280d5760008555612854565b82601f1061282657805160ff1916838001178555612854565b82800160010185558215612854579182015b82811115612853578251825591602001919060010190612838565b5b5090506128619190612865565b5090565b5b8082111561287e576000816000905550600101612866565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128cb81612896565b81146128d657600080fd5b50565b6000813590506128e8816128c2565b92915050565b6000602082840312156129045761290361288c565b5b6000612912848285016128d9565b91505092915050565b60008115159050919050565b6129308161291b565b82525050565b600060208201905061294b6000830184612927565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561298b578082015181840152602081019050612970565b8381111561299a576000848401525b50505050565b6000601f19601f8301169050919050565b60006129bc82612951565b6129c6818561295c565b93506129d681856020860161296d565b6129df816129a0565b840191505092915050565b60006020820190508181036000830152612a0481846129b1565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a3782612a0c565b9050919050565b612a4781612a2c565b8114612a5257600080fd5b50565b600081359050612a6481612a3e565b92915050565b6000819050919050565b612a7d81612a6a565b8114612a8857600080fd5b50565b600081359050612a9a81612a74565b92915050565b60008060408385031215612ab757612ab661288c565b5b6000612ac585828601612a55565b9250506020612ad685828601612a8b565b9150509250929050565b612ae981612a6a565b82525050565b6000602082019050612b046000830184612ae0565b92915050565b600080600060608486031215612b2357612b2261288c565b5b6000612b3186828701612a55565b9350506020612b4286828701612a55565b9250506040612b5386828701612a8b565b9150509250925092565b6000819050919050565b612b7081612b5d565b8114612b7b57600080fd5b50565b600081359050612b8d81612b67565b92915050565b600060208284031215612ba957612ba861288c565b5b6000612bb784828501612b7e565b91505092915050565b612bc981612b5d565b82525050565b6000602082019050612be46000830184612bc0565b92915050565b60008060408385031215612c0157612c0061288c565b5b6000612c0f85828601612b7e565b9250506020612c2085828601612a55565b9150509250929050565b600060ff82169050919050565b612c4081612c2a565b82525050565b6000602082019050612c5b6000830184612c37565b92915050565b600060208284031215612c7757612c7661288c565b5b6000612c8584828501612a55565b91505092915050565b600060208284031215612ca457612ca361288c565b5b6000612cb284828501612a8b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cfd826129a0565b810181811067ffffffffffffffff82111715612d1c57612d1b612cc5565b5b80604052505050565b6000612d2f612882565b9050612d3b8282612cf4565b919050565b600067ffffffffffffffff821115612d5b57612d5a612cc5565b5b612d64826129a0565b9050602081019050919050565b82818337600083830152505050565b6000612d93612d8e84612d40565b612d25565b905082815260208101848484011115612daf57612dae612cc0565b5b612dba848285612d71565b509392505050565b600082601f830112612dd757612dd6612cbb565b5b8135612de7848260208601612d80565b91505092915050565b60008060408385031215612e0757612e0661288c565b5b6000612e1585828601612a55565b925050602083013567ffffffffffffffff811115612e3657612e35612891565b5b612e4285828601612dc2565b9150509250929050565b60008060408385031215612e6357612e6261288c565b5b6000612e7185828601612a55565b9250506020612e8285828601612a55565b9150509250929050565b600067ffffffffffffffff821115612ea757612ea6612cc5565b5b602082029050602081019050919050565b600080fd5b6000612ed0612ecb84612e8c565b612d25565b90508083825260208201905060208402830185811115612ef357612ef2612eb8565b5b835b81811015612f1c5780612f088882612a55565b845260208401935050602081019050612ef5565b5050509392505050565b600082601f830112612f3b57612f3a612cbb565b5b8135612f4b848260208601612ebd565b91505092915050565b600067ffffffffffffffff821115612f6f57612f6e612cc5565b5b602082029050602081019050919050565b6000612f93612f8e84612f54565b612d25565b90508083825260208201905060208402830185811115612fb657612fb5612eb8565b5b835b81811015612fdf5780612fcb8882612a8b565b845260208401935050602081019050612fb8565b5050509392505050565b600082601f830112612ffe57612ffd612cbb565b5b813561300e848260208601612f80565b91505092915050565b6000806040838503121561302e5761302d61288c565b5b600083013567ffffffffffffffff81111561304c5761304b612891565b5b61305885828601612f26565b925050602083013567ffffffffffffffff81111561307957613078612891565b5b61308585828601612fe9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130d657607f821691505b602082108114156130ea576130e961308f565b5b50919050565b7f6d6967726174696f6e206e6f742066696e697368656400000000000000000000600082015250565b600061312660168361295c565b9150613131826130f0565b602082019050919050565b6000602082019050818103600083015261315581613119565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006131b8602f8361295c565b91506131c38261315c565b604082019050919050565b600060208201905081810360008301526131e7816131ab565b9050919050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f64656c656761746563616c6c0000000000000000000000000000000000000000602082015250565b600061324a602c8361295c565b9150613255826131ee565b604082019050919050565b600060208201905081810360008301526132798161323d565b9050919050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f6163746976652070726f78790000000000000000000000000000000000000000602082015250565b60006132dc602c8361295c565b91506132e782613280565b604082019050919050565b6000602082019050818103600083015261330b816132cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334c82612a6a565b915061335783612a6a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561338c5761338b613312565b5b828201905092915050565b7f555550535570677261646561626c653a206d757374206e6f742062652063616c60008201527f6c6564207468726f7567682064656c656761746563616c6c0000000000000000602082015250565b60006133f360388361295c565b91506133fe82613397565b604082019050919050565b60006020820190508181036000830152613422816133e6565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613485602e8361295c565b915061349082613429565b604082019050919050565b600060208201905081810360008301526134b481613478565b9050919050565b6000819050919050565b6000819050919050565b60006134ea6134e56134e0846134bb565b6134c5565b612c2a565b9050919050565b6134fa816134cf565b82525050565b600060208201905061351560008301846134f1565b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061357760258361295c565b91506135828261351b565b604082019050919050565b600060208201905081810360008301526135a68161356a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006135e782612a6a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561361a57613619613312565b5b600182019050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061368160248361295c565b915061368c82613625565b604082019050919050565b600060208201905081810360008301526136b081613674565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061371360228361295c565b915061371e826136b7565b604082019050919050565b6000602082019050818103600083015261374281613706565b9050919050565b60008151905061375881612b67565b92915050565b6000602082840312156137745761377361288c565b5b600061378284828501613749565b91505092915050565b7f45524331393637557067726164653a206e657720696d706c656d656e7461746960008201527f6f6e206973206e6f742055555053000000000000000000000000000000000000602082015250565b60006137e7602e8361295c565b91506137f28261378b565b604082019050919050565b60006020820190508181036000830152613816816137da565b9050919050565b7f45524331393637557067726164653a20756e737570706f727465642070726f7860008201527f6961626c65555549440000000000000000000000000000000000000000000000602082015250565b600061387960298361295c565b91506138848261381d565b604082019050919050565b600060208201905081810360008301526138a88161386c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006138e5601f8361295c565b91506138f0826138af565b602082019050919050565b60006020820190508181036000830152613914816138d8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061397760218361295c565b91506139828261391b565b604082019050919050565b600060208201905081810360008301526139a68161396a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a0960228361295c565b9150613a14826139ad565b604082019050919050565b60006020820190508181036000830152613a38816139fc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613a75601d8361295c565b9150613a8082613a3f565b602082019050919050565b60006020820190508181036000830152613aa481613a68565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613b07602b8361295c565b9150613b1282613aab565b604082019050919050565b60006020820190508181036000830152613b3681613afa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613b9960258361295c565b9150613ba482613b3d565b604082019050919050565b60006020820190508181036000830152613bc881613b8c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613c2b60238361295c565b9150613c3682613bcf565b604082019050919050565b60006020820190508181036000830152613c5a81613c1e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613cbd60268361295c565b9150613cc882613c61565b604082019050919050565b60006020820190508181036000830152613cec81613cb0565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613d34601783613cf3565b9150613d3f82613cfe565b601782019050919050565b6000613d5582612951565b613d5f8185613cf3565b9350613d6f81856020860161296d565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613db1601183613cf3565b9150613dbc82613d7b565b601182019050919050565b6000613dd282613d27565b9150613dde8285613d4a565b9150613de982613da4565b9150613df58284613d4a565b91508190509392505050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b6000613e5d602d8361295c565b9150613e6882613e01565b604082019050919050565b60006020820190508181036000830152613e8c81613e50565b9050919050565b6000613e9e82612a6a565b9150613ea983612a6a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ee257613ee1613312565b5b828202905092915050565b6000613ef882612a6a565b91506000821415613f0c57613f0b613312565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613f4d60208361295c565b9150613f5882613f17565b602082019050919050565b60006020820190508181036000830152613f7c81613f40565b9050919050565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b6000613fdf60268361295c565b9150613fea82613f83565b604082019050919050565b6000602082019050818103600083015261400e81613fd2565b9050919050565b600081519050919050565b600081905092915050565b600061403682614015565b6140408185614020565b935061405081856020860161296d565b80840191505092915050565b6000614068828461402b565b91508190509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212206c2cb00ba2d4b739940821b5a1d94d5b83eba7f96ad3413a1ebccfa0e849187764736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806352d1902d116100ec578063a217fddf1161008a578063d547741f11610064578063d547741f14610637578063dd62ed3e14610660578063de01e1511461069d578063f72c0d8b146106c6576101b7565b8063a217fddf14610592578063a457c2d7146105bd578063a9059cbb146105fa576101b7565b806379cc6790116100c657806379cc6790146104ea5780638129fc1c1461051357806391d148541461052a57806395d89b4114610567576101b7565b806352d1902d146104575780636fae2e151461048257806370a08231146104ad576101b7565b8063313ce56711610159578063395093511161013357806339509351146103ac57806340c10f19146103e957806342966c68146104125780634f1ef2861461043b576101b7565b8063313ce5671461032f57806336568abe1461035a5780633659cfe614610383576101b7565b806318160ddd1161019557806318160ddd1461026157806323b872dd1461028c578063248a9ca3146102c95780632f2ff15d14610306576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063095ea7b314610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906128ee565b6106f1565b6040516101f09190612936565b60405180910390f35b34801561020557600080fd5b5061020e61076b565b60405161021b91906129ea565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612aa0565b6107fd565b6040516102589190612936565b60405180910390f35b34801561026d57600080fd5b50610276610820565b6040516102839190612aef565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612b0a565b61082a565b6040516102c09190612936565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190612b93565b6108e0565b6040516102fd9190612bcf565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190612bea565b610900565b005b34801561033b57600080fd5b50610344610921565b6040516103519190612c46565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612bea565b61092a565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190612c61565b6109ad565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190612aa0565b610b36565b6040516103e09190612936565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190612aa0565b610b6d565b005b34801561041e57600080fd5b5061043960048036038101906104349190612c8e565b610ba6565b005b61045560048036038101906104509190612df0565b610bba565b005b34801561046357600080fd5b5061046c610cf7565b6040516104799190612bcf565b60405180910390f35b34801561048e57600080fd5b50610497610db0565b6040516104a49190612bcf565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190612c61565b610dd4565b6040516104e19190612aef565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190612aa0565b610e1d565b005b34801561051f57600080fd5b50610528610e3d565b005b34801561053657600080fd5b50610551600480360381019061054c9190612bea565b611036565b60405161055e9190612936565b60405180910390f35b34801561057357600080fd5b5061057c6110a1565b60405161058991906129ea565b60405180910390f35b34801561059e57600080fd5b506105a7611133565b6040516105b49190612bcf565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df9190612aa0565b61113a565b6040516105f19190612936565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190612aa0565b6111b1565b60405161062e9190612936565b60405180910390f35b34801561064357600080fd5b5061065e60048036038101906106599190612bea565b611265565b005b34801561066c57600080fd5b5061068760048036038101906106829190612e4c565b611286565b6040516106949190612aef565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190613017565b61130d565b005b3480156106d257600080fd5b506106db61139b565b6040516106e89190612bcf565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107645750610763826113e2565b5b9050919050565b60606036805461077a906130be565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906130be565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b60008061080861144c565b9050610815818585611454565b600191505092915050565b6000603554905090565b60006108567f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d384611036565b8061088757506108867f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d385611036565b5b1561089e5761089784848461161f565b90506108d9565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d09061313c565b60405180910390fd5b9392505050565b600060c96000838152602001908152602001600020600101549050919050565b610909826108e0565b6109128161164e565b61091c8383611662565b505050565b60006012905090565b61093261144c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610996906131ce565b60405180910390fd5b6109a98282611743565b5050565b7f0000000000000000000000008948a7c9e5d028a85d329fba55faf8daa222cc1373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161415610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3390613260565b60405180910390fd5b7f0000000000000000000000008948a7c9e5d028a85d329fba55faf8daa222cc1373ffffffffffffffffffffffffffffffffffffffff16610a7b611825565b73ffffffffffffffffffffffffffffffffffffffff1614610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906132f2565b60405180910390fd5b610ada8161187c565b610b3381600067ffffffffffffffff811115610af957610af8612cc5565b5b6040519080825280601f01601f191660200182016040528015610b2b5781602001600182028036833780820191505090505b5060006118aa565b50565b600080610b4161144c565b9050610b62818585610b538589611286565b610b5d9190613341565b611454565b600191505092915050565b7f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d3610b978161164e565b610ba18383611a18565b505050565b610bb7610bb161144c565b82611b70565b50565b7f0000000000000000000000008948a7c9e5d028a85d329fba55faf8daa222cc1373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161415610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090613260565b60405180910390fd5b7f0000000000000000000000008948a7c9e5d028a85d329fba55faf8daa222cc1373ffffffffffffffffffffffffffffffffffffffff16610c88611825565b73ffffffffffffffffffffffffffffffffffffffff1614610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd5906132f2565b60405180910390fd5b610ce78261187c565b610cf3828260016118aa565b5050565b60007f0000000000000000000000008948a7c9e5d028a85d329fba55faf8daa222cc1373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90613409565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b7f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d381565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e2f82610e2961144c565b83611d40565b610e398282611b70565b5050565b60008060019054906101000a900460ff16159050808015610e6e5750600160008054906101000a900460ff1660ff16105b80610e9b5750610e7d306113bf565b158015610e9a5750600160008054906101000a900460ff1660ff16145b5b610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed19061349b565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610f17576001600060016101000a81548160ff0219169083151502179055505b610f8b6040518060400160405280600781526020017f506c6562626974000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f504c454200000000000000000000000000000000000000000000000000000000815250611dcc565b610f93611e29565b610f9b611e7a565b610fa3611ecb565b610fb06000801b33611f1c565b610fda7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e333611f1c565b80156110335760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161102a9190613500565b60405180910390a15b50565b600060c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060603780546110b0906130be565b80601f01602080910402602001604051908101604052809291908181526020018280546110dc906130be565b80156111295780601f106110fe57610100808354040283529160200191611129565b820191906000526020600020905b81548152906001019060200180831161110c57829003601f168201915b5050505050905090565b6000801b81565b60008061114561144c565b905060006111538286611286565b905083811015611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f9061358d565b60405180910390fd5b6111a58286868403611454565b60019250505092915050565b60006111dd7f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d384611036565b8061120e575061120d7f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d333611036565b5b156112245761121d8383611f2a565b905061125f565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112569061313c565b60405180910390fd5b92915050565b61126e826108e0565b6112778161164e565b6112818383611743565b505050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f600e5f1c60beb469a3fa6dd3814a4ae211cc6259a6d033bae218a742f2af01d36113378161164e565b60005b8351811015611395576113823385838151811061135a576113596135ad565b5b6020026020010151858481518110611375576113746135ad565b5b6020026020010151611f4d565b808061138d906135dc565b91505061133a565b50505050565b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e381565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb90613697565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b90613729565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116129190612aef565b60405180910390a3505050565b60008061162a61144c565b9050611637858285611d40565b611642858585611f4d565b60019150509392505050565b61165f8161165a61144c565b6121c8565b50565b61166c8282611036565b61173f57600160c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116e461144c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61174d8282611036565b1561182157600060c9600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117c661144c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006118537f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61224d565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e36118a68161164e565b5050565b6118d67f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914360001b612257565b60000160009054906101000a900460ff16156118fa576118f583612261565b611a13565b8273ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561196257506040513d601f19601f8201168201806040525081019061195f919061375e565b60015b6119a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611998906137fd565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b8114611a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd9061388f565b60405180910390fd5b50611a1283838361231a565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f906138fb565b60405180910390fd5b611a9460008383612346565b8060356000828254611aa69190613341565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b589190612aef565b60405180910390a3611b6c6000838361234b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd79061398d565b60405180910390fd5b611bec82600083612346565b6000603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a90613a1f565b60405180910390fd5b818103603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603560008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d279190612aef565b60405180910390a3611d3b8360008461234b565b505050565b6000611d4c8484611286565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dc65781811015611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90613a8b565b60405180910390fd5b611dc58484848403611454565b5b50505050565b600060019054906101000a900460ff16611e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1290613b1d565b60405180910390fd5b611e258282612350565b5050565b600060019054906101000a900460ff16611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f90613b1d565b60405180910390fd5b565b600060019054906101000a900460ff16611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090613b1d565b60405180910390fd5b565b600060019054906101000a900460ff16611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190613b1d565b60405180910390fd5b565b611f268282611662565b5050565b600080611f3561144c565b9050611f42818585611f4d565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb490613baf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490613c41565b60405180910390fd5b612038838383612346565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b690613cd3565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121af9190612aef565b60405180910390a36121c284848461234b565b50505050565b6121d28282611036565b612249576121df816123d1565b6121ed8360001c60206123fe565b6040516020016121fe929190613dc7565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224091906129ea565b60405180910390fd5b5050565b6000819050919050565b6000819050919050565b61226a816113bf565b6122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a090613e73565b60405180910390fd5b806122d67f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b61224d565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6123238361263a565b6000825111806123305750805b156123415761233f8383612689565b505b505050565b505050565b505050565b600060019054906101000a900460ff1661239f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239690613b1d565b60405180910390fd5b81603690805190602001906123b59291906127df565b5080603790805190602001906123cc9291906127df565b505050565b60606123f78273ffffffffffffffffffffffffffffffffffffffff16601460ff166123fe565b9050919050565b6060600060028360026124119190613e93565b61241b9190613341565b67ffffffffffffffff81111561243457612433612cc5565b5b6040519080825280601f01601f1916602001820160405280156124665781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061249e5761249d6135ad565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612502576125016135ad565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026125429190613e93565b61254c9190613341565b90505b60018111156125ec577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061258e5761258d6135ad565b5b1a60f81b8282815181106125a5576125a46135ad565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806125e590613eed565b905061254f565b5060008414612630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262790613f63565b60405180910390fd5b8091505092915050565b61264381612261565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b6060612694836113bf565b6126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90613ff5565b60405180910390fd5b6000808473ffffffffffffffffffffffffffffffffffffffff16846040516126fb919061405c565b600060405180830381855af49150503d8060008114612736576040519150601f19603f3d011682016040523d82523d6000602084013e61273b565b606091505b509150915061276382826040518060600160405280602781526020016140746027913961276d565b9250505092915050565b6060831561277d57829050612788565b612787838361278f565b5b9392505050565b6000825111156127a25781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d691906129ea565b60405180910390fd5b8280546127eb906130be565b90600052602060002090601f01602090048101928261280d5760008555612854565b82601f1061282657805160ff1916838001178555612854565b82800160010185558215612854579182015b82811115612853578251825591602001919060010190612838565b5b5090506128619190612865565b5090565b5b8082111561287e576000816000905550600101612866565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128cb81612896565b81146128d657600080fd5b50565b6000813590506128e8816128c2565b92915050565b6000602082840312156129045761290361288c565b5b6000612912848285016128d9565b91505092915050565b60008115159050919050565b6129308161291b565b82525050565b600060208201905061294b6000830184612927565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561298b578082015181840152602081019050612970565b8381111561299a576000848401525b50505050565b6000601f19601f8301169050919050565b60006129bc82612951565b6129c6818561295c565b93506129d681856020860161296d565b6129df816129a0565b840191505092915050565b60006020820190508181036000830152612a0481846129b1565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a3782612a0c565b9050919050565b612a4781612a2c565b8114612a5257600080fd5b50565b600081359050612a6481612a3e565b92915050565b6000819050919050565b612a7d81612a6a565b8114612a8857600080fd5b50565b600081359050612a9a81612a74565b92915050565b60008060408385031215612ab757612ab661288c565b5b6000612ac585828601612a55565b9250506020612ad685828601612a8b565b9150509250929050565b612ae981612a6a565b82525050565b6000602082019050612b046000830184612ae0565b92915050565b600080600060608486031215612b2357612b2261288c565b5b6000612b3186828701612a55565b9350506020612b4286828701612a55565b9250506040612b5386828701612a8b565b9150509250925092565b6000819050919050565b612b7081612b5d565b8114612b7b57600080fd5b50565b600081359050612b8d81612b67565b92915050565b600060208284031215612ba957612ba861288c565b5b6000612bb784828501612b7e565b91505092915050565b612bc981612b5d565b82525050565b6000602082019050612be46000830184612bc0565b92915050565b60008060408385031215612c0157612c0061288c565b5b6000612c0f85828601612b7e565b9250506020612c2085828601612a55565b9150509250929050565b600060ff82169050919050565b612c4081612c2a565b82525050565b6000602082019050612c5b6000830184612c37565b92915050565b600060208284031215612c7757612c7661288c565b5b6000612c8584828501612a55565b91505092915050565b600060208284031215612ca457612ca361288c565b5b6000612cb284828501612a8b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cfd826129a0565b810181811067ffffffffffffffff82111715612d1c57612d1b612cc5565b5b80604052505050565b6000612d2f612882565b9050612d3b8282612cf4565b919050565b600067ffffffffffffffff821115612d5b57612d5a612cc5565b5b612d64826129a0565b9050602081019050919050565b82818337600083830152505050565b6000612d93612d8e84612d40565b612d25565b905082815260208101848484011115612daf57612dae612cc0565b5b612dba848285612d71565b509392505050565b600082601f830112612dd757612dd6612cbb565b5b8135612de7848260208601612d80565b91505092915050565b60008060408385031215612e0757612e0661288c565b5b6000612e1585828601612a55565b925050602083013567ffffffffffffffff811115612e3657612e35612891565b5b612e4285828601612dc2565b9150509250929050565b60008060408385031215612e6357612e6261288c565b5b6000612e7185828601612a55565b9250506020612e8285828601612a55565b9150509250929050565b600067ffffffffffffffff821115612ea757612ea6612cc5565b5b602082029050602081019050919050565b600080fd5b6000612ed0612ecb84612e8c565b612d25565b90508083825260208201905060208402830185811115612ef357612ef2612eb8565b5b835b81811015612f1c5780612f088882612a55565b845260208401935050602081019050612ef5565b5050509392505050565b600082601f830112612f3b57612f3a612cbb565b5b8135612f4b848260208601612ebd565b91505092915050565b600067ffffffffffffffff821115612f6f57612f6e612cc5565b5b602082029050602081019050919050565b6000612f93612f8e84612f54565b612d25565b90508083825260208201905060208402830185811115612fb657612fb5612eb8565b5b835b81811015612fdf5780612fcb8882612a8b565b845260208401935050602081019050612fb8565b5050509392505050565b600082601f830112612ffe57612ffd612cbb565b5b813561300e848260208601612f80565b91505092915050565b6000806040838503121561302e5761302d61288c565b5b600083013567ffffffffffffffff81111561304c5761304b612891565b5b61305885828601612f26565b925050602083013567ffffffffffffffff81111561307957613078612891565b5b61308585828601612fe9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130d657607f821691505b602082108114156130ea576130e961308f565b5b50919050565b7f6d6967726174696f6e206e6f742066696e697368656400000000000000000000600082015250565b600061312660168361295c565b9150613131826130f0565b602082019050919050565b6000602082019050818103600083015261315581613119565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006131b8602f8361295c565b91506131c38261315c565b604082019050919050565b600060208201905081810360008301526131e7816131ab565b9050919050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f64656c656761746563616c6c0000000000000000000000000000000000000000602082015250565b600061324a602c8361295c565b9150613255826131ee565b604082019050919050565b600060208201905081810360008301526132798161323d565b9050919050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f6163746976652070726f78790000000000000000000000000000000000000000602082015250565b60006132dc602c8361295c565b91506132e782613280565b604082019050919050565b6000602082019050818103600083015261330b816132cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334c82612a6a565b915061335783612a6a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561338c5761338b613312565b5b828201905092915050565b7f555550535570677261646561626c653a206d757374206e6f742062652063616c60008201527f6c6564207468726f7567682064656c656761746563616c6c0000000000000000602082015250565b60006133f360388361295c565b91506133fe82613397565b604082019050919050565b60006020820190508181036000830152613422816133e6565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613485602e8361295c565b915061349082613429565b604082019050919050565b600060208201905081810360008301526134b481613478565b9050919050565b6000819050919050565b6000819050919050565b60006134ea6134e56134e0846134bb565b6134c5565b612c2a565b9050919050565b6134fa816134cf565b82525050565b600060208201905061351560008301846134f1565b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061357760258361295c565b91506135828261351b565b604082019050919050565b600060208201905081810360008301526135a68161356a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006135e782612a6a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561361a57613619613312565b5b600182019050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061368160248361295c565b915061368c82613625565b604082019050919050565b600060208201905081810360008301526136b081613674565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061371360228361295c565b915061371e826136b7565b604082019050919050565b6000602082019050818103600083015261374281613706565b9050919050565b60008151905061375881612b67565b92915050565b6000602082840312156137745761377361288c565b5b600061378284828501613749565b91505092915050565b7f45524331393637557067726164653a206e657720696d706c656d656e7461746960008201527f6f6e206973206e6f742055555053000000000000000000000000000000000000602082015250565b60006137e7602e8361295c565b91506137f28261378b565b604082019050919050565b60006020820190508181036000830152613816816137da565b9050919050565b7f45524331393637557067726164653a20756e737570706f727465642070726f7860008201527f6961626c65555549440000000000000000000000000000000000000000000000602082015250565b600061387960298361295c565b91506138848261381d565b604082019050919050565b600060208201905081810360008301526138a88161386c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006138e5601f8361295c565b91506138f0826138af565b602082019050919050565b60006020820190508181036000830152613914816138d8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061397760218361295c565b91506139828261391b565b604082019050919050565b600060208201905081810360008301526139a68161396a565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a0960228361295c565b9150613a14826139ad565b604082019050919050565b60006020820190508181036000830152613a38816139fc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613a75601d8361295c565b9150613a8082613a3f565b602082019050919050565b60006020820190508181036000830152613aa481613a68565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613b07602b8361295c565b9150613b1282613aab565b604082019050919050565b60006020820190508181036000830152613b3681613afa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613b9960258361295c565b9150613ba482613b3d565b604082019050919050565b60006020820190508181036000830152613bc881613b8c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613c2b60238361295c565b9150613c3682613bcf565b604082019050919050565b60006020820190508181036000830152613c5a81613c1e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613cbd60268361295c565b9150613cc882613c61565b604082019050919050565b60006020820190508181036000830152613cec81613cb0565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613d34601783613cf3565b9150613d3f82613cfe565b601782019050919050565b6000613d5582612951565b613d5f8185613cf3565b9350613d6f81856020860161296d565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613db1601183613cf3565b9150613dbc82613d7b565b601182019050919050565b6000613dd282613d27565b9150613dde8285613d4a565b9150613de982613da4565b9150613df58284613d4a565b91508190509392505050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b6000613e5d602d8361295c565b9150613e6882613e01565b604082019050919050565b60006020820190508181036000830152613e8c81613e50565b9050919050565b6000613e9e82612a6a565b9150613ea983612a6a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ee257613ee1613312565b5b828202905092915050565b6000613ef882612a6a565b91506000821415613f0c57613f0b613312565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613f4d60208361295c565b9150613f5882613f17565b602082019050919050565b60006020820190508181036000830152613f7c81613f40565b9050919050565b7f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b6000613fdf60268361295c565b9150613fea82613f83565b604082019050919050565b6000602082019050818103600083015261400e81613fd2565b9050919050565b600081519050919050565b600081905092915050565b600061403682614015565b6140408185614020565b935061405081856020860161296d565b80840191505092915050565b6000614068828461402b565b91508190509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212206c2cb00ba2d4b739940821b5a1d94d5b83eba7f96ad3413a1ebccfa0e849187764736f6c634300080b0033

Deployed Bytecode Sourcemap

80465:2022:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39429:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67406:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69757:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68526:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82007:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41285:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41726:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68368:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42870:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60313:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71242:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81224:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79502:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60772:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59991:133;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80714:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68697:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79912:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80879:295;;;;;;;;;;;;;:::i;:::-;;39736:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67625:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38830:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71983:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81688:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42166:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69286:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81409:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80641:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39429:215;39514:4;39553:43;39538:58;;;:11;:58;;;;:98;;;;39600:36;39624:11;39600:23;:36::i;:::-;39538:98;39531:105;;39429:215;;;:::o;67406:100::-;67460:13;67493:5;67486:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67406:100;:::o;69757:201::-;69840:4;69857:13;69873:12;:10;:12::i;:::-;69857:28;;69896:32;69905:5;69912:7;69921:6;69896:8;:32::i;:::-;69946:4;69939:11;;;69757:201;;;;:::o;68526:108::-;68587:7;68614:12;;68607:19;;68526:108;:::o;82007:339::-;82105:4;82126:33;80754:26;82149:9;82126:7;:33::i;:::-;:67;;;;82163:30;80754:26;82186:6;82163:7;:30::i;:::-;82126:67;82122:152;;;82217:45;82236:6;82244:9;82255:6;82217:18;:45::i;:::-;82210:52;;;;82122:152;82284:32;;;;;;;;;;:::i;:::-;;;;;;;;82007:339;;;;;;:::o;41285:131::-;41359:7;41386:6;:12;41393:4;41386:12;;;;;;;;;;;:22;;;41379:29;;41285:131;;;:::o;41726:147::-;41809:18;41822:4;41809:12;:18::i;:::-;39321:16;39332:4;39321:10;:16::i;:::-;41840:25:::1;41851:4;41857:7;41840:10;:25::i;:::-;41726:147:::0;;;:::o;68368:93::-;68426:5;68451:2;68444:9;;68368:93;:::o;42870:218::-;42977:12;:10;:12::i;:::-;42966:23;;:7;:23;;;42958:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;43054:26;43066:4;43072:7;43054:11;:26::i;:::-;42870:218;;:::o;60313:200::-;58861:6;58844:23;;58852:4;58844:23;;;;58836:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;58959:6;58935:30;;:20;:18;:20::i;:::-;:30;;;58927:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;60397:36:::1;60415:17;60397;:36::i;:::-;60444:61;60466:17;60495:1;60485:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60499:5;60444:21;:61::i;:::-;60313:200:::0;:::o;71242:238::-;71330:4;71347:13;71363:12;:10;:12::i;:::-;71347:28;;71386:64;71395:5;71402:7;71439:10;71411:25;71421:5;71428:7;71411:9;:25::i;:::-;:38;;;;:::i;:::-;71386:8;:64::i;:::-;71468:4;71461:11;;;71242:238;;;;:::o;81224:109::-;80754:26;39321:16;39332:4;39321:10;:16::i;:::-;81308:17:::1;81314:2;81318:6;81308:5;:17::i;:::-;81224:109:::0;;;:::o;79502:91::-;79558:27;79564:12;:10;:12::i;:::-;79578:6;79558:5;:27::i;:::-;79502:91;:::o;60772:225::-;58861:6;58844:23;;58852:4;58844:23;;;;58836:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;58959:6;58935:30;;:20;:18;:20::i;:::-;:30;;;58927:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;60890:36:::1;60908:17;60890;:36::i;:::-;60937:52;60959:17;60978:4;60984;60937:21;:52::i;:::-;60772:225:::0;;:::o;59991:133::-;60069:7;59306:6;59289:23;;59297:4;59289:23;;;59281:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;50855:66:::1;60096:20;;60089:27;;59991:133:::0;:::o;80714:66::-;80754:26;80714:66;:::o;68697:127::-;68771:7;68798:9;:18;68808:7;68798:18;;;;;;;;;;;;;;;;68791:25;;68697:127;;;:::o;79912:164::-;79989:46;80005:7;80014:12;:10;:12::i;:::-;80028:6;79989:15;:46::i;:::-;80046:22;80052:7;80061:6;80046:5;:22::i;:::-;79912:164;;:::o;80879:295::-;14942:19;14965:13;;;;;;;;;;;14964:14;14942:36;;15012:14;:34;;;;;15045:1;15030:12;;;;;;;;;;:16;;;15012:34;15011:108;;;;15053:44;15091:4;15053:29;:44::i;:::-;15052:45;:66;;;;;15117:1;15101:12;;;;;;;;;;:17;;;15052:66;15011:108;14989:204;;;;;;;;;;;;:::i;:::-;;;;;;;;;15219:1;15204:12;;:16;;;;;;;;;;;;;;;;;;15235:14;15231:67;;;15282:4;15266:13;;:20;;;;;;;;;;;;;;;;;;15231:67;80931:31:::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;::::0;:12:::1;:31::i;:::-;80973:22;:20;:22::i;:::-;81006;:20;:22::i;:::-;81039:24;:22;:24::i;:::-;81076:42;38875:4;81087:18:::0;::::1;81107:10;81076;:42::i;:::-;81129:37;80681:26;81155:10;81129;:37::i;:::-;15324:14:::0;15320:102;;;15371:5;15355:13;;:21;;;;;;;;;;;;;;;;;;15396:14;15408:1;15396:14;;;;;;:::i;:::-;;;;;;;;15320:102;14931:498;80879:295::o;39736:147::-;39822:4;39846:6;:12;39853:4;39846:12;;;;;;;;;;;:20;;:29;39867:7;39846:29;;;;;;;;;;;;;;;;;;;;;;;;;39839:36;;39736:147;;;;:::o;67625:104::-;67681:13;67714:7;67707:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67625:104;:::o;38830:49::-;38875:4;38830:49;;;:::o;71983:436::-;72076:4;72093:13;72109:12;:10;:12::i;:::-;72093:28;;72132:24;72159:25;72169:5;72176:7;72159:9;:25::i;:::-;72132:52;;72223:15;72203:16;:35;;72195:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;72316:60;72325:5;72332:7;72360:15;72341:16;:34;72316:8;:60::i;:::-;72407:4;72400:11;;;;71983:436;;;;:::o;81688:311::-;81766:4;81787:33;80754:26;81810:9;81787:7;:33::i;:::-;:71;;;;81824:34;80754:26;81847:10;81824:7;:34::i;:::-;81787:71;81783:144;;;81882:33;81897:9;81908:6;81882:14;:33::i;:::-;81875:40;;;;81783:144;81937:32;;;;;;;;;;:::i;:::-;;;;;;;;81688:311;;;;;:::o;42166:149::-;42250:18;42263:4;42250:12;:18::i;:::-;39321:16;39332:4;39321:10;:16::i;:::-;42281:26:::1;42293:4;42299:7;42281:11;:26::i;:::-;42166:149:::0;;;:::o;69286:151::-;69375:7;69402:11;:18;69414:5;69402:18;;;;;;;;;;;;;;;:27;69421:7;69402:27;;;;;;;;;;;;;;;;69395:34;;69286:151;;;;:::o;81409:271::-;80754:26;39321:16;39332:4;39321:10;:16::i;:::-;81524:9:::1;81548:125;81559:10;:17;81555:1;:21;81548:125;;;81593:50;81603:10;81616;81627:1;81616:13;;;;;;;;:::i;:::-;;;;;;;;81631:8;81640:1;81631:11;;;;;;;;:::i;:::-;;;;;;;;81593:9;:50::i;:::-;81658:3;;;;;:::i;:::-;;;;81548:125;;;81513:167;81409:271:::0;;;:::o;80641:66::-;80681:26;80641:66;:::o;4473:326::-;4533:4;4790:1;4768:7;:19;;;:23;4761:30;;4473:326;;;:::o;21330:168::-;21415:4;21454:36;21439:51;;;:11;:51;;;;21432:58;;21330:168;;;:::o;19126:98::-;19179:7;19206:10;19199:17;;19126:98;:::o;76010:380::-;76163:1;76146:19;;:5;:19;;;;76138:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76244:1;76225:21;;:7;:21;;;;76217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76328:6;76298:11;:18;76310:5;76298:18;;;;;;;;;;;;;;;:27;76317:7;76298:27;;;;;;;;;;;;;;;:36;;;;76366:7;76350:32;;76359:5;76350:32;;;76375:6;76350:32;;;;;;:::i;:::-;;;;;;;;76010:380;;;:::o;70538:295::-;70669:4;70686:15;70704:12;:10;:12::i;:::-;70686:30;;70727:38;70743:4;70749:7;70758:6;70727:15;:38::i;:::-;70776:27;70786:4;70792:2;70796:6;70776:9;:27::i;:::-;70821:4;70814:11;;;70538:295;;;;;:::o;40187:105::-;40254:30;40265:4;40271:12;:10;:12::i;:::-;40254:10;:30::i;:::-;40187:105;:::o;44467:238::-;44551:22;44559:4;44565:7;44551;:22::i;:::-;44546:152;;44622:4;44590:6;:12;44597:4;44590:12;;;;;;;;;;;:20;;:29;44611:7;44590:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;44673:12;:10;:12::i;:::-;44646:40;;44664:7;44646:40;;44658:4;44646:40;;;;;;;;;;44546:152;44467:238;;:::o;44885:239::-;44969:22;44977:4;44983:7;44969;:22::i;:::-;44965:152;;;45040:5;45008:6;:12;45015:4;45008:12;;;;;;;;;;;:20;;:29;45029:7;45008:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;45092:12;:10;:12::i;:::-;45065:40;;45083:7;45065:40;;45077:4;45065:40;;;;;;;;;;44965:152;44885:239;;:::o;51005:153::-;51058:7;51085:59;50855:66;51123:20;;51085:37;:59::i;:::-;:65;;;;;;;;;;;;51078:72;;51005:153;:::o;82354:130::-;80681:26;39321:16;39332:4;39321:10;:16::i;:::-;82354:130;;:::o;52423:992::-;52877:53;50507:66;52915:14;;52877:37;:53::i;:::-;:59;;;;;;;;;;;;52873:535;;;52953:37;52972:17;52953:18;:37::i;:::-;52873:535;;;53056:17;53027:61;;;:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53023:306;;53257:56;;;;;;;;;;:::i;:::-;;;;;;;;53023:306;50855:66;53149:20;;53141:4;:28;53133:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;53091:140;53343:53;53361:17;53380:4;53386:9;53343:17;:53::i;:::-;52873:535;52423:992;;;:::o;74016:548::-;74119:1;74100:21;;:7;:21;;;;74092:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;74170:49;74199:1;74203:7;74212:6;74170:20;:49::i;:::-;74248:6;74232:12;;:22;;;;;;;:::i;:::-;;;;;;;;74425:6;74403:9;:18;74413:7;74403:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;74479:7;74458:37;;74475:1;74458:37;;;74488:6;74458:37;;;;;;:::i;:::-;;;;;;;;74508:48;74536:1;74540:7;74549:6;74508:19;:48::i;:::-;74016:548;;:::o;74897:675::-;75000:1;74981:21;;:7;:21;;;;74973:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;75053:49;75074:7;75091:1;75095:6;75053:20;:49::i;:::-;75115:22;75140:9;:18;75150:7;75140:18;;;;;;;;;;;;;;;;75115:43;;75195:6;75177:14;:24;;75169:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;75314:6;75297:14;:23;75276:9;:18;75286:7;75276:18;;;;;;;;;;;;;;;:44;;;;75431:6;75415:12;;:22;;;;;;;;;;;75492:1;75466:37;;75475:7;75466:37;;;75496:6;75466:37;;;;;;:::i;:::-;;;;;;;;75516:48;75536:7;75553:1;75557:6;75516:19;:48::i;:::-;74962:610;74897:675;;:::o;76681:453::-;76816:24;76843:25;76853:5;76860:7;76843:9;:25::i;:::-;76816:52;;76903:17;76883:16;:37;76879:248;;76965:6;76945:16;:26;;76937:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77049:51;77058:5;77065:7;77093:6;77074:16;:25;77049:8;:51::i;:::-;76879:248;76805:329;76681:453;;;:::o;67017:149::-;17085:13;;;;;;;;;;;17077:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;67120:38:::1;67143:5;67150:7;67120:22;:38::i;:::-;67017:149:::0;;:::o;79238:66::-;17085:13;;;;;;;;;;;17077:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;79238:66::o;38519:::-;17085:13;;;;;;;;;;;17077:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;38519:66::o;57989:68::-;17085:13;;;;;;;;;;;17077:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;57989:68::o;43795:112::-;43874:25;43885:4;43891:7;43874:10;:25::i;:::-;43795:112;;:::o;69030:193::-;69109:4;69126:13;69142:12;:10;:12::i;:::-;69126:28;;69165;69175:5;69182:2;69186:6;69165:9;:28::i;:::-;69211:4;69204:11;;;69030:193;;;;:::o;72889:840::-;73036:1;73020:18;;:4;:18;;;;73012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73113:1;73099:16;;:2;:16;;;;73091:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;73168:38;73189:4;73195:2;73199:6;73168:20;:38::i;:::-;73219:19;73241:9;:15;73251:4;73241:15;;;;;;;;;;;;;;;;73219:37;;73290:6;73275:11;:21;;73267:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;73407:6;73393:11;:20;73375:9;:15;73385:4;73375:15;;;;;;;;;;;;;;;:38;;;;73610:6;73593:9;:13;73603:2;73593:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;73660:2;73645:26;;73654:4;73645:26;;;73664:6;73645:26;;;;;;:::i;:::-;;;;;;;;73684:37;73704:4;73710:2;73714:6;73684:19;:37::i;:::-;73001:728;72889:840;;;:::o;40582:514::-;40671:22;40679:4;40685:7;40671;:22::i;:::-;40666:423;;40859:39;40890:7;40859:30;:39::i;:::-;40971:49;41010:4;41002:13;;41017:2;40971:30;:49::i;:::-;40764:279;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40710:367;;;;;;;;;;;:::i;:::-;;;;;;;;40666:423;40582:514;;:::o;48770:195::-;48831:21;48943:4;48933:14;;48770:195;;;:::o;49068:::-;49129:21;49241:4;49231:14;;49068:195;;;:::o;51254:284::-;51336:48;51366:17;51336:29;:48::i;:::-;51328:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;51513:17;51445:59;50855:66;51483:20;;51445:37;:59::i;:::-;:65;;;:85;;;;;;;;;;;;;;;;;;51254:284;:::o;51947:297::-;52090:29;52101:17;52090:10;:29::i;:::-;52148:1;52134:4;:11;:15;:28;;;;52153:9;52134:28;52130:107;;;52179:46;52201:17;52220:4;52179:21;:46::i;:::-;;52130:107;51947:297;;;:::o;77734:125::-;;;;:::o;78463:124::-;;;;:::o;67174:162::-;17085:13;;;;;;;;;;;17077:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;67295:5:::1;67287;:13;;;;;;;;;;;;:::i;:::-;;67321:7;67311;:17;;;;;;;;;;;;:::i;:::-;;67174:162:::0;;:::o;36628:151::-;36686:13;36719:52;36747:4;36731:22;;34761:2;36719:52;;:11;:52::i;:::-;36712:59;;36628:151;;;:::o;36024:447::-;36099:13;36125:19;36170:1;36161:6;36157:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;36147:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36125:47;;36183:15;:6;36190:1;36183:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;36209;:6;36216:1;36209:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;36240:9;36265:1;36256:6;36252:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;36240:26;;36235:131;36272:1;36268;:5;36235:131;;;36307:8;36324:3;36316:5;:11;36307:21;;;;;;;:::i;:::-;;;;;36295:6;36302:1;36295:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;36353:1;36343:11;;;;;36275:3;;;;:::i;:::-;;;36235:131;;;;36393:1;36384:5;:10;36376:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36456:6;36442:21;;;36024:447;;;;:::o;51651:155::-;51718:37;51737:17;51718:18;:37::i;:::-;51780:17;51771:27;;;;;;;;;;;;51651:155;:::o;56420:461::-;56503:12;56536:37;56566:6;56536:29;:37::i;:::-;56528:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;56690:12;56704:23;56731:6;:19;;56751:4;56731:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56689:67;;;;56774:99;56810:7;56819:10;56774:99;;;;;;;;;;;;;;;;;:35;:99::i;:::-;56767:106;;;;56420:461;;;;:::o;10883:305::-;11033:12;11062:7;11058:123;;;11093:10;11086:17;;;;11058:123;11136:33;11144:10;11156:12;11136:7;:33::i;:::-;10883:305;;;;;;:::o;11196:552::-;11377:1;11357:10;:17;:21;11353:388;;;11589:10;11583:17;11646:15;11633:10;11629:2;11625:19;11618:44;11353:388;11716:12;11709:20;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:122::-;3215:24;3233:5;3215:24;:::i;:::-;3208:5;3205:35;3195:63;;3254:1;3251;3244:12;3195:63;3142:122;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:77::-;3452:7;3481:5;3470:16;;3415:77;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:474::-;3839:6;3847;3896:2;3884:9;3875:7;3871:23;3867:32;3864:119;;;3902:79;;:::i;:::-;3864:119;4022:1;4047:53;4092:7;4083:6;4072:9;4068:22;4047:53;:::i;:::-;4037:63;;3993:117;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3771:474;;;;;:::o;4251:118::-;4338:24;4356:5;4338:24;:::i;:::-;4333:3;4326:37;4251:118;;:::o;4375:222::-;4468:4;4506:2;4495:9;4491:18;4483:26;;4519:71;4587:1;4576:9;4572:17;4563:6;4519:71;:::i;:::-;4375:222;;;;:::o;4603:619::-;4680:6;4688;4696;4745:2;4733:9;4724:7;4720:23;4716:32;4713:119;;;4751:79;;:::i;:::-;4713:119;4871:1;4896:53;4941:7;4932:6;4921:9;4917:22;4896:53;:::i;:::-;4886:63;;4842:117;4998:2;5024:53;5069:7;5060:6;5049:9;5045:22;5024:53;:::i;:::-;5014:63;;4969:118;5126:2;5152:53;5197:7;5188:6;5177:9;5173:22;5152:53;:::i;:::-;5142:63;;5097:118;4603:619;;;;;:::o;5228:77::-;5265:7;5294:5;5283:16;;5228:77;;;:::o;5311:122::-;5384:24;5402:5;5384:24;:::i;:::-;5377:5;5374:35;5364:63;;5423:1;5420;5413:12;5364:63;5311:122;:::o;5439:139::-;5485:5;5523:6;5510:20;5501:29;;5539:33;5566:5;5539:33;:::i;:::-;5439:139;;;;:::o;5584:329::-;5643:6;5692:2;5680:9;5671:7;5667:23;5663:32;5660:119;;;5698:79;;:::i;:::-;5660:119;5818:1;5843:53;5888:7;5879:6;5868:9;5864:22;5843:53;:::i;:::-;5833:63;;5789:117;5584:329;;;;:::o;5919:118::-;6006:24;6024:5;6006:24;:::i;:::-;6001:3;5994:37;5919:118;;:::o;6043:222::-;6136:4;6174:2;6163:9;6159:18;6151:26;;6187:71;6255:1;6244:9;6240:17;6231:6;6187:71;:::i;:::-;6043:222;;;;:::o;6271:474::-;6339:6;6347;6396:2;6384:9;6375:7;6371:23;6367:32;6364:119;;;6402:79;;:::i;:::-;6364:119;6522:1;6547:53;6592:7;6583:6;6572:9;6568:22;6547:53;:::i;:::-;6537:63;;6493:117;6649:2;6675:53;6720:7;6711:6;6700:9;6696:22;6675:53;:::i;:::-;6665:63;;6620:118;6271:474;;;;;:::o;6751:86::-;6786:7;6826:4;6819:5;6815:16;6804:27;;6751:86;;;:::o;6843:112::-;6926:22;6942:5;6926:22;:::i;:::-;6921:3;6914:35;6843:112;;:::o;6961:214::-;7050:4;7088:2;7077:9;7073:18;7065:26;;7101:67;7165:1;7154:9;7150:17;7141:6;7101:67;:::i;:::-;6961:214;;;;:::o;7181:329::-;7240:6;7289:2;7277:9;7268:7;7264:23;7260:32;7257:119;;;7295:79;;:::i;:::-;7257:119;7415:1;7440:53;7485:7;7476:6;7465:9;7461:22;7440:53;:::i;:::-;7430:63;;7386:117;7181:329;;;;:::o;7516:::-;7575:6;7624:2;7612:9;7603:7;7599:23;7595:32;7592:119;;;7630:79;;:::i;:::-;7592:119;7750:1;7775:53;7820:7;7811:6;7800:9;7796:22;7775:53;:::i;:::-;7765:63;;7721:117;7516:329;;;;:::o;7851:117::-;7960:1;7957;7950:12;7974:117;8083:1;8080;8073:12;8097:180;8145:77;8142:1;8135:88;8242:4;8239:1;8232:15;8266:4;8263:1;8256:15;8283:281;8366:27;8388:4;8366:27;:::i;:::-;8358:6;8354:40;8496:6;8484:10;8481:22;8460:18;8448:10;8445:34;8442:62;8439:88;;;8507:18;;:::i;:::-;8439:88;8547:10;8543:2;8536:22;8326:238;8283:281;;:::o;8570:129::-;8604:6;8631:20;;:::i;:::-;8621:30;;8660:33;8688:4;8680:6;8660:33;:::i;:::-;8570:129;;;:::o;8705:307::-;8766:4;8856:18;8848:6;8845:30;8842:56;;;8878:18;;:::i;:::-;8842:56;8916:29;8938:6;8916:29;:::i;:::-;8908:37;;9000:4;8994;8990:15;8982:23;;8705:307;;;:::o;9018:154::-;9102:6;9097:3;9092;9079:30;9164:1;9155:6;9150:3;9146:16;9139:27;9018:154;;;:::o;9178:410::-;9255:5;9280:65;9296:48;9337:6;9296:48;:::i;:::-;9280:65;:::i;:::-;9271:74;;9368:6;9361:5;9354:21;9406:4;9399:5;9395:16;9444:3;9435:6;9430:3;9426:16;9423:25;9420:112;;;9451:79;;:::i;:::-;9420:112;9541:41;9575:6;9570:3;9565;9541:41;:::i;:::-;9261:327;9178:410;;;;;:::o;9607:338::-;9662:5;9711:3;9704:4;9696:6;9692:17;9688:27;9678:122;;9719:79;;:::i;:::-;9678:122;9836:6;9823:20;9861:78;9935:3;9927:6;9920:4;9912:6;9908:17;9861:78;:::i;:::-;9852:87;;9668:277;9607:338;;;;:::o;9951:652::-;10028:6;10036;10085:2;10073:9;10064:7;10060:23;10056:32;10053:119;;;10091:79;;:::i;:::-;10053:119;10211:1;10236:53;10281:7;10272:6;10261:9;10257:22;10236:53;:::i;:::-;10226:63;;10182:117;10366:2;10355:9;10351:18;10338:32;10397:18;10389:6;10386:30;10383:117;;;10419:79;;:::i;:::-;10383:117;10524:62;10578:7;10569:6;10558:9;10554:22;10524:62;:::i;:::-;10514:72;;10309:287;9951:652;;;;;:::o;10609:474::-;10677:6;10685;10734:2;10722:9;10713:7;10709:23;10705:32;10702:119;;;10740:79;;:::i;:::-;10702:119;10860:1;10885:53;10930:7;10921:6;10910:9;10906:22;10885:53;:::i;:::-;10875:63;;10831:117;10987:2;11013:53;11058:7;11049:6;11038:9;11034:22;11013:53;:::i;:::-;11003:63;;10958:118;10609:474;;;;;:::o;11089:311::-;11166:4;11256:18;11248:6;11245:30;11242:56;;;11278:18;;:::i;:::-;11242:56;11328:4;11320:6;11316:17;11308:25;;11388:4;11382;11378:15;11370:23;;11089:311;;;:::o;11406:117::-;11515:1;11512;11505:12;11546:710;11642:5;11667:81;11683:64;11740:6;11683:64;:::i;:::-;11667:81;:::i;:::-;11658:90;;11768:5;11797:6;11790:5;11783:21;11831:4;11824:5;11820:16;11813:23;;11884:4;11876:6;11872:17;11864:6;11860:30;11913:3;11905:6;11902:15;11899:122;;;11932:79;;:::i;:::-;11899:122;12047:6;12030:220;12064:6;12059:3;12056:15;12030:220;;;12139:3;12168:37;12201:3;12189:10;12168:37;:::i;:::-;12163:3;12156:50;12235:4;12230:3;12226:14;12219:21;;12106:144;12090:4;12085:3;12081:14;12074:21;;12030:220;;;12034:21;11648:608;;11546:710;;;;;:::o;12279:370::-;12350:5;12399:3;12392:4;12384:6;12380:17;12376:27;12366:122;;12407:79;;:::i;:::-;12366:122;12524:6;12511:20;12549:94;12639:3;12631:6;12624:4;12616:6;12612:17;12549:94;:::i;:::-;12540:103;;12356:293;12279:370;;;;:::o;12655:311::-;12732:4;12822:18;12814:6;12811:30;12808:56;;;12844:18;;:::i;:::-;12808:56;12894:4;12886:6;12882:17;12874:25;;12954:4;12948;12944:15;12936:23;;12655:311;;;:::o;12989:710::-;13085:5;13110:81;13126:64;13183:6;13126:64;:::i;:::-;13110:81;:::i;:::-;13101:90;;13211:5;13240:6;13233:5;13226:21;13274:4;13267:5;13263:16;13256:23;;13327:4;13319:6;13315:17;13307:6;13303:30;13356:3;13348:6;13345:15;13342:122;;;13375:79;;:::i;:::-;13342:122;13490:6;13473:220;13507:6;13502:3;13499:15;13473:220;;;13582:3;13611:37;13644:3;13632:10;13611:37;:::i;:::-;13606:3;13599:50;13678:4;13673:3;13669:14;13662:21;;13549:144;13533:4;13528:3;13524:14;13517:21;;13473:220;;;13477:21;13091:608;;12989:710;;;;;:::o;13722:370::-;13793:5;13842:3;13835:4;13827:6;13823:17;13819:27;13809:122;;13850:79;;:::i;:::-;13809:122;13967:6;13954:20;13992:94;14082:3;14074:6;14067:4;14059:6;14055:17;13992:94;:::i;:::-;13983:103;;13799:293;13722:370;;;;:::o;14098:894::-;14216:6;14224;14273:2;14261:9;14252:7;14248:23;14244:32;14241:119;;;14279:79;;:::i;:::-;14241:119;14427:1;14416:9;14412:17;14399:31;14457:18;14449:6;14446:30;14443:117;;;14479:79;;:::i;:::-;14443:117;14584:78;14654:7;14645:6;14634:9;14630:22;14584:78;:::i;:::-;14574:88;;14370:302;14739:2;14728:9;14724:18;14711:32;14770:18;14762:6;14759:30;14756:117;;;14792:79;;:::i;:::-;14756:117;14897:78;14967:7;14958:6;14947:9;14943:22;14897:78;:::i;:::-;14887:88;;14682:303;14098:894;;;;;:::o;14998:180::-;15046:77;15043:1;15036:88;15143:4;15140:1;15133:15;15167:4;15164:1;15157:15;15184:320;15228:6;15265:1;15259:4;15255:12;15245:22;;15312:1;15306:4;15302:12;15333:18;15323:81;;15389:4;15381:6;15377:17;15367:27;;15323:81;15451:2;15443:6;15440:14;15420:18;15417:38;15414:84;;;15470:18;;:::i;:::-;15414:84;15235:269;15184:320;;;:::o;15510:172::-;15650:24;15646:1;15638:6;15634:14;15627:48;15510:172;:::o;15688:366::-;15830:3;15851:67;15915:2;15910:3;15851:67;:::i;:::-;15844:74;;15927:93;16016:3;15927:93;:::i;:::-;16045:2;16040:3;16036:12;16029:19;;15688:366;;;:::o;16060:419::-;16226:4;16264:2;16253:9;16249:18;16241:26;;16313:9;16307:4;16303:20;16299:1;16288:9;16284:17;16277:47;16341:131;16467:4;16341:131;:::i;:::-;16333:139;;16060:419;;;:::o;16485:234::-;16625:34;16621:1;16613:6;16609:14;16602:58;16694:17;16689:2;16681:6;16677:15;16670:42;16485:234;:::o;16725:366::-;16867:3;16888:67;16952:2;16947:3;16888:67;:::i;:::-;16881:74;;16964:93;17053:3;16964:93;:::i;:::-;17082:2;17077:3;17073:12;17066:19;;16725:366;;;:::o;17097:419::-;17263:4;17301:2;17290:9;17286:18;17278:26;;17350:9;17344:4;17340:20;17336:1;17325:9;17321:17;17314:47;17378:131;17504:4;17378:131;:::i;:::-;17370:139;;17097:419;;;:::o;17522:231::-;17662:34;17658:1;17650:6;17646:14;17639:58;17731:14;17726:2;17718:6;17714:15;17707:39;17522:231;:::o;17759:366::-;17901:3;17922:67;17986:2;17981:3;17922:67;:::i;:::-;17915:74;;17998:93;18087:3;17998:93;:::i;:::-;18116:2;18111:3;18107:12;18100:19;;17759:366;;;:::o;18131:419::-;18297:4;18335:2;18324:9;18320:18;18312:26;;18384:9;18378:4;18374:20;18370:1;18359:9;18355:17;18348:47;18412:131;18538:4;18412:131;:::i;:::-;18404:139;;18131:419;;;:::o;18556:231::-;18696:34;18692:1;18684:6;18680:14;18673:58;18765:14;18760:2;18752:6;18748:15;18741:39;18556:231;:::o;18793:366::-;18935:3;18956:67;19020:2;19015:3;18956:67;:::i;:::-;18949:74;;19032:93;19121:3;19032:93;:::i;:::-;19150:2;19145:3;19141:12;19134:19;;18793:366;;;:::o;19165:419::-;19331:4;19369:2;19358:9;19354:18;19346:26;;19418:9;19412:4;19408:20;19404:1;19393:9;19389:17;19382:47;19446:131;19572:4;19446:131;:::i;:::-;19438:139;;19165:419;;;:::o;19590:180::-;19638:77;19635:1;19628:88;19735:4;19732:1;19725:15;19759:4;19756:1;19749:15;19776:305;19816:3;19835:20;19853:1;19835:20;:::i;:::-;19830:25;;19869:20;19887:1;19869:20;:::i;:::-;19864:25;;20023:1;19955:66;19951:74;19948:1;19945:81;19942:107;;;20029:18;;:::i;:::-;19942:107;20073:1;20070;20066:9;20059:16;;19776:305;;;;:::o;20087:243::-;20227:34;20223:1;20215:6;20211:14;20204:58;20296:26;20291:2;20283:6;20279:15;20272:51;20087:243;:::o;20336:366::-;20478:3;20499:67;20563:2;20558:3;20499:67;:::i;:::-;20492:74;;20575:93;20664:3;20575:93;:::i;:::-;20693:2;20688:3;20684:12;20677:19;;20336:366;;;:::o;20708:419::-;20874:4;20912:2;20901:9;20897:18;20889:26;;20961:9;20955:4;20951:20;20947:1;20936:9;20932:17;20925:47;20989:131;21115:4;20989:131;:::i;:::-;20981:139;;20708:419;;;:::o;21133:233::-;21273:34;21269:1;21261:6;21257:14;21250:58;21342:16;21337:2;21329:6;21325:15;21318:41;21133:233;:::o;21372:366::-;21514:3;21535:67;21599:2;21594:3;21535:67;:::i;:::-;21528:74;;21611:93;21700:3;21611:93;:::i;:::-;21729:2;21724:3;21720:12;21713:19;;21372:366;;;:::o;21744:419::-;21910:4;21948:2;21937:9;21933:18;21925:26;;21997:9;21991:4;21987:20;21983:1;21972:9;21968:17;21961:47;22025:131;22151:4;22025:131;:::i;:::-;22017:139;;21744:419;;;:::o;22169:85::-;22214:7;22243:5;22232:16;;22169:85;;;:::o;22260:60::-;22288:3;22309:5;22302:12;;22260:60;;;:::o;22326:154::-;22382:9;22415:59;22431:42;22440:32;22466:5;22440:32;:::i;:::-;22431:42;:::i;:::-;22415:59;:::i;:::-;22402:72;;22326:154;;;:::o;22486:143::-;22579:43;22616:5;22579:43;:::i;:::-;22574:3;22567:56;22486:143;;:::o;22635:234::-;22734:4;22772:2;22761:9;22757:18;22749:26;;22785:77;22859:1;22848:9;22844:17;22835:6;22785:77;:::i;:::-;22635:234;;;;:::o;22875:224::-;23015:34;23011:1;23003:6;22999:14;22992:58;23084:7;23079:2;23071:6;23067:15;23060:32;22875:224;:::o;23105:366::-;23247:3;23268:67;23332:2;23327:3;23268:67;:::i;:::-;23261:74;;23344:93;23433:3;23344:93;:::i;:::-;23462:2;23457:3;23453:12;23446:19;;23105:366;;;:::o;23477:419::-;23643:4;23681:2;23670:9;23666:18;23658:26;;23730:9;23724:4;23720:20;23716:1;23705:9;23701:17;23694:47;23758:131;23884:4;23758:131;:::i;:::-;23750:139;;23477:419;;;:::o;23902:180::-;23950:77;23947:1;23940:88;24047:4;24044:1;24037:15;24071:4;24068:1;24061:15;24088:233;24127:3;24150:24;24168:5;24150:24;:::i;:::-;24141:33;;24196:66;24189:5;24186:77;24183:103;;;24266:18;;:::i;:::-;24183:103;24313:1;24306:5;24302:13;24295:20;;24088:233;;;:::o;24327:223::-;24467:34;24463:1;24455:6;24451:14;24444:58;24536:6;24531:2;24523:6;24519:15;24512:31;24327:223;:::o;24556:366::-;24698:3;24719:67;24783:2;24778:3;24719:67;:::i;:::-;24712:74;;24795:93;24884:3;24795:93;:::i;:::-;24913:2;24908:3;24904:12;24897:19;;24556:366;;;:::o;24928:419::-;25094:4;25132:2;25121:9;25117:18;25109:26;;25181:9;25175:4;25171:20;25167:1;25156:9;25152:17;25145:47;25209:131;25335:4;25209:131;:::i;:::-;25201:139;;24928:419;;;:::o;25353:221::-;25493:34;25489:1;25481:6;25477:14;25470:58;25562:4;25557:2;25549:6;25545:15;25538:29;25353:221;:::o;25580:366::-;25722:3;25743:67;25807:2;25802:3;25743:67;:::i;:::-;25736:74;;25819:93;25908:3;25819:93;:::i;:::-;25937:2;25932:3;25928:12;25921:19;;25580:366;;;:::o;25952:419::-;26118:4;26156:2;26145:9;26141:18;26133:26;;26205:9;26199:4;26195:20;26191:1;26180:9;26176:17;26169:47;26233:131;26359:4;26233:131;:::i;:::-;26225:139;;25952:419;;;:::o;26377:143::-;26434:5;26465:6;26459:13;26450:22;;26481:33;26508:5;26481:33;:::i;:::-;26377:143;;;;:::o;26526:351::-;26596:6;26645:2;26633:9;26624:7;26620:23;26616:32;26613:119;;;26651:79;;:::i;:::-;26613:119;26771:1;26796:64;26852:7;26843:6;26832:9;26828:22;26796:64;:::i;:::-;26786:74;;26742:128;26526:351;;;;:::o;26883:233::-;27023:34;27019:1;27011:6;27007:14;27000:58;27092:16;27087:2;27079:6;27075:15;27068:41;26883:233;:::o;27122:366::-;27264:3;27285:67;27349:2;27344:3;27285:67;:::i;:::-;27278:74;;27361:93;27450:3;27361:93;:::i;:::-;27479:2;27474:3;27470:12;27463:19;;27122:366;;;:::o;27494:419::-;27660:4;27698:2;27687:9;27683:18;27675:26;;27747:9;27741:4;27737:20;27733:1;27722:9;27718:17;27711:47;27775:131;27901:4;27775:131;:::i;:::-;27767:139;;27494:419;;;:::o;27919:228::-;28059:34;28055:1;28047:6;28043:14;28036:58;28128:11;28123:2;28115:6;28111:15;28104:36;27919:228;:::o;28153:366::-;28295:3;28316:67;28380:2;28375:3;28316:67;:::i;:::-;28309:74;;28392:93;28481:3;28392:93;:::i;:::-;28510:2;28505:3;28501:12;28494:19;;28153:366;;;:::o;28525:419::-;28691:4;28729:2;28718:9;28714:18;28706:26;;28778:9;28772:4;28768:20;28764:1;28753:9;28749:17;28742:47;28806:131;28932:4;28806:131;:::i;:::-;28798:139;;28525:419;;;:::o;28950:181::-;29090:33;29086:1;29078:6;29074:14;29067:57;28950:181;:::o;29137:366::-;29279:3;29300:67;29364:2;29359:3;29300:67;:::i;:::-;29293:74;;29376:93;29465:3;29376:93;:::i;:::-;29494:2;29489:3;29485:12;29478:19;;29137:366;;;:::o;29509:419::-;29675:4;29713:2;29702:9;29698:18;29690:26;;29762:9;29756:4;29752:20;29748:1;29737:9;29733:17;29726:47;29790:131;29916:4;29790:131;:::i;:::-;29782:139;;29509:419;;;:::o;29934:220::-;30074:34;30070:1;30062:6;30058:14;30051:58;30143:3;30138:2;30130:6;30126:15;30119:28;29934:220;:::o;30160:366::-;30302:3;30323:67;30387:2;30382:3;30323:67;:::i;:::-;30316:74;;30399:93;30488:3;30399:93;:::i;:::-;30517:2;30512:3;30508:12;30501:19;;30160:366;;;:::o;30532:419::-;30698:4;30736:2;30725:9;30721:18;30713:26;;30785:9;30779:4;30775:20;30771:1;30760:9;30756:17;30749:47;30813:131;30939:4;30813:131;:::i;:::-;30805:139;;30532:419;;;:::o;30957:221::-;31097:34;31093:1;31085:6;31081:14;31074:58;31166:4;31161:2;31153:6;31149:15;31142:29;30957:221;:::o;31184:366::-;31326:3;31347:67;31411:2;31406:3;31347:67;:::i;:::-;31340:74;;31423:93;31512:3;31423:93;:::i;:::-;31541:2;31536:3;31532:12;31525:19;;31184:366;;;:::o;31556:419::-;31722:4;31760:2;31749:9;31745:18;31737:26;;31809:9;31803:4;31799:20;31795:1;31784:9;31780:17;31773:47;31837:131;31963:4;31837:131;:::i;:::-;31829:139;;31556:419;;;:::o;31981:179::-;32121:31;32117:1;32109:6;32105:14;32098:55;31981:179;:::o;32166:366::-;32308:3;32329:67;32393:2;32388:3;32329:67;:::i;:::-;32322:74;;32405:93;32494:3;32405:93;:::i;:::-;32523:2;32518:3;32514:12;32507:19;;32166:366;;;:::o;32538:419::-;32704:4;32742:2;32731:9;32727:18;32719:26;;32791:9;32785:4;32781:20;32777:1;32766:9;32762:17;32755:47;32819:131;32945:4;32819:131;:::i;:::-;32811:139;;32538:419;;;:::o;32963:230::-;33103:34;33099:1;33091:6;33087:14;33080:58;33172:13;33167:2;33159:6;33155:15;33148:38;32963:230;:::o;33199:366::-;33341:3;33362:67;33426:2;33421:3;33362:67;:::i;:::-;33355:74;;33438:93;33527:3;33438:93;:::i;:::-;33556:2;33551:3;33547:12;33540:19;;33199:366;;;:::o;33571:419::-;33737:4;33775:2;33764:9;33760:18;33752:26;;33824:9;33818:4;33814:20;33810:1;33799:9;33795:17;33788:47;33852:131;33978:4;33852:131;:::i;:::-;33844:139;;33571:419;;;:::o;33996:224::-;34136:34;34132:1;34124:6;34120:14;34113:58;34205:7;34200:2;34192:6;34188:15;34181:32;33996:224;:::o;34226:366::-;34368:3;34389:67;34453:2;34448:3;34389:67;:::i;:::-;34382:74;;34465:93;34554:3;34465:93;:::i;:::-;34583:2;34578:3;34574:12;34567:19;;34226:366;;;:::o;34598:419::-;34764:4;34802:2;34791:9;34787:18;34779:26;;34851:9;34845:4;34841:20;34837:1;34826:9;34822:17;34815:47;34879:131;35005:4;34879:131;:::i;:::-;34871:139;;34598:419;;;:::o;35023:222::-;35163:34;35159:1;35151:6;35147:14;35140:58;35232:5;35227:2;35219:6;35215:15;35208:30;35023:222;:::o;35251:366::-;35393:3;35414:67;35478:2;35473:3;35414:67;:::i;:::-;35407:74;;35490:93;35579:3;35490:93;:::i;:::-;35608:2;35603:3;35599:12;35592:19;;35251:366;;;:::o;35623:419::-;35789:4;35827:2;35816:9;35812:18;35804:26;;35876:9;35870:4;35866:20;35862:1;35851:9;35847:17;35840:47;35904:131;36030:4;35904:131;:::i;:::-;35896:139;;35623:419;;;:::o;36048:225::-;36188:34;36184:1;36176:6;36172:14;36165:58;36257:8;36252:2;36244:6;36240:15;36233:33;36048:225;:::o;36279:366::-;36421:3;36442:67;36506:2;36501:3;36442:67;:::i;:::-;36435:74;;36518:93;36607:3;36518:93;:::i;:::-;36636:2;36631:3;36627:12;36620:19;;36279:366;;;:::o;36651:419::-;36817:4;36855:2;36844:9;36840:18;36832:26;;36904:9;36898:4;36894:20;36890:1;36879:9;36875:17;36868:47;36932:131;37058:4;36932:131;:::i;:::-;36924:139;;36651:419;;;:::o;37076:148::-;37178:11;37215:3;37200:18;;37076:148;;;;:::o;37230:173::-;37370:25;37366:1;37358:6;37354:14;37347:49;37230:173;:::o;37409:402::-;37569:3;37590:85;37672:2;37667:3;37590:85;:::i;:::-;37583:92;;37684:93;37773:3;37684:93;:::i;:::-;37802:2;37797:3;37793:12;37786:19;;37409:402;;;:::o;37817:377::-;37923:3;37951:39;37984:5;37951:39;:::i;:::-;38006:89;38088:6;38083:3;38006:89;:::i;:::-;37999:96;;38104:52;38149:6;38144:3;38137:4;38130:5;38126:16;38104:52;:::i;:::-;38181:6;38176:3;38172:16;38165:23;;37927:267;37817:377;;;;:::o;38200:167::-;38340:19;38336:1;38328:6;38324:14;38317:43;38200:167;:::o;38373:402::-;38533:3;38554:85;38636:2;38631:3;38554:85;:::i;:::-;38547:92;;38648:93;38737:3;38648:93;:::i;:::-;38766:2;38761:3;38757:12;38750:19;;38373:402;;;:::o;38781:967::-;39163:3;39185:148;39329:3;39185:148;:::i;:::-;39178:155;;39350:95;39441:3;39432:6;39350:95;:::i;:::-;39343:102;;39462:148;39606:3;39462:148;:::i;:::-;39455:155;;39627:95;39718:3;39709:6;39627:95;:::i;:::-;39620:102;;39739:3;39732:10;;38781:967;;;;;:::o;39754:232::-;39894:34;39890:1;39882:6;39878:14;39871:58;39963:15;39958:2;39950:6;39946:15;39939:40;39754:232;:::o;39992:366::-;40134:3;40155:67;40219:2;40214:3;40155:67;:::i;:::-;40148:74;;40231:93;40320:3;40231:93;:::i;:::-;40349:2;40344:3;40340:12;40333:19;;39992:366;;;:::o;40364:419::-;40530:4;40568:2;40557:9;40553:18;40545:26;;40617:9;40611:4;40607:20;40603:1;40592:9;40588:17;40581:47;40645:131;40771:4;40645:131;:::i;:::-;40637:139;;40364:419;;;:::o;40789:348::-;40829:7;40852:20;40870:1;40852:20;:::i;:::-;40847:25;;40886:20;40904:1;40886:20;:::i;:::-;40881:25;;41074:1;41006:66;41002:74;40999:1;40996:81;40991:1;40984:9;40977:17;40973:105;40970:131;;;41081:18;;:::i;:::-;40970:131;41129:1;41126;41122:9;41111:20;;40789:348;;;;:::o;41143:171::-;41182:3;41205:24;41223:5;41205:24;:::i;:::-;41196:33;;41251:4;41244:5;41241:15;41238:41;;;41259:18;;:::i;:::-;41238:41;41306:1;41299:5;41295:13;41288:20;;41143:171;;;:::o;41320:182::-;41460:34;41456:1;41448:6;41444:14;41437:58;41320:182;:::o;41508:366::-;41650:3;41671:67;41735:2;41730:3;41671:67;:::i;:::-;41664:74;;41747:93;41836:3;41747:93;:::i;:::-;41865:2;41860:3;41856:12;41849:19;;41508:366;;;:::o;41880:419::-;42046:4;42084:2;42073:9;42069:18;42061:26;;42133:9;42127:4;42123:20;42119:1;42108:9;42104:17;42097:47;42161:131;42287:4;42161:131;:::i;:::-;42153:139;;41880:419;;;:::o;42305:225::-;42445:34;42441:1;42433:6;42429:14;42422:58;42514:8;42509:2;42501:6;42497:15;42490:33;42305:225;:::o;42536:366::-;42678:3;42699:67;42763:2;42758:3;42699:67;:::i;:::-;42692:74;;42775:93;42864:3;42775:93;:::i;:::-;42893:2;42888:3;42884:12;42877:19;;42536:366;;;:::o;42908:419::-;43074:4;43112:2;43101:9;43097:18;43089:26;;43161:9;43155:4;43151:20;43147:1;43136:9;43132:17;43125:47;43189:131;43315:4;43189:131;:::i;:::-;43181:139;;42908:419;;;:::o;43333:98::-;43384:6;43418:5;43412:12;43402:22;;43333:98;;;:::o;43437:147::-;43538:11;43575:3;43560:18;;43437:147;;;;:::o;43590:373::-;43694:3;43722:38;43754:5;43722:38;:::i;:::-;43776:88;43857:6;43852:3;43776:88;:::i;:::-;43769:95;;43873:52;43918:6;43913:3;43906:4;43899:5;43895:16;43873:52;:::i;:::-;43950:6;43945:3;43941:16;43934:23;;43698:265;43590:373;;;;:::o;43969:271::-;44099:3;44121:93;44210:3;44201:6;44121:93;:::i;:::-;44114:100;;44231:3;44224:10;;43969:271;;;;:::o

Swarm Source

ipfs://6c2cb00ba2d4b739940821b5a1d94d5b83eba7f96ad3413a1ebccfa0e8491877

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.