Contract 0x93f83875BB67869235438B44f6ebDc58957719d1

Contract Overview

Balance:
0 MATIC
Txn Hash
Method
Block
From
To
Value [Txn Fee]
0x6a1a61457d0643575e13fc588c19d659011e66ac05c2b35f5de4d45d8a280fd60x60806040336382642023-03-27 16:53:1773 days 9 hrs ago0x50d2314561a4367964da9cdcd328ab9f0f2a0e5d IN  Create: CarchainDocuVerify0 MATIC0.005347997534 2.500000016
[ Download CSV Export 
Parent Txn Hash Block From To Value
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CarchainDocuVerify

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2023-03-27
*/

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    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);
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    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 = Math.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, Math.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);
    }
}

// File: @openzeppelin/contracts/access/IAccessControl.sol


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @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;
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

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 AccessControl is Context, IAccessControl, ERC165 {
    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(IAccessControl).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 ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.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());
        }
    }
}

// File: Carchain/New/Meta.sol



pragma solidity ^0.8.19;



contract AccessControlMixin is AccessControl {
    string private _revertMsg;
    function _setupContractId(string memory contractId) internal {
        _revertMsg = string(abi.encodePacked(contractId, ": INSUFFICIENT_PERMISSIONS"));
    }

    modifier only(bytes32 role) {
        require(
            hasRole(role, _msgSender()),
            _revertMsg
        );
        _;
    }
}


contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}


contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contractsa that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}


contract NativeMetaTransaction is EIP712Base {
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress] + 1;

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}


abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}
// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: Carchain/New/CarchainDocuVerify.sol



pragma solidity ^0.8.19;




interface ICarchainNFT {
      function getMetadata(uint256 _id)
        external
        view
        returns (
        address owner, string memory hash, string memory make, string memory model, uint256 year, string memory vin, string memory engine, string memory colour, string memory plate, uint256 mileage
        );
}

contract CarchainDocuVerify is Ownable, AccessControlMixin, NativeMetaTransaction, ContextMixin {
    mapping(address=>bool) public verifiers;
    mapping(string=>CarDocument) public carDocuments;
    mapping(string=>Document) public documents;
    mapping(string=>string[]) public hashesByVIN;
    mapping(string=>uint256) public vinToTokenID;

    ICarchainNFT carchainNFT = ICarchainNFT(0x88f565Bb74C4111A26ba7F54cF610b56307d33B1);

    event CarDocumentCreated(address indexed _creator, string _hash);
    event DocumentCreated(address indexed _creator, string _hash);
    event VinToTokenIDAssociation(string indexed _vin, uint256 indexed _tokenId);

    struct CarDocument {
        bool valid;
        uint256 tokenId;
        address verifiedBy;
        uint256 verifiedOn;
        string make;
        string model;
        string vin;
        uint256 mileage;
    }

    struct Document {
        bool valid;
        address verifiedBy;
        uint256 verifiedOn;
        string name;
        string otherFields;
    }

    constructor() {
        _initializeEIP712('Carchain Docu Verify');
    }
    
    function addDocument(string memory _hash, string memory _name, string memory _otherFields) public {
        require(verifiers[_msgSender()] || _msgSender() == owner(), "Invalid caller");
        require(!documents[_hash].valid, "Already exists");

        documents[_hash].valid = true;
        documents[_hash].verifiedBy = _msgSender();
        documents[_hash].verifiedOn = block.timestamp;
        documents[_hash].name = _name;
        documents[_hash].otherFields = _otherFields;

        emit DocumentCreated(_msgSender(), _hash);
    }

    function addCarDocument(string memory _hash, string memory _make, string memory _model, string memory _vin, uint256 _mileage) public {
        require(verifiers[_msgSender()] || _msgSender() == owner(), "Invalid caller");
        require(!carDocuments[_hash].valid, "Already exists");

        carDocuments[_hash].valid = true;
        carDocuments[_hash].verifiedBy = _msgSender();
        carDocuments[_hash].verifiedOn = block.timestamp;
        carDocuments[_hash].make = _make;
        carDocuments[_hash].model = _model;
        carDocuments[_hash].vin = _vin;
        carDocuments[_hash].mileage = _mileage;
        carDocuments[_hash].tokenId = vinToTokenID[_vin];

        hashesByVIN[_vin].push(_hash);

        emit CarDocumentCreated(_msgSender(), _hash);    
    }

    function _associateVinToTokenId(string memory _vin, uint256 _tokenId) public onlyOwner {
        require(_tokenId > 0, "Invalid token ID");
        require(vinToTokenID[_vin] == 0, "Already set");

        (,,,,,string memory vin,,,,) = carchainNFT.getMetadata(_tokenId);
        require(compareStrings(vin, _vin), "Invalid VIN");

        vinToTokenID[_vin] = _tokenId;

        for (uint i = 0; i < hashesByVIN[_vin].length; i++) {
            carDocuments[hashesByVIN[_vin][i]].tokenId == _tokenId;
        }

        emit VinToTokenIDAssociation(_vin, _tokenId);
    }

    function _setVerifier(address _who, bool _status) public onlyOwner {
        verifiers[_who] = _status;
    }

    function compareStrings(string memory a, string memory b) internal pure returns (bool) {
        return (keccak256(abi.encodePacked((a))) == keccak256(abi.encodePacked((b))));
    }
}

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_creator","type":"address"},{"indexed":false,"internalType":"string","name":"_hash","type":"string"}],"name":"CarDocumentCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_creator","type":"address"},{"indexed":false,"internalType":"string","name":"_hash","type":"string"}],"name":"DocumentCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"string","name":"_vin","type":"string"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"VinToTokenIDAssociation","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_vin","type":"string"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"_associateVinToTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"_setVerifier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"},{"internalType":"string","name":"_make","type":"string"},{"internalType":"string","name":"_model","type":"string"},{"internalType":"string","name":"_vin","type":"string"},{"internalType":"uint256","name":"_mileage","type":"uint256"}],"name":"addCarDocument","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_otherFields","type":"string"}],"name":"addDocument","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"carDocuments","outputs":[{"internalType":"bool","name":"valid","type":"bool"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"verifiedBy","type":"address"},{"internalType":"uint256","name":"verifiedOn","type":"uint256"},{"internalType":"string","name":"make","type":"string"},{"internalType":"string","name":"model","type":"string"},{"internalType":"string","name":"vin","type":"string"},{"internalType":"uint256","name":"mileage","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"documents","outputs":[{"internalType":"bool","name":"valid","type":"bool"},{"internalType":"address","name":"verifiedBy","type":"address"},{"internalType":"uint256","name":"verifiedOn","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"otherFields","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","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":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"hashesByVIN","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"verifiers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"vinToTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526003805460ff19169055600b80546001600160a01b0319167388f565bb74c4111a26ba7f54cf610b56307d33b11790553480156200004157600080fd5b506200004d3362000092565b60408051808201909152601481527f436172636861696e20446f63752056657269667900000000000000000000000060208201526200008c90620000e2565b620001e8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60035460ff16156200012b5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620001368162000146565b506003805460ff19166001179055565b6040518060800160405280604f8152602001620025e7604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600455565b6123ef80620001f86000396000f3fe60806040526004361061014b5760003560e01c80636c824487116100b65780638da5cb5b1161006f5780638da5cb5b146103fe57806391d1485414610426578063a217fddf14610446578063b3dd697b1461045b578063d547741f1461048c578063f2fde38b146104ac57600080fd5b80636c8244871461030d578063715018a61461033d57806372990188146103525780637f4570dd14610386578063831c6a43146103a6578063898dcf56146103c657600080fd5b80632d0335ab116101085780632d0335ab146102445780632f2ff15d1461027a5780633408e4701461029a57806336568abe146102ad57806336a8915b146102cd5780635a1f0409146102ed57600080fd5b806301ffc9a7146101505780630c53c51c146101855780630f7e5970146101a557806310e5c14d146101d257806320379ee5146101f4578063248a9ca314610213575b600080fd5b34801561015c57600080fd5b5061017061016b366004611991565b6104cc565b60405190151581526020015b60405180910390f35b610198610193366004611a7d565b610503565b60405161017c9190611b5f565b3480156101b157600080fd5b50610198604051806040016040528060018152602001603160f81b81525081565b3480156101de57600080fd5b506101f26101ed366004611b72565b6106f2565b005b34801561020057600080fd5b506004545b60405190815260200161017c565b34801561021f57600080fd5b5061020561022e366004611bb0565b6000908152600160208190526040909120015490565b34801561025057600080fd5b5061020561025f366004611bc9565b6001600160a01b031660009081526005602052604090205490565b34801561028657600080fd5b506101f2610295366004611be6565b610725565b3480156102a657600080fd5b5046610205565b3480156102b957600080fd5b506101f26102c8366004611be6565b610750565b3480156102d957600080fd5b506101f26102e8366004611c2b565b6107ce565b3480156102f957600080fd5b50610198610308366004611cb3565b6109dc565b34801561031957600080fd5b50610170610328366004611bc9565b60066020526000908152604090205460ff1681565b34801561034957600080fd5b506101f2610aa4565b34801561035e57600080fd5b5061037261036d366004611cf8565b610ab8565b60405161017c989796959493929190611d35565b34801561039257600080fd5b506101f26103a1366004611cb3565b610cac565b3480156103b257600080fd5b506101f26103c1366004611da9565b610f01565b3480156103d257600080fd5b506102056103e1366004611cf8565b8051602081830181018051600a8252928201919093012091525481565b34801561040a57600080fd5b506000546040516001600160a01b03909116815260200161017c565b34801561043257600080fd5b50610170610441366004611be6565b6111e6565b34801561045257600080fd5b50610205600081565b34801561046757600080fd5b5061047b610476366004611cf8565b611211565b60405161017c959493929190611e5e565b34801561049857600080fd5b506101f26104a7366004611be6565b611368565b3480156104b857600080fd5b506101f26104c7366004611bc9565b61138e565b60006001600160e01b03198216637965db0b60e01b14806104fd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60408051606081810183526001600160a01b038816600081815260056020908152908590205484528301529181018690526105418782878787611407565b61059c5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084015b60405180910390fd5b6001600160a01b0387166000908152600560205260409020546105c0906001611eb5565b6001600160a01b0388166000908152600560205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061061090899033908a90611ec8565b60405180910390a1600080306001600160a01b0316888a604051602001610638929190611efd565b60408051601f198184030181529082905261065291611f34565b6000604051808303816000865af19150503d806000811461068f576040519150601f19603f3d011682016040523d82523d6000602084013e610694565b606091505b5091509150816106e65760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610593565b98975050505050505050565b6106fa6114f7565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000828152600160208190526040909120015461074181611551565b61074b838361155b565b505050565b6001600160a01b03811633146107c05760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610593565b6107ca82826115c6565b5050565b3360009081526006602052604090205460ff16806107f657506000546001600160a01b031633145b6108335760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21031b0b63632b960911b6044820152606401610593565b6008836040516108439190611f34565b9081526040519081900360200190205460ff16156108945760405162461bcd60e51b815260206004820152600e60248201526d416c72656164792065786973747360901b6044820152606401610593565b60016008846040516108a69190611f34565b908152604051908190036020019020805491151560ff199092169190911790556108cd3390565b6008846040516108dd9190611f34565b908152602001604051809103902060000160016101000a8154816001600160a01b0302191690836001600160a01b03160217905550426008846040516109239190611f34565b908152602001604051809103902060010181905550816008846040516109499190611f34565b908152602001604051809103902060020190816109669190611fd8565b50806008846040516109789190611f34565b908152602001604051809103902060030190816109959190611fd8565b50336001600160a01b03167f0917b89d48498183f28ef7708eef7e773d8a31836350dc4005af1b9cde43bbfc846040516109cf9190611b5f565b60405180910390a2505050565b81516020818401810180516009825292820191850191909120919052805482908110610a0757600080fd5b90600052602060002001600091509150508054610a2390611f50565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4f90611f50565b8015610a9c5780601f10610a7157610100808354040283529160200191610a9c565b820191906000526020600020905b815481529060010190602001808311610a7f57829003601f168201915b505050505081565b610aac6114f7565b610ab6600061162d565b565b80516020818301810180516007825292820191909301209152805460018201546002830154600384015460048501805460ff9095169593946001600160a01b03909316939192610b0790611f50565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3390611f50565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b505050505090806005018054610b9590611f50565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc190611f50565b8015610c0e5780601f10610be357610100808354040283529160200191610c0e565b820191906000526020600020905b815481529060010190602001808311610bf157829003601f168201915b505050505090806006018054610c2390611f50565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4f90611f50565b8015610c9c5780601f10610c7157610100808354040283529160200191610c9c565b820191906000526020600020905b815481529060010190602001808311610c7f57829003601f168201915b5050505050908060070154905088565b610cb46114f7565b60008111610cf75760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a59081d1bdad95b88125160821b6044820152606401610593565b600a82604051610d079190611f34565b908152602001604051809103902054600014610d535760405162461bcd60e51b815260206004820152600b60248201526a105b1c9958591e481cd95d60aa1b6044820152606401610593565b600b5460405163295d33a960e21b8152600481018390526000916001600160a01b03169063a574cea490602401600060405180830381865afa158015610d9d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610dc591908101906120ed565b5050505095505050505050610dda818461167d565b610e145760405162461bcd60e51b815260206004820152600b60248201526a24b73b30b634b2102b24a760a91b6044820152606401610593565b81600a84604051610e259190611f34565b9081526040519081900360200190205560005b600984604051610e489190611f34565b90815260405190819003602001902054811015610ebc57826007600986604051610e729190611f34565b90815260200160405180910390208381548110610e9157610e9161222e565b90600052602060002001604051610ea89190612244565b525080610eb4816122ba565b915050610e38565b508183604051610ecc9190611f34565b604051908190038120907fc9fb1e60455fff2a115bc10290a5e96929b93438903ef0d33e6798000def77a090600090a3505050565b3360009081526006602052604090205460ff1680610f2957506000546001600160a01b031633145b610f665760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21031b0b63632b960911b6044820152606401610593565b600785604051610f769190611f34565b9081526040519081900360200190205460ff1615610fc75760405162461bcd60e51b815260206004820152600e60248201526d416c72656164792065786973747360901b6044820152606401610593565b6001600786604051610fd99190611f34565b908152604051908190036020019020805491151560ff199092169190911790556110003390565b6007866040516110109190611f34565b908152602001604051809103902060020160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550426007866040516110569190611f34565b9081526020016040518091039020600301819055508360078660405161107c9190611f34565b908152602001604051809103902060040190816110999190611fd8565b50826007866040516110ab9190611f34565b908152602001604051809103902060050190816110c89190611fd8565b50816007866040516110da9190611f34565b908152602001604051809103902060060190816110f79190611fd8565b50806007866040516111099190611f34565b908152602001604051809103902060070181905550600a8260405161112e9190611f34565b90815260200160405180910390205460078660405161114d9190611f34565b9081526020016040518091039020600101819055506009826040516111729190611f34565b90815260405160209181900382019020805460018101825560009182529190200161119d8682611fd8565b50336001600160a01b03167fc07e6681ae20c673f43ef7dd7ca19408e3e27f28eff0fae411ac46613d946d88866040516111d79190611b5f565b60405180910390a25050505050565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b805160208183018101805160088252928201919093012091528054600182015460028301805460ff8416946101009094046001600160a01b031693919061125790611f50565b80601f016020809104026020016040519081016040528092919081815260200182805461128390611f50565b80156112d05780601f106112a5576101008083540402835291602001916112d0565b820191906000526020600020905b8154815290600101906020018083116112b357829003601f168201915b5050505050908060030180546112e590611f50565b80601f016020809104026020016040519081016040528092919081815260200182805461131190611f50565b801561135e5780601f106113335761010080835404028352916020019161135e565b820191906000526020600020905b81548152906001019060200180831161134157829003601f168201915b5050505050905085565b6000828152600160208190526040909120015461138481611551565b61074b83836115c6565b6113966114f7565b6001600160a01b0381166113fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610593565b6114048161162d565b50565b60006001600160a01b03861661146d5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610593565b600161148061147b876116d6565b611753565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156114ce573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000546001600160a01b03163314610ab65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610593565b6114048133611783565b61156582826111e6565b6107ca5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6115d082826111e6565b156107ca5760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000816040516020016116909190611f34565b60405160208183030381529060405280519060200120836040516020016116b79190611f34565b6040516020818303038152906040528051906020012014905092915050565b60006040518060800160405280604381526020016123776043913980516020918201208351848301516040808701518051908601209051611736950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061175e60045490565b60405161190160f01b6020820152602281019190915260428101839052606201611736565b61178d82826111e6565b6107ca5761179a816117dc565b6117a58360206117ee565b6040516020016117b69291906122d3565b60408051601f198184030181529082905262461bcd60e51b825261059391600401611b5f565b60606104fd6001600160a01b03831660145b606060006117fd836002612348565b611808906002611eb5565b67ffffffffffffffff811115611820576118206119d0565b6040519080825280601f01601f19166020018201604052801561184a576020820181803683370190505b509050600360fc1b816000815181106118655761186561222e565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106118945761189461222e565b60200101906001600160f81b031916908160001a90535060006118b8846002612348565b6118c3906001611eb5565b90505b600181111561193b576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106118f7576118f761222e565b1a60f81b82828151811061190d5761190d61222e565b60200101906001600160f81b031916908160001a90535060049490941c936119348161235f565b90506118c6565b50831561198a5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610593565b9392505050565b6000602082840312156119a357600080fd5b81356001600160e01b03198116811461198a57600080fd5b6001600160a01b038116811461140457600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611a0f57611a0f6119d0565b604052919050565b600067ffffffffffffffff821115611a3157611a316119d0565b50601f01601f191660200190565b6000611a52611a4d84611a17565b6119e6565b9050828152838383011115611a6657600080fd5b828260208301376000602084830101529392505050565b600080600080600060a08688031215611a9557600080fd5b8535611aa0816119bb565b9450602086013567ffffffffffffffff811115611abc57600080fd5b8601601f81018813611acd57600080fd5b611adc88823560208401611a3f565b9450506040860135925060608601359150608086013560ff81168114611b0157600080fd5b809150509295509295909350565b60005b83811015611b2a578181015183820152602001611b12565b50506000910152565b60008151808452611b4b816020860160208601611b0f565b601f01601f19169290920160200192915050565b60208152600061198a6020830184611b33565b60008060408385031215611b8557600080fd5b8235611b90816119bb565b915060208301358015158114611ba557600080fd5b809150509250929050565b600060208284031215611bc257600080fd5b5035919050565b600060208284031215611bdb57600080fd5b813561198a816119bb565b60008060408385031215611bf957600080fd5b823591506020830135611ba5816119bb565b600082601f830112611c1c57600080fd5b61198a83833560208501611a3f565b600080600060608486031215611c4057600080fd5b833567ffffffffffffffff80821115611c5857600080fd5b611c6487838801611c0b565b94506020860135915080821115611c7a57600080fd5b611c8687838801611c0b565b93506040860135915080821115611c9c57600080fd5b50611ca986828701611c0b565b9150509250925092565b60008060408385031215611cc657600080fd5b823567ffffffffffffffff811115611cdd57600080fd5b611ce985828601611c0b565b95602094909401359450505050565b600060208284031215611d0a57600080fd5b813567ffffffffffffffff811115611d2157600080fd5b611d2d84828501611c0b565b949350505050565b60006101008a1515835289602084015260018060a01b0389166040840152876060840152806080840152611d6b81840188611b33565b905082810360a0840152611d7f8187611b33565b905082810360c0840152611d938186611b33565b9150508260e08301529998505050505050505050565b600080600080600060a08688031215611dc157600080fd5b853567ffffffffffffffff80821115611dd957600080fd5b611de589838a01611c0b565b96506020880135915080821115611dfb57600080fd5b611e0789838a01611c0b565b95506040880135915080821115611e1d57600080fd5b611e2989838a01611c0b565b94506060880135915080821115611e3f57600080fd5b50611e4c88828901611c0b565b95989497509295608001359392505050565b851515815260018060a01b038516602082015283604082015260a060608201526000611e8d60a0830185611b33565b82810360808401526106e68185611b33565b634e487b7160e01b600052601160045260246000fd5b808201808211156104fd576104fd611e9f565b6001600160a01b03848116825283166020820152606060408201819052600090611ef490830184611b33565b95945050505050565b60008351611f0f818460208801611b0f565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251611f46818460208701611b0f565b9190910192915050565b600181811c90821680611f6457607f821691505b602082108103611f8457634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561074b57600081815260208120601f850160051c81016020861015611fb15750805b601f850160051c820191505b81811015611fd057828155600101611fbd565b505050505050565b815167ffffffffffffffff811115611ff257611ff26119d0565b612006816120008454611f50565b84611f8a565b602080601f83116001811461203b57600084156120235750858301515b600019600386901b1c1916600185901b178555611fd0565b600085815260208120601f198616915b8281101561206a5788860151825594840194600190910190840161204b565b50858210156120885787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80516120a3816119bb565b919050565b600082601f8301126120b957600080fd5b81516120c7611a4d82611a17565b8181528460208386010111156120dc57600080fd5b611d2d826020830160208701611b0f565b6000806000806000806000806000806101408b8d03121561210d57600080fd5b6121168b612098565b995060208b015167ffffffffffffffff8082111561213357600080fd5b61213f8e838f016120a8565b9a5060408d015191508082111561215557600080fd5b6121618e838f016120a8565b995060608d015191508082111561217757600080fd5b6121838e838f016120a8565b985060808d0151975060a08d01519150808211156121a057600080fd5b6121ac8e838f016120a8565b965060c08d01519150808211156121c257600080fd5b6121ce8e838f016120a8565b955060e08d01519150808211156121e457600080fd5b6121f08e838f016120a8565b94506101008d015191508082111561220757600080fd5b506122148d828e016120a8565b9250506101208b015190509295989b9194979a5092959850565b634e487b7160e01b600052603260045260246000fd5b600080835461225281611f50565b6001828116801561226a576001811461227f576122ae565b60ff19841687528215158302870194506122ae565b8760005260208060002060005b858110156122a55781548a82015290840190820161228c565b50505082870194505b50929695505050505050565b6000600182016122cc576122cc611e9f565b5060010190565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161230b816017850160208801611b0f565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161233c816028840160208801611b0f565b01602801949350505050565b80820281158282048414176104fd576104fd611e9f565b60008161236e5761236e611e9f565b50600019019056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220ce1f539dd601a1670ede1c7e8c1277032e1a5eb4b8c7aa8ceed8283947b613a864736f6c63430008130033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429

Deployed ByteCode Sourcemap

38866:3415:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23656:204;;;;;;;;;;-1:-1:-1;23656:204:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;23656:204:0;;;;;;;;32869:1148;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;30164:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;30164:43:0;;;;;41976:111;;;;;;;;;;-1:-1:-1;41976:111:0;;;;;:::i;:::-;;:::i;:::-;;31174:101;;;;;;;;;;-1:-1:-1;31252:15:0;;31174:101;;;4012:25:1;;;4000:2;3985:18;31174:101:0;3866:177:1;25479:131:0;;;;;;;;;;-1:-1:-1;25479:131:0;;;;;:::i;:::-;25553:7;25580:12;;;:6;:12;;;;;;;;:22;;;25479:131;34443:107;;;;;;;;;;-1:-1:-1;34443:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;34530:12:0;34496:13;34530:12;;;:6;:12;;;;;;;34443:107;25920:147;;;;;;;;;;-1:-1:-1;25920:147:0;;;;;:::i;:::-;;:::i;31283:161::-;;;;;;;;;;-1:-1:-1;31397:9:0;31283:161;;27064:218;;;;;;;;;;-1:-1:-1;27064:218:0;;;;;:::i;:::-;;:::i;40019:554::-;;;;;;;;;;-1:-1:-1;40019:554:0;;;;;:::i;:::-;;:::i;39119:44::-;;;;;;;;;;-1:-1:-1;39119:44:0;;;;;:::i;:::-;;:::i;38969:39::-;;;;;;;;;;-1:-1:-1;38969:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37629:103;;;;;;;;;;;;;:::i;39015:48::-;;;;;;;;;;-1:-1:-1;39015:48:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;:::i;41382:586::-;;;;;;;;;;-1:-1:-1;41382:586:0;;;;;:::i;:::-;;:::i;40581:793::-;;;;;;;;;;-1:-1:-1;40581:793:0;;;;;:::i;:::-;;:::i;39170:44::-;;;;;;;;;;-1:-1:-1;39170:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;36981:87;;;;;;;;;;-1:-1:-1;37027:7:0;37054:6;36981:87;;-1:-1:-1;;;;;37054:6:0;;;8812:51:1;;8800:2;8785:18;36981:87:0;8666:203:1;23952:147:0;;;;;;;;;;-1:-1:-1;23952:147:0;;;;;:::i;:::-;;:::i;23057:49::-;;;;;;;;;;-1:-1:-1;23057:49:0;23102:4;23057:49;;39070:42;;;;;;;;;;-1:-1:-1;39070:42:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;26360:149::-;;;;;;;;;;-1:-1:-1;26360:149:0;;;;;:::i;:::-;;:::i;37887:201::-;;;;;;;;;;-1:-1:-1;37887:201:0;;;;;:::i;:::-;;:::i;23656:204::-;23741:4;-1:-1:-1;;;;;;23765:47:0;;-1:-1:-1;;;23765:47:0;;:87;;-1:-1:-1;;;;;;;;;;1891:40:0;;;23816:36;23758:94;23656:204;-1:-1:-1;;23656:204:0:o;32869:1148::-;33127:152;;;33070:12;33127:152;;;;;-1:-1:-1;;;;;33165:19:0;;33095:29;33165:19;;;:6;:19;;;;;;;;;33127:152;;;;;;;;;;;33314:45;33172:11;33127:152;33342:4;33348;33354;33314:6;:45::i;:::-;33292:128;;;;-1:-1:-1;;;33292:128:0;;9714:2:1;33292:128:0;;;9696:21:1;9753:2;9733:18;;;9726:30;9792:34;9772:18;;;9765:62;-1:-1:-1;;;9843:18:1;;;9836:31;9884:19;;33292:128:0;;;;;;;;;-1:-1:-1;;;;;33509:19:0;;;;;;:6;:19;;;;;;:23;;33531:1;33509:23;:::i;:::-;-1:-1:-1;;;;;33487:19:0;;;;;;:6;:19;;;;;;;:45;;;;33550:126;;;;;33494:11;;33622:10;;33648:17;;33550:126;:::i;:::-;;;;;;;;33787:12;33801:23;33836:4;-1:-1:-1;;;;;33828:18:0;33878:17;33897:11;33861:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;33861:48:0;;;;;;;;;;33828:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33786:134;;;;33939:7;33931:48;;;;-1:-1:-1;;;33931:48:0;;11539:2:1;33931:48:0;;;11521:21:1;11578:2;11558:18;;;11551:30;11617;11597:18;;;11590:58;11665:18;;33931:48:0;11337:352:1;33931:48:0;33999:10;32869:1148;-1:-1:-1;;;;;;;;32869:1148:0:o;41976:111::-;36867:13;:11;:13::i;:::-;-1:-1:-1;;;;;42054:15:0;;;::::1;;::::0;;;:9:::1;:15;::::0;;;;:25;;-1:-1:-1;;42054:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41976:111::o;25920:147::-;25553:7;25580:12;;;:6;:12;;;;;;;;:22;;23548:16;23559:4;23548:10;:16::i;:::-;26034:25:::1;26045:4;26051:7;26034:10;:25::i;:::-;25920:147:::0;;;:::o;27064:218::-;-1:-1:-1;;;;;27160:23:0;;20945:10;27160:23;27152:83;;;;-1:-1:-1;;;27152:83:0;;11896:2:1;27152:83:0;;;11878:21:1;11935:2;11915:18;;;11908:30;11974:34;11954:18;;;11947:62;-1:-1:-1;;;12025:18:1;;;12018:45;12080:19;;27152:83:0;11694:411:1;27152:83:0;27248:26;27260:4;27266:7;27248:11;:26::i;:::-;27064:218;;:::o;40019:554::-;20945:10;40136:23;;;;:9;:23;;;;;;;;;:50;;-1:-1:-1;37027:7:0;37054:6;-1:-1:-1;;;;;37054:6:0;20945:10;40163:23;40136:50;40128:77;;;;-1:-1:-1;;;40128:77:0;;12312:2:1;40128:77:0;;;12294:21:1;12351:2;12331:18;;;12324:30;-1:-1:-1;;;12370:18:1;;;12363:44;12424:18;;40128:77:0;12110:338:1;40128:77:0;40225:9;40235:5;40225:16;;;;;;:::i;:::-;;;;;;;;;;;;;;:22;;;40224:23;40216:50;;;;-1:-1:-1;;;40216:50:0;;12949:2:1;40216:50:0;;;12931:21:1;12988:2;12968:18;;;12961:30;-1:-1:-1;;;13007:18:1;;;13000:44;13061:18;;40216:50:0;12747:338:1;40216:50:0;40304:4;40279:9;40289:5;40279:16;;;;;;:::i;:::-;;;;;;;;;;;;;;:29;;;;;-1:-1:-1;;40279:29:0;;;;;;;;;40349:12;20945:10;;20865:98;40349:12;40319:9;40329:5;40319:16;;;;;;:::i;:::-;;;;;;;;;;;;;:27;;;:42;;;;;-1:-1:-1;;;;;40319:42:0;;;;;-1:-1:-1;;;;;40319:42:0;;;;;;40402:15;40372:9;40382:5;40372:16;;;;;;:::i;:::-;;;;;;;;;;;;;:27;;:45;;;;40452:5;40428:9;40438:5;40428:16;;;;;;:::i;:::-;;;;;;;;;;;;;:21;;:29;;;;;;:::i;:::-;;40499:12;40468:9;40478:5;40468:16;;;;;;:::i;:::-;;;;;;;;;;;;;:28;;:43;;;;;;:::i;:::-;-1:-1:-1;20945:10:0;-1:-1:-1;;;;;40529:36:0;;40559:5;40529:36;;;;;;:::i;:::-;;;;;;;;40019:554;;;:::o;39119:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37629:103::-;36867:13;:11;:13::i;:::-;37694:30:::1;37721:1;37694:18;:30::i;:::-;37629:103::o:0;39015:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39015:48:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41382:586::-;36867:13;:11;:13::i;:::-;41499:1:::1;41488:8;:12;41480:41;;;::::0;-1:-1:-1;;;41480:41:0;;15881:2:1;41480:41:0::1;::::0;::::1;15863:21:1::0;15920:2;15900:18;;;15893:30;-1:-1:-1;;;15939:18:1;;;15932:46;15995:18;;41480:41:0::1;15679:340:1::0;41480:41:0::1;41540:12;41553:4;41540:18;;;;;;:::i;:::-;;;;;;;;;;;;;;41562:1;41540:23;41532:47;;;::::0;-1:-1:-1;;;41532:47:0;;16226:2:1;41532:47:0::1;::::0;::::1;16208:21:1::0;16265:2;16245:18;;;16238:30;-1:-1:-1;;;16284:18:1;;;16277:41;16335:18;;41532:47:0::1;16024:335:1::0;41532:47:0::1;41623:11;::::0;:33:::1;::::0;-1:-1:-1;;;41623:33:0;;::::1;::::0;::::1;4012:25:1::0;;;41598:17:0::1;::::0;-1:-1:-1;;;;;41623:11:0::1;::::0;:23:::1;::::0;3985:18:1;;41623:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;41623:33:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;41592:64;;;;;;;;;;;41675:25;41690:3;41695:4;41675:14;:25::i;:::-;41667:49;;;::::0;-1:-1:-1;;;41667:49:0;;18957:2:1;41667:49:0::1;::::0;::::1;18939:21:1::0;18996:2;18976:18;;;18969:30;-1:-1:-1;;;19015:18:1;;;19008:41;19066:18;;41667:49:0::1;18755:335:1::0;41667:49:0::1;41750:8;41729:12;41742:4;41729:18;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:29;41776:6:::1;41771:133;41792:11;41804:4;41792:17;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:24;41788:28;::::1;41771:133;;;41884:8;41838:12;41851:11;41863:4;41851:17;;;;;;:::i;:::-;;;;;;;;;;;;;41869:1;41851:20;;;;;;;;:::i;:::-;;;;;;;;41838:34;;;;;;:::i;:::-;::::0;-1:-1:-1;41818:3:0;::::1;::::0;::::1;:::i;:::-;;;;41771:133;;;;41951:8;41945:4;41921:39;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;41469:499;41382:586:::0;;:::o;40581:793::-;20945:10;40733:23;;;;:9;:23;;;;;;;;;:50;;-1:-1:-1;37027:7:0;37054:6;-1:-1:-1;;;;;37054:6:0;20945:10;40760:23;40733:50;40725:77;;;;-1:-1:-1;;;40725:77:0;;12312:2:1;40725:77:0;;;12294:21:1;12351:2;12331:18;;;12324:30;-1:-1:-1;;;12370:18:1;;;12363:44;12424:18;;40725:77:0;12110:338:1;40725:77:0;40822:12;40835:5;40822:19;;;;;;:::i;:::-;;;;;;;;;;;;;;:25;;;40821:26;40813:53;;;;-1:-1:-1;;;40813:53:0;;12949:2:1;40813:53:0;;;12931:21:1;12988:2;12968:18;;;12961:30;-1:-1:-1;;;13007:18:1;;;13000:44;13061:18;;40813:53:0;12747:338:1;40813:53:0;40907:4;40879:12;40892:5;40879:19;;;;;;:::i;:::-;;;;;;;;;;;;;;:32;;;;;-1:-1:-1;;40879:32:0;;;;;;;;;40955:12;20945:10;;20865:98;40955:12;40922;40935:5;40922:19;;;;;;:::i;:::-;;;;;;;;;;;;;:30;;;:45;;;;;-1:-1:-1;;;;;40922:45:0;;;;;-1:-1:-1;;;;;40922:45:0;;;;;;41011:15;40978:12;40991:5;40978:19;;;;;;:::i;:::-;;;;;;;;;;;;;:30;;:48;;;;41064:5;41037:12;41050:5;41037:19;;;;;;:::i;:::-;;;;;;;;;;;;;:24;;:32;;;;;;:::i;:::-;;41108:6;41080:12;41093:5;41080:19;;;;;;:::i;:::-;;;;;;;;;;;;;:25;;:34;;;;;;:::i;:::-;;41151:4;41125:12;41138:5;41125:19;;;;;;:::i;:::-;;;;;;;;;;;;;:23;;:30;;;;;;:::i;:::-;;41196:8;41166:12;41179:5;41166:19;;;;;;:::i;:::-;;;;;;;;;;;;;:27;;:38;;;;41245:12;41258:4;41245:18;;;;;;:::i;:::-;;;;;;;;;;;;;;41215:12;41228:5;41215:19;;;;;;:::i;:::-;;;;;;;;;;;;;:27;;:48;;;;41276:11;41288:4;41276:17;;;;;;:::i;:::-;;;;;;;;;;;;;;;:29;;;;;;;-1:-1:-1;41276:29:0;;;;;;;;41299:5;41276:29;;:::i;:::-;-1:-1:-1;20945:10:0;-1:-1:-1;;;;;41323:39:0;;41356:5;41323:39;;;;;;:::i;:::-;;;;;;;;40581:793;;;;;:::o;23952:147::-;24038:4;24062:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;24062:29:0;;;;;;;;;;;;;;;23952:147::o;39070:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39070:42:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26360:149::-;25553:7;25580:12;;;:6;:12;;;;;;;;:22;;23548:16;23559:4;23548:10;:16::i;:::-;26475:26:::1;26487:4;26493:7;26475:11;:26::i;37887:201::-:0;36867:13;:11;:13::i;:::-;-1:-1:-1;;;;;37976:22:0;::::1;37968:73;;;::::0;-1:-1:-1;;;37968:73:0;;20416:2:1;37968:73:0::1;::::0;::::1;20398:21:1::0;20455:2;20435:18;;;20428:30;20494:34;20474:18;;;20467:62;-1:-1:-1;;;20545:18:1;;;20538:36;20591:19;;37968:73:0::1;20214:402:1::0;37968:73:0::1;38052:28;38071:8;38052:18;:28::i;:::-;37887:201:::0;:::o;34558:486::-;34736:4;-1:-1:-1;;;;;34761:20:0;;34753:70;;;;-1:-1:-1;;;34753:70:0;;20823:2:1;34753:70:0;;;20805:21:1;20862:2;20842:18;;;20835:30;20901:34;20881:18;;;20874:62;-1:-1:-1;;;20952:18:1;;;20945:35;20997:19;;34753:70:0;20621:401:1;34753:70:0;34877:159;34905:47;34924:27;34944:6;34924:19;:27::i;:::-;34905:18;:47::i;:::-;34877:159;;;;;;;;;;;;21254:25:1;;;;21327:4;21315:17;;21295:18;;;21288:45;21349:18;;;21342:34;;;21392:18;;;21385:34;;;21226:19;;34877:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34854:182:0;:6;-1:-1:-1;;;;;34854:182:0;;34834:202;;34558:486;;;;;;;:::o;37146:132::-;37027:7;37054:6;-1:-1:-1;;;;;37054:6:0;20945:10;37210:23;37202:68;;;;-1:-1:-1;;;37202:68:0;;21632:2:1;37202:68:0;;;21614:21:1;;;21651:18;;;21644:30;21710:34;21690:18;;;21683:62;21762:18;;37202:68:0;21430:356:1;24403:105:0;24470:30;24481:4;20945:10;24470;:30::i;28661:238::-;28745:22;28753:4;28759:7;28745;:22::i;:::-;28740:152;;28784:12;;;;28816:4;28784:12;;;;;;;;-1:-1:-1;;;;;28784:29:0;;;;;;;;;;:36;;-1:-1:-1;;28784:36:0;;;;;;;28840:40;;20945:10;;28784:12;;28840:40;;28784:12;28840:40;28661:238;;:::o;29079:239::-;29163:22;29171:4;29177:7;29163;:22::i;:::-;29159:152;;;29234:5;29202:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;29202:29:0;;;;;;;;;;:37;;-1:-1:-1;;29202:37:0;;;29259:40;20945:10;;29202:12;;29259:40;;29234:5;29259:40;29079:239;;:::o;38248:191::-;38322:16;38341:6;;-1:-1:-1;;;;;38358:17:0;;;-1:-1:-1;;;;;;38358:17:0;;;;;;38391:40;;38341:6;;;;;;;38391:40;;38322:16;38391:40;38311:128;38248:191;:::o;42095:183::-;42176:4;42265:1;42247:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;42237:32;;;;;;42229:1;42211:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;42201:32;;;;;;:68;42193:77;;42095:183;;;;:::o;34025:410::-;34135:7;32205:100;;;;;;;;;;;;;;;;;32185:127;;;;;;;34289:12;;34324:11;;;;34368:24;;;;;34358:35;;;;;;34208:204;;;;;22022:25:1;;;22078:2;22063:18;;22056:34;;;;-1:-1:-1;;;;;22126:32:1;22121:2;22106:18;;22099:60;22190:2;22175:18;;22168:34;22009:3;21994:19;;21791:417;34208:204:0;;;;;;;;;;;;;34180:247;;;;;;34160:267;;34025:410;;;:::o;31813:258::-;31912:7;32014:20;31252:15;;;31174:101;32014:20;31985:63;;-1:-1:-1;;;31985:63:0;;;22471:27:1;22514:11;;;22507:27;;;;22550:12;;;22543:28;;;22587:12;;31985:63:0;22213:392:1;24798:492:0;24887:22;24895:4;24901:7;24887;:22::i;:::-;24882:401;;25075:28;25095:7;25075:19;:28::i;:::-;25176:38;25204:4;25211:2;25176:19;:38::i;:::-;24980:257;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;24980:257:0;;;;;;;;;;-1:-1:-1;;;24926:345:0;;;;;;;:::i;16987:151::-;17045:13;17078:52;-1:-1:-1;;;;;17090:22:0;;15142:2;16383:447;16458:13;16484:19;16516:10;16520:6;16516:1;:10;:::i;:::-;:14;;16529:1;16516:14;:::i;:::-;16506:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16506:25:0;;16484:47;;-1:-1:-1;;;16542:6:0;16549:1;16542:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;16542:15:0;;;;;;;;;-1:-1:-1;;;16568:6:0;16575:1;16568:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;16568:15:0;;;;;;;;-1:-1:-1;16599:9:0;16611:10;16615:6;16611:1;:10;:::i;:::-;:14;;16624:1;16611:14;:::i;:::-;16599:26;;16594:131;16631:1;16627;:5;16594:131;;;-1:-1:-1;;;16675:5:0;16683:3;16675:11;16666:21;;;;;;;:::i;:::-;;;;16654:6;16661:1;16654:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;16654:33:0;;;;;;;;-1:-1:-1;16712:1:0;16702:11;;;;;16634:3;;;:::i;:::-;;;16594:131;;;-1:-1:-1;16743:10:0;;16735:55;;;;-1:-1:-1;;;16735:55:0;;23943:2:1;16735:55:0;;;23925:21:1;;;23962:18;;;23955:30;24021:34;24001:18;;;23994:62;24073:18;;16735:55:0;23741:356:1;16735:55:0;16815:6;16383:447;-1:-1:-1;;;16383:447:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:131;-1:-1:-1;;;;;572:31:1;;562:42;;552:70;;618:1;615;608:12;633:127;694:10;689:3;685:20;682:1;675:31;725:4;722:1;715:15;749:4;746:1;739:15;765:275;836:2;830:9;901:2;882:13;;-1:-1:-1;;878:27:1;866:40;;936:18;921:34;;957:22;;;918:62;915:88;;;983:18;;:::i;:::-;1019:2;1012:22;765:275;;-1:-1:-1;765:275:1:o;1045:186::-;1093:4;1126:18;1118:6;1115:30;1112:56;;;1148:18;;:::i;:::-;-1:-1:-1;1214:2:1;1193:15;-1:-1:-1;;1189:29:1;1220:4;1185:40;;1045:186::o;1236:336::-;1300:5;1329:52;1345:35;1373:6;1345:35;:::i;:::-;1329:52;:::i;:::-;1320:61;;1404:6;1397:5;1390:21;1444:3;1435:6;1430:3;1426:16;1423:25;1420:45;;;1461:1;1458;1451:12;1420:45;1510:6;1505:3;1498:4;1491:5;1487:16;1474:43;1564:1;1557:4;1548:6;1541:5;1537:18;1533:29;1526:40;1236:336;;;;;:::o;1577:887::-;1679:6;1687;1695;1703;1711;1764:3;1752:9;1743:7;1739:23;1735:33;1732:53;;;1781:1;1778;1771:12;1732:53;1820:9;1807:23;1839:31;1864:5;1839:31;:::i;:::-;1889:5;-1:-1:-1;1945:2:1;1930:18;;1917:32;1972:18;1961:30;;1958:50;;;2004:1;2001;1994:12;1958:50;2027:22;;2080:4;2072:13;;2068:27;-1:-1:-1;2058:55:1;;2109:1;2106;2099:12;2058:55;2132:73;2197:7;2192:2;2179:16;2174:2;2170;2166:11;2132:73;:::i;:::-;2122:83;;;2252:2;2241:9;2237:18;2224:32;2214:42;;2303:2;2292:9;2288:18;2275:32;2265:42;;2359:3;2348:9;2344:19;2331:33;2408:4;2399:7;2395:18;2386:7;2383:31;2373:59;;2428:1;2425;2418:12;2373:59;2451:7;2441:17;;;1577:887;;;;;;;;:::o;2469:250::-;2554:1;2564:113;2578:6;2575:1;2572:13;2564:113;;;2654:11;;;2648:18;2635:11;;;2628:39;2600:2;2593:10;2564:113;;;-1:-1:-1;;2711:1:1;2693:16;;2686:27;2469:250::o;2724:270::-;2765:3;2803:5;2797:12;2830:6;2825:3;2818:19;2846:76;2915:6;2908:4;2903:3;2899:14;2892:4;2885:5;2881:16;2846:76;:::i;:::-;2976:2;2955:15;-1:-1:-1;;2951:29:1;2942:39;;;;2983:4;2938:50;;2724:270;-1:-1:-1;;2724:270:1:o;2999:217::-;3146:2;3135:9;3128:21;3109:4;3166:44;3206:2;3195:9;3191:18;3183:6;3166:44;:::i;3445:416::-;3510:6;3518;3571:2;3559:9;3550:7;3546:23;3542:32;3539:52;;;3587:1;3584;3577:12;3539:52;3626:9;3613:23;3645:31;3670:5;3645:31;:::i;:::-;3695:5;-1:-1:-1;3752:2:1;3737:18;;3724:32;3794:15;;3787:23;3775:36;;3765:64;;3825:1;3822;3815:12;3765:64;3848:7;3838:17;;;3445:416;;;;;:::o;4048:180::-;4107:6;4160:2;4148:9;4139:7;4135:23;4131:32;4128:52;;;4176:1;4173;4166:12;4128:52;-1:-1:-1;4199:23:1;;4048:180;-1:-1:-1;4048:180:1:o;4233:247::-;4292:6;4345:2;4333:9;4324:7;4320:23;4316:32;4313:52;;;4361:1;4358;4351:12;4313:52;4400:9;4387:23;4419:31;4444:5;4419:31;:::i;4667:315::-;4735:6;4743;4796:2;4784:9;4775:7;4771:23;4767:32;4764:52;;;4812:1;4809;4802:12;4764:52;4848:9;4835:23;4825:33;;4908:2;4897:9;4893:18;4880:32;4921:31;4946:5;4921:31;:::i;4987:221::-;5030:5;5083:3;5076:4;5068:6;5064:17;5060:27;5050:55;;5101:1;5098;5091:12;5050:55;5123:79;5198:3;5189:6;5176:20;5169:4;5161:6;5157:17;5123:79;:::i;5213:743::-;5320:6;5328;5336;5389:2;5377:9;5368:7;5364:23;5360:32;5357:52;;;5405:1;5402;5395:12;5357:52;5445:9;5432:23;5474:18;5515:2;5507:6;5504:14;5501:34;;;5531:1;5528;5521:12;5501:34;5554:50;5596:7;5587:6;5576:9;5572:22;5554:50;:::i;:::-;5544:60;;5657:2;5646:9;5642:18;5629:32;5613:48;;5686:2;5676:8;5673:16;5670:36;;;5702:1;5699;5692:12;5670:36;5725:52;5769:7;5758:8;5747:9;5743:24;5725:52;:::i;:::-;5715:62;;5830:2;5819:9;5815:18;5802:32;5786:48;;5859:2;5849:8;5846:16;5843:36;;;5875:1;5872;5865:12;5843:36;;5898:52;5942:7;5931:8;5920:9;5916:24;5898:52;:::i;:::-;5888:62;;;5213:743;;;;;:::o;5961:390::-;6039:6;6047;6100:2;6088:9;6079:7;6075:23;6071:32;6068:52;;;6116:1;6113;6106:12;6068:52;6156:9;6143:23;6189:18;6181:6;6178:30;6175:50;;;6221:1;6218;6211:12;6175:50;6244;6286:7;6277:6;6266:9;6262:22;6244:50;:::i;:::-;6234:60;6341:2;6326:18;;;;6313:32;;-1:-1:-1;;;;5961:390:1:o;6356:322::-;6425:6;6478:2;6466:9;6457:7;6453:23;6449:32;6446:52;;;6494:1;6491;6484:12;6446:52;6534:9;6521:23;6567:18;6559:6;6556:30;6553:50;;;6599:1;6596;6589:12;6553:50;6622;6664:7;6655:6;6644:9;6640:22;6622:50;:::i;:::-;6612:60;6356:322;-1:-1:-1;;;;6356:322:1:o;6683:960::-;7025:4;7054:3;7098:6;7091:14;7084:22;7073:9;7066:41;7143:6;7138:2;7127:9;7123:18;7116:34;7215:1;7211;7206:3;7202:11;7198:19;7190:6;7186:32;7181:2;7170:9;7166:18;7159:60;7255:6;7250:2;7239:9;7235:18;7228:34;7299:2;7293:3;7282:9;7278:19;7271:31;7325:44;7365:2;7354:9;7350:18;7342:6;7325:44;:::i;:::-;7311:58;;7418:9;7410:6;7406:22;7400:3;7389:9;7385:19;7378:51;7452:32;7477:6;7469;7452:32;:::i;:::-;7438:46;;7533:9;7525:6;7521:22;7515:3;7504:9;7500:19;7493:51;7561:32;7586:6;7578;7561:32;:::i;:::-;7553:40;;;7630:6;7624:3;7613:9;7609:19;7602:35;6683:960;;;;;;;;;;;:::o;7648:1013::-;7783:6;7791;7799;7807;7815;7868:3;7856:9;7847:7;7843:23;7839:33;7836:53;;;7885:1;7882;7875:12;7836:53;7925:9;7912:23;7954:18;7995:2;7987:6;7984:14;7981:34;;;8011:1;8008;8001:12;7981:34;8034:50;8076:7;8067:6;8056:9;8052:22;8034:50;:::i;:::-;8024:60;;8137:2;8126:9;8122:18;8109:32;8093:48;;8166:2;8156:8;8153:16;8150:36;;;8182:1;8179;8172:12;8150:36;8205:52;8249:7;8238:8;8227:9;8223:24;8205:52;:::i;:::-;8195:62;;8310:2;8299:9;8295:18;8282:32;8266:48;;8339:2;8329:8;8326:16;8323:36;;;8355:1;8352;8345:12;8323:36;8378:52;8422:7;8411:8;8400:9;8396:24;8378:52;:::i;:::-;8368:62;;8483:2;8472:9;8468:18;8455:32;8439:48;;8512:2;8502:8;8499:16;8496:36;;;8528:1;8525;8518:12;8496:36;;8551:52;8595:7;8584:8;8573:9;8569:24;8551:52;:::i;:::-;7648:1013;;;;-1:-1:-1;7648:1013:1;;8650:3;8635:19;8622:33;;7648:1013;-1:-1:-1;;;7648:1013:1:o;8874:633::-;9163:6;9156:14;9149:22;9138:9;9131:41;9237:1;9233;9228:3;9224:11;9220:19;9212:6;9208:32;9203:2;9192:9;9188:18;9181:60;9277:6;9272:2;9261:9;9257:18;9250:34;9320:3;9315:2;9304:9;9300:18;9293:31;9112:4;9347:45;9387:3;9376:9;9372:19;9364:6;9347:45;:::i;:::-;9441:9;9433:6;9429:22;9423:3;9412:9;9408:19;9401:51;9469:32;9494:6;9486;9469:32;:::i;9914:127::-;9975:10;9970:3;9966:20;9963:1;9956:31;10006:4;10003:1;9996:15;10030:4;10027:1;10020:15;10046:125;10111:9;;;10132:10;;;10129:36;;;10145:18;;:::i;10176:431::-;-1:-1:-1;;;;;10433:15:1;;;10415:34;;10485:15;;10480:2;10465:18;;10458:43;10537:2;10532;10517:18;;10510:30;;;10358:4;;10557:44;;10582:18;;10574:6;10557:44;:::i;:::-;10549:52;10176:431;-1:-1:-1;;;;;10176:431:1:o;10612:428::-;10769:3;10807:6;10801:13;10823:66;10882:6;10877:3;10870:4;10862:6;10858:17;10823:66;:::i;:::-;10958:2;10954:15;;;;-1:-1:-1;;10950:53:1;10911:16;;;;10936:68;;;11031:2;11020:14;;10612:428;-1:-1:-1;;10612:428:1:o;11045:287::-;11174:3;11212:6;11206:13;11228:66;11287:6;11282:3;11275:4;11267:6;11263:17;11228:66;:::i;:::-;11310:16;;;;;11045:287;-1:-1:-1;;11045:287:1:o;13090:380::-;13169:1;13165:12;;;;13212;;;13233:61;;13287:4;13279:6;13275:17;13265:27;;13233:61;13340:2;13332:6;13329:14;13309:18;13306:38;13303:161;;13386:10;13381:3;13377:20;13374:1;13367:31;13421:4;13418:1;13411:15;13449:4;13446:1;13439:15;13303:161;;13090:380;;;:::o;13601:545::-;13703:2;13698:3;13695:11;13692:448;;;13739:1;13764:5;13760:2;13753:17;13809:4;13805:2;13795:19;13879:2;13867:10;13863:19;13860:1;13856:27;13850:4;13846:38;13915:4;13903:10;13900:20;13897:47;;;-1:-1:-1;13938:4:1;13897:47;13993:2;13988:3;13984:12;13981:1;13977:20;13971:4;13967:31;13957:41;;14048:82;14066:2;14059:5;14056:13;14048:82;;;14111:17;;;14092:1;14081:13;14048:82;;;14052:3;;;13601:545;;;:::o;14322:1352::-;14448:3;14442:10;14475:18;14467:6;14464:30;14461:56;;;14497:18;;:::i;:::-;14526:97;14616:6;14576:38;14608:4;14602:11;14576:38;:::i;:::-;14570:4;14526:97;:::i;:::-;14678:4;;14742:2;14731:14;;14759:1;14754:663;;;;15461:1;15478:6;15475:89;;;-1:-1:-1;15530:19:1;;;15524:26;15475:89;-1:-1:-1;;14279:1:1;14275:11;;;14271:24;14267:29;14257:40;14303:1;14299:11;;;14254:57;15577:81;;14724:944;;14754:663;13548:1;13541:14;;;13585:4;13572:18;;-1:-1:-1;;14790:20:1;;;14908:236;14922:7;14919:1;14916:14;14908:236;;;15011:19;;;15005:26;14990:42;;15103:27;;;;15071:1;15059:14;;;;14938:19;;14908:236;;;14912:3;15172:6;15163:7;15160:19;15157:201;;;15233:19;;;15227:26;-1:-1:-1;;15316:1:1;15312:14;;;15328:3;15308:24;15304:37;15300:42;15285:58;15270:74;;15157:201;-1:-1:-1;;;;;15404:1:1;15388:14;;;15384:22;15371:36;;-1:-1:-1;14322:1352:1:o;16364:138::-;16443:13;;16465:31;16443:13;16465:31;:::i;:::-;16364:138;;;:::o;16507:442::-;16561:5;16614:3;16607:4;16599:6;16595:17;16591:27;16581:55;;16632:1;16629;16622:12;16581:55;16661:6;16655:13;16692:48;16708:31;16736:2;16708:31;:::i;16692:48::-;16765:2;16756:7;16749:19;16811:3;16804:4;16799:2;16791:6;16787:15;16783:26;16780:35;16777:55;;;16828:1;16825;16818:12;16777:55;16841:77;16915:2;16908:4;16899:7;16895:18;16888:4;16880:6;16876:17;16841:77;:::i;16954:1796::-;17175:6;17183;17191;17199;17207;17215;17223;17231;17239;17247;17300:3;17288:9;17279:7;17275:23;17271:33;17268:53;;;17317:1;17314;17307:12;17268:53;17340:40;17370:9;17340:40;:::i;:::-;17330:50;;17424:2;17413:9;17409:18;17403:25;17447:18;17488:2;17480:6;17477:14;17474:34;;;17504:1;17501;17494:12;17474:34;17527:61;17580:7;17571:6;17560:9;17556:22;17527:61;:::i;:::-;17517:71;;17634:2;17623:9;17619:18;17613:25;17597:41;;17663:2;17653:8;17650:16;17647:36;;;17679:1;17676;17669:12;17647:36;17702:63;17757:7;17746:8;17735:9;17731:24;17702:63;:::i;:::-;17692:73;;17811:2;17800:9;17796:18;17790:25;17774:41;;17840:2;17830:8;17827:16;17824:36;;;17856:1;17853;17846:12;17824:36;17879:63;17934:7;17923:8;17912:9;17908:24;17879:63;:::i;:::-;17869:73;;17982:3;17971:9;17967:19;17961:26;17951:36;;18033:3;18022:9;18018:19;18012:26;17996:42;;18063:2;18053:8;18050:16;18047:36;;;18079:1;18076;18069:12;18047:36;18102:63;18157:7;18146:8;18135:9;18131:24;18102:63;:::i;:::-;18092:73;;18211:3;18200:9;18196:19;18190:26;18174:42;;18241:2;18231:8;18228:16;18225:36;;;18257:1;18254;18247:12;18225:36;18280:63;18335:7;18324:8;18313:9;18309:24;18280:63;:::i;:::-;18270:73;;18389:3;18378:9;18374:19;18368:26;18352:42;;18419:2;18409:8;18406:16;18403:36;;;18435:1;18432;18425:12;18403:36;18458:63;18513:7;18502:8;18491:9;18487:24;18458:63;:::i;:::-;18448:73;;18567:3;18556:9;18552:19;18546:26;18530:42;;18597:2;18587:8;18584:16;18581:36;;;18613:1;18610;18603:12;18581:36;;18636:63;18691:7;18680:8;18669:9;18665:24;18636:63;:::i;:::-;18626:73;;;18739:3;18728:9;18724:19;18718:26;18708:36;;16954:1796;;;;;;;;;;;;;:::o;19095:127::-;19156:10;19151:3;19147:20;19144:1;19137:31;19187:4;19184:1;19177:15;19211:4;19208:1;19201:15;19227:842;19355:3;19384:1;19417:6;19411:13;19447:36;19473:9;19447:36;:::i;:::-;19502:1;19519:18;;;19546:133;;;;19693:1;19688:356;;;;19512:532;;19546:133;-1:-1:-1;;19579:24:1;;19567:37;;19652:14;;19645:22;19633:35;;19624:45;;;-1:-1:-1;19546:133:1;;19688:356;19719:6;19716:1;19709:17;19749:4;19794:2;19791:1;19781:16;19819:1;19833:165;19847:6;19844:1;19841:13;19833:165;;;19925:14;;19912:11;;;19905:35;19968:16;;;;19862:10;;19833:165;;;19837:3;;;20027:6;20022:3;20018:16;20011:23;;19512:532;-1:-1:-1;20060:3:1;;19227:842;-1:-1:-1;;;;;;19227:842:1:o;20074:135::-;20113:3;20134:17;;;20131:43;;20154:18;;:::i;:::-;-1:-1:-1;20201:1:1;20190:13;;20074:135::o;22610:812::-;23021:25;23016:3;23009:38;22991:3;23076:6;23070:13;23092:75;23160:6;23155:2;23150:3;23146:12;23139:4;23131:6;23127:17;23092:75;:::i;:::-;-1:-1:-1;;;23226:2:1;23186:16;;;23218:11;;;23211:40;23276:13;;23298:76;23276:13;23360:2;23352:11;;23345:4;23333:17;;23298:76;:::i;:::-;23394:17;23413:2;23390:26;;22610:812;-1:-1:-1;;;;22610:812:1:o;23427:168::-;23500:9;;;23531;;23548:15;;;23542:22;;23528:37;23518:71;;23569:18;;:::i;23600:136::-;23639:3;23667:5;23657:39;;23676:18;;:::i;:::-;-1:-1:-1;;;23712:18:1;;23600:136::o

Swarm Source

ipfs://ce1f539dd601a1670ede1c7e8c1277032e1a5eb4b8c7aa8ceed8283947b613a8
Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Block Uncle Number Difficulty Gas Used Reward
Loading