ETH Price: $1,790.10 (+13.04%)

Contract

0x69A9F43Af7F87697231BE5ee898E2F58196B6A65

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
EASAttestor

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 13 : EASAttestor.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;

import { IEAS, AttestationRequest, RevocationRequest } from "@ethereum-attestation-service/eas-contracts/contracts/IEAS.sol";
import { ECDSA } from "openzeppelin/utils/cryptography/ECDSA.sol";
import { Initializable } from "openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol";
import { OwnableUpgradeable } from "openzeppelin-contracts-upgradeable/contracts/access/OwnableUpgradeable.sol";

/**
 * @title EAS Attestor Contract
 * @dev Extends Initializable, OwnableUpgradeable
 * @notice This contract is used for issuing and revoking EAS attestations.
 * It allows setting approved schemas and signers for attestation requests.
 */
contract EASAttestor is Initializable, OwnableUpgradeable {
  using ECDSA for bytes32;

  /// @notice The EAS interface used for attestation operations.
  IEAS public eas;

  /// @notice The address authorized to sign attestation requests.
  address public signer;

  /// @notice Mapping of schema identifiers to their approval status.
  mapping(bytes32 schemas => bool authorized) public authorizedSchemas;

  /// @dev Error thrown when a signature is invalid.
  error InvalidSignature();

  /// @dev Error thrown when a schema is not approved.
  error InvalidSchema();

  /// @dev Error thrown when the attestation fee is insufficient.
  error InvalidAttestationFee();

  /// @dev Error thrown when array lengths do not match in batch operations.
  error ArrayLengthMismatch();

  /**
   * @notice Initializes the contract with the EAS interface and signer address.
   * @param _eas The address of the EAS contract.
   * @param _signer The address authorized to sign attestation requests.
   */
  function initialize(address _eas, address _signer) public initializer {
    __Ownable_init();
    eas = IEAS(_eas);
    signer = _signer;
  }

  /**
   * @notice Sets the signer address authorized to sign attestation requests.
   * @param _signer The address to set as the signer.
   */
  function setSigner(address _signer) public onlyOwner {
    signer = _signer;
  }

  /**
   * @notice Authorizes or disapproves a schema for attestation.
   * @param schema The schema identifier.
   * @param approved The approval status to set for the schema.
   */
  function setAuthorizedSchema(bytes32 schema, bool approved) public onlyOwner {
    authorizedSchemas[schema] = approved;
  }

  /**
   * @notice Issues an attestation with the provided request and signature.
   * @param attestationRequest The attestation request data.
   * @param signature The signature authorizing the attestation.
   */
  function attest(AttestationRequest memory attestationRequest, bytes memory signature) public payable {
    if (msg.value < attestationRequest.data.value) revert InvalidAttestationFee();
    if (!authorizedSchemas[attestationRequest.schema]) revert InvalidSchema();

    _verifySignature(attestationRequest, signature);

    attestationRequest.data.value = 0;
    eas.attest(attestationRequest);
  }

  /**
   * @notice Issues multiple attestations in a batch.
   * @param attestationRequests An array of attestation request data.
   * @param signatures An array of signatures authorizing the attestations.
   */
  function batchAttest(AttestationRequest[] calldata attestationRequests, bytes[] memory signatures) external payable {
    if (attestationRequests.length != signatures.length) revert ArrayLengthMismatch();
    if (msg.value < _totalAttestationFee(attestationRequests)) revert InvalidAttestationFee();

    for (uint256 i = 0; i < attestationRequests.length; i++) {
      attest(attestationRequests[i], signatures[i]);
    }
  }

  /**
   * @notice Revokes an attestation with the provided revocation request.
   * @param revocationRequest The revocation request data.
   */
  function revoke(RevocationRequest calldata revocationRequest) public {
    eas.revoke(revocationRequest);
  }

  /**
   * @notice Revokes multiple attestations in a batch.
   * @param revocationRequests An array of revocation request data.
   */
  function batchRevoke(RevocationRequest[] calldata revocationRequests) public {
    for (uint256 i = 0; i < revocationRequests.length; i++) {
      eas.revoke(revocationRequests[i]);
    }
  }

  /**
   * @notice Updates an attestation by revoking the old one and issuing a new one.
   * @param revocationRequest The revocation request for the old attestation.
   * @param attestationRequest The attestation request for the new attestation.
   * @param signature The signature authorizing the new attestation.
   */
  function update(
    RevocationRequest calldata revocationRequest,
    AttestationRequest calldata attestationRequest,
    bytes memory signature
  ) public payable {
    revoke(revocationRequest);
    attest(attestationRequest, signature);
  }

  /**
   * @notice Updates multiple attestations in a batch by revoking old ones and issuing new ones.
   * @param revocationRequests An array of revocation request data for the old attestations.
   * @param attestationRequests An array of attestation request data for the new attestations.
   * @param signatures An array of signatures authorizing the new attestations.
   */
  function batchUpdate(
    RevocationRequest[] calldata revocationRequests,
    AttestationRequest[] calldata attestationRequests,
    bytes[] memory signatures
  ) external payable {
    if (revocationRequests.length != attestationRequests.length || attestationRequests.length != signatures.length)
      revert ArrayLengthMismatch();
    if (msg.value < _totalAttestationFee(attestationRequests)) revert InvalidAttestationFee();

    for (uint256 i = 0; i < revocationRequests.length; i++) {
      update(revocationRequests[i], attestationRequests[i], signatures[i]);
    }
  }

  /**
   * @notice Withdraws the contract's balance to the specified receiver.
   * @param receiver The address to receive the withdrawn funds.
   */
  function withdraw(address payable receiver) external onlyOwner {
    receiver.transfer(address(this).balance);
  }

  /**
   * @dev Verifies the signature of an attestation request.
   * @param request The attestation request data.
   * @param signature The signature to verify.
   */
  function _verifySignature(AttestationRequest memory request, bytes memory signature) internal view {
    bytes32 messageHash = keccak256(abi.encode(request));
    if (messageHash.toEthSignedMessageHash().recover(signature) != signer) revert InvalidSignature();
  }

  /**
   * @dev Calculates the total attestation fee for an array of attestation requests.
   * @param attestationRequests An array of attestation request data.
   * @return totalAttestationFee The total attestation fee.
   */
  function _totalAttestationFee(
    AttestationRequest[] calldata attestationRequests
  ) internal pure returns (uint256 totalAttestationFee) {
    for (uint256 i = 0; i < attestationRequests.length; i++) {
      totalAttestationFee += attestationRequests[i].data.value;
    }
  }
}

File 2 of 13 : Common.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// A representation of an empty/uninitialized UID.
bytes32 constant EMPTY_UID = 0;

// A zero expiration represents an non-expiring attestation.
uint64 constant NO_EXPIRATION_TIME = 0;

error AccessDenied();
error DeadlineExpired();
error InvalidEAS();
error InvalidLength();
error InvalidSignature();
error NotFound();

/// @notice A struct representing ECDSA signature data.
struct Signature {
    uint8 v; // The recovery ID.
    bytes32 r; // The x-coordinate of the nonce R.
    bytes32 s; // The signature data.
}

/// @notice A struct representing a single attestation.
struct Attestation {
    bytes32 uid; // A unique identifier of the attestation.
    bytes32 schema; // The unique identifier of the schema.
    uint64 time; // The time when the attestation was created (Unix timestamp).
    uint64 expirationTime; // The time when the attestation expires (Unix timestamp).
    uint64 revocationTime; // The time when the attestation was revoked (Unix timestamp).
    bytes32 refUID; // The UID of the related attestation.
    address recipient; // The recipient of the attestation.
    address attester; // The attester/sender of the attestation.
    bool revocable; // Whether the attestation is revocable.
    bytes data; // Custom attestation data.
}

/// @notice A helper function to work with unchecked iterators in loops.
function uncheckedInc(uint256 i) pure returns (uint256 j) {
    unchecked {
        j = i + 1;
    }
}

File 3 of 13 : IEAS.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import { ISchemaRegistry } from "./ISchemaRegistry.sol";
import { Attestation, Signature } from "./Common.sol";

/// @notice A struct representing the arguments of the attestation request.
struct AttestationRequestData {
    address recipient; // The recipient of the attestation.
    uint64 expirationTime; // The time when the attestation expires (Unix timestamp).
    bool revocable; // Whether the attestation is revocable.
    bytes32 refUID; // The UID of the related attestation.
    bytes data; // Custom attestation data.
    uint256 value; // An explicit ETH amount to send to the resolver. This is important to prevent accidental user errors.
}

/// @notice A struct representing the full arguments of the attestation request.
struct AttestationRequest {
    bytes32 schema; // The unique identifier of the schema.
    AttestationRequestData data; // The arguments of the attestation request.
}

/// @notice A struct representing the full arguments of the full delegated attestation request.
struct DelegatedAttestationRequest {
    bytes32 schema; // The unique identifier of the schema.
    AttestationRequestData data; // The arguments of the attestation request.
    Signature signature; // The ECDSA signature data.
    address attester; // The attesting account.
    uint64 deadline; // The deadline of the signature/request.
}

/// @notice A struct representing the full arguments of the multi attestation request.
struct MultiAttestationRequest {
    bytes32 schema; // The unique identifier of the schema.
    AttestationRequestData[] data; // The arguments of the attestation request.
}

/// @notice A struct representing the full arguments of the delegated multi attestation request.
struct MultiDelegatedAttestationRequest {
    bytes32 schema; // The unique identifier of the schema.
    AttestationRequestData[] data; // The arguments of the attestation requests.
    Signature[] signatures; // The ECDSA signatures data. Please note that the signatures are assumed to be signed with increasing nonces.
    address attester; // The attesting account.
    uint64 deadline; // The deadline of the signature/request.
}

/// @notice A struct representing the arguments of the revocation request.
struct RevocationRequestData {
    bytes32 uid; // The UID of the attestation to revoke.
    uint256 value; // An explicit ETH amount to send to the resolver. This is important to prevent accidental user errors.
}

/// @notice A struct representing the full arguments of the revocation request.
struct RevocationRequest {
    bytes32 schema; // The unique identifier of the schema.
    RevocationRequestData data; // The arguments of the revocation request.
}

/// @notice A struct representing the arguments of the full delegated revocation request.
struct DelegatedRevocationRequest {
    bytes32 schema; // The unique identifier of the schema.
    RevocationRequestData data; // The arguments of the revocation request.
    Signature signature; // The ECDSA signature data.
    address revoker; // The revoking account.
    uint64 deadline; // The deadline of the signature/request.
}

/// @notice A struct representing the full arguments of the multi revocation request.
struct MultiRevocationRequest {
    bytes32 schema; // The unique identifier of the schema.
    RevocationRequestData[] data; // The arguments of the revocation request.
}

/// @notice A struct representing the full arguments of the delegated multi revocation request.
struct MultiDelegatedRevocationRequest {
    bytes32 schema; // The unique identifier of the schema.
    RevocationRequestData[] data; // The arguments of the revocation requests.
    Signature[] signatures; // The ECDSA signatures data. Please note that the signatures are assumed to be signed with increasing nonces.
    address revoker; // The revoking account.
    uint64 deadline; // The deadline of the signature/request.
}

/// @title IEAS
/// @notice EAS - Ethereum Attestation Service interface.
interface IEAS {
    /// @notice Emitted when an attestation has been made.
    /// @param recipient The recipient of the attestation.
    /// @param attester The attesting account.
    /// @param uid The UID the revoked attestation.
    /// @param schemaUID The UID of the schema.
    event Attested(address indexed recipient, address indexed attester, bytes32 uid, bytes32 indexed schemaUID);

    /// @notice Emitted when an attestation has been revoked.
    /// @param recipient The recipient of the attestation.
    /// @param attester The attesting account.
    /// @param schemaUID The UID of the schema.
    /// @param uid The UID the revoked attestation.
    event Revoked(address indexed recipient, address indexed attester, bytes32 uid, bytes32 indexed schemaUID);

    /// @notice Emitted when a data has been timestamped.
    /// @param data The data.
    /// @param timestamp The timestamp.
    event Timestamped(bytes32 indexed data, uint64 indexed timestamp);

    /// @notice Emitted when a data has been revoked.
    /// @param revoker The address of the revoker.
    /// @param data The data.
    /// @param timestamp The timestamp.
    event RevokedOffchain(address indexed revoker, bytes32 indexed data, uint64 indexed timestamp);

    /// @notice Returns the address of the global schema registry.
    /// @return The address of the global schema registry.
    function getSchemaRegistry() external view returns (ISchemaRegistry);

    /// @notice Attests to a specific schema.
    /// @param request The arguments of the attestation request.
    /// @return The UID of the new attestation.
    ///
    /// Example:
    ///     attest({
    ///         schema: "0facc36681cbe2456019c1b0d1e7bedd6d1d40f6f324bf3dd3a4cef2999200a0",
    ///         data: {
    ///             recipient: "0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf",
    ///             expirationTime: 0,
    ///             revocable: true,
    ///             refUID: "0x0000000000000000000000000000000000000000000000000000000000000000",
    ///             data: "0xF00D",
    ///             value: 0
    ///         }
    ///     })
    function attest(AttestationRequest calldata request) external payable returns (bytes32);

    /// @notice Attests to a specific schema via the provided ECDSA signature.
    /// @param delegatedRequest The arguments of the delegated attestation request.
    /// @return The UID of the new attestation.
    ///
    /// Example:
    ///     attestByDelegation({
    ///         schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
    ///         data: {
    ///             recipient: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266',
    ///             expirationTime: 1673891048,
    ///             revocable: true,
    ///             refUID: '0x0000000000000000000000000000000000000000000000000000000000000000',
    ///             data: '0x1234',
    ///             value: 0
    ///         },
    ///         signature: {
    ///             v: 28,
    ///             r: '0x148c...b25b',
    ///             s: '0x5a72...be22'
    ///         },
    ///         attester: '0xc5E8740aD971409492b1A63Db8d83025e0Fc427e',
    ///         deadline: 1673891048
    ///     })
    function attestByDelegation(
        DelegatedAttestationRequest calldata delegatedRequest
    ) external payable returns (bytes32);

    /// @notice Attests to multiple schemas.
    /// @param multiRequests The arguments of the multi attestation requests. The requests should be grouped by distinct
    ///     schema ids to benefit from the best batching optimization.
    /// @return The UIDs of the new attestations.
    ///
    /// Example:
    ///     multiAttest([{
    ///         schema: '0x33e9094830a5cba5554d1954310e4fbed2ef5f859ec1404619adea4207f391fd',
    ///         data: [{
    ///             recipient: '0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf',
    ///             expirationTime: 1673891048,
    ///             revocable: true,
    ///             refUID: '0x0000000000000000000000000000000000000000000000000000000000000000',
    ///             data: '0x1234',
    ///             value: 1000
    ///         },
    ///         {
    ///             recipient: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266',
    ///             expirationTime: 0,
    ///             revocable: false,
    ///             refUID: '0x480df4a039efc31b11bfdf491b383ca138b6bde160988222a2a3509c02cee174',
    ///             data: '0x00',
    ///             value: 0
    ///         }],
    ///     },
    ///     {
    ///         schema: '0x5ac273ce41e3c8bfa383efe7c03e54c5f0bff29c9f11ef6ffa930fc84ca32425',
    ///         data: [{
    ///             recipient: '0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf',
    ///             expirationTime: 0,
    ///             revocable: true,
    ///             refUID: '0x75bf2ed8dca25a8190c50c52db136664de25b2449535839008ccfdab469b214f',
    ///             data: '0x12345678',
    ///             value: 0
    ///         },
    ///     }])
    function multiAttest(MultiAttestationRequest[] calldata multiRequests) external payable returns (bytes32[] memory);

    /// @notice Attests to multiple schemas using via provided ECDSA signatures.
    /// @param multiDelegatedRequests The arguments of the delegated multi attestation requests. The requests should be
    ///     grouped by distinct schema ids to benefit from the best batching optimization.
    /// @return The UIDs of the new attestations.
    ///
    /// Example:
    ///     multiAttestByDelegation([{
    ///         schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
    ///         data: [{
    ///             recipient: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266',
    ///             expirationTime: 1673891048,
    ///             revocable: true,
    ///             refUID: '0x0000000000000000000000000000000000000000000000000000000000000000',
    ///             data: '0x1234',
    ///             value: 0
    ///         },
    ///         {
    ///             recipient: '0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf',
    ///             expirationTime: 0,
    ///             revocable: false,
    ///             refUID: '0x0000000000000000000000000000000000000000000000000000000000000000',
    ///             data: '0x00',
    ///             value: 0
    ///         }],
    ///         signatures: [{
    ///             v: 28,
    ///             r: '0x148c...b25b',
    ///             s: '0x5a72...be22'
    ///         },
    ///         {
    ///             v: 28,
    ///             r: '0x487s...67bb',
    ///             s: '0x12ad...2366'
    ///         }],
    ///         attester: '0x1D86495b2A7B524D747d2839b3C645Bed32e8CF4',
    ///         deadline: 1673891048
    ///     }])
    function multiAttestByDelegation(
        MultiDelegatedAttestationRequest[] calldata multiDelegatedRequests
    ) external payable returns (bytes32[] memory);

    /// @notice Revokes an existing attestation to a specific schema.
    /// @param request The arguments of the revocation request.
    ///
    /// Example:
    ///     revoke({
    ///         schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
    ///         data: {
    ///             uid: '0x101032e487642ee04ee17049f99a70590c735b8614079fc9275f9dd57c00966d',
    ///             value: 0
    ///         }
    ///     })
    function revoke(RevocationRequest calldata request) external payable;

    /// @notice Revokes an existing attestation to a specific schema via the provided ECDSA signature.
    /// @param delegatedRequest The arguments of the delegated revocation request.
    ///
    /// Example:
    ///     revokeByDelegation({
    ///         schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
    ///         data: {
    ///             uid: '0xcbbc12102578c642a0f7b34fe7111e41afa25683b6cd7b5a14caf90fa14d24ba',
    ///             value: 0
    ///         },
    ///         signature: {
    ///             v: 27,
    ///             r: '0xb593...7142',
    ///             s: '0x0f5b...2cce'
    ///         },
    ///         revoker: '0x244934dd3e31bE2c81f84ECf0b3E6329F5381992',
    ///         deadline: 1673891048
    ///     })
    function revokeByDelegation(DelegatedRevocationRequest calldata delegatedRequest) external payable;

    /// @notice Revokes existing attestations to multiple schemas.
    /// @param multiRequests The arguments of the multi revocation requests. The requests should be grouped by distinct
    ///     schema ids to benefit from the best batching optimization.
    ///
    /// Example:
    ///     multiRevoke([{
    ///         schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
    ///         data: [{
    ///             uid: '0x211296a1ca0d7f9f2cfebf0daaa575bea9b20e968d81aef4e743d699c6ac4b25',
    ///             value: 1000
    ///         },
    ///         {
    ///             uid: '0xe160ac1bd3606a287b4d53d5d1d6da5895f65b4b4bab6d93aaf5046e48167ade',
    ///             value: 0
    ///         }],
    ///     },
    ///     {
    ///         schema: '0x5ac273ce41e3c8bfa383efe7c03e54c5f0bff29c9f11ef6ffa930fc84ca32425',
    ///         data: [{
    ///             uid: '0x053d42abce1fd7c8fcddfae21845ad34dae287b2c326220b03ba241bc5a8f019',
    ///             value: 0
    ///         },
    ///     }])
    function multiRevoke(MultiRevocationRequest[] calldata multiRequests) external payable;

    /// @notice Revokes existing attestations to multiple schemas via provided ECDSA signatures.
    /// @param multiDelegatedRequests The arguments of the delegated multi revocation attestation requests. The requests
    ///     should be grouped by distinct schema ids to benefit from the best batching optimization.
    ///
    /// Example:
    ///     multiRevokeByDelegation([{
    ///         schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc',
    ///         data: [{
    ///             uid: '0x211296a1ca0d7f9f2cfebf0daaa575bea9b20e968d81aef4e743d699c6ac4b25',
    ///             value: 1000
    ///         },
    ///         {
    ///             uid: '0xe160ac1bd3606a287b4d53d5d1d6da5895f65b4b4bab6d93aaf5046e48167ade',
    ///             value: 0
    ///         }],
    ///         signatures: [{
    ///             v: 28,
    ///             r: '0x148c...b25b',
    ///             s: '0x5a72...be22'
    ///         },
    ///         {
    ///             v: 28,
    ///             r: '0x487s...67bb',
    ///             s: '0x12ad...2366'
    ///         }],
    ///         revoker: '0x244934dd3e31bE2c81f84ECf0b3E6329F5381992',
    ///         deadline: 1673891048
    ///     }])
    function multiRevokeByDelegation(
        MultiDelegatedRevocationRequest[] calldata multiDelegatedRequests
    ) external payable;

    /// @notice Timestamps the specified bytes32 data.
    /// @param data The data to timestamp.
    /// @return The timestamp the data was timestamped with.
    function timestamp(bytes32 data) external returns (uint64);

    /// @notice Timestamps the specified multiple bytes32 data.
    /// @param data The data to timestamp.
    /// @return The timestamp the data was timestamped with.
    function multiTimestamp(bytes32[] calldata data) external returns (uint64);

    /// @notice Revokes the specified bytes32 data.
    /// @param data The data to timestamp.
    /// @return The timestamp the data was revoked with.
    function revokeOffchain(bytes32 data) external returns (uint64);

    /// @notice Revokes the specified multiple bytes32 data.
    /// @param data The data to timestamp.
    /// @return The timestamp the data was revoked with.
    function multiRevokeOffchain(bytes32[] calldata data) external returns (uint64);

    /// @notice Returns an existing attestation by UID.
    /// @param uid The UID of the attestation to retrieve.
    /// @return The attestation data members.
    function getAttestation(bytes32 uid) external view returns (Attestation memory);

    /// @notice Checks whether an attestation exists.
    /// @param uid The UID of the attestation to retrieve.
    /// @return Whether an attestation exists.
    function isAttestationValid(bytes32 uid) external view returns (bool);

    /// @notice Returns the timestamp that the specified data was timestamped with.
    /// @param data The data to query.
    /// @return The timestamp the data was timestamped with.
    function getTimestamp(bytes32 data) external view returns (uint64);

    /// @notice Returns the timestamp that the specified data was timestamped with.
    /// @param data The data to query.
    /// @return The timestamp the data was timestamped with.
    function getRevokeOffchain(address revoker, bytes32 data) external view returns (uint64);
}

File 4 of 13 : ISchemaRegistry.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import { ISchemaResolver } from "./resolver/ISchemaResolver.sol";

/// @notice A struct representing a record for a submitted schema.
struct SchemaRecord {
    bytes32 uid; // The unique identifier of the schema.
    ISchemaResolver resolver; // Optional schema resolver.
    bool revocable; // Whether the schema allows revocations explicitly.
    string schema; // Custom specification of the schema (e.g., an ABI).
}

/// @title ISchemaRegistry
/// @notice The interface of global attestation schemas for the Ethereum Attestation Service protocol.
interface ISchemaRegistry {
    /// @notice Emitted when a new schema has been registered
    /// @param uid The schema UID.
    /// @param registerer The address of the account used to register the schema.
    /// @param schema The schema data.
    event Registered(bytes32 indexed uid, address indexed registerer, SchemaRecord schema);

    /// @notice Submits and reserves a new schema
    /// @param schema The schema data schema.
    /// @param resolver An optional schema resolver.
    /// @param revocable Whether the schema allows revocations explicitly.
    /// @return The UID of the new schema.
    function register(string calldata schema, ISchemaResolver resolver, bool revocable) external returns (bytes32);

    /// @notice Returns an existing schema by UID
    /// @param uid The UID of the schema to retrieve.
    /// @return The schema data members.
    function getSchema(bytes32 uid) external view returns (SchemaRecord memory);
}

File 5 of 13 : ISchemaResolver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import { Attestation } from "../Common.sol";

/// @title ISchemaResolver
/// @notice The interface of an optional schema resolver.
interface ISchemaResolver {
    /// @notice Checks if the resolver can be sent ETH.
    /// @return Whether the resolver supports ETH transfers.
    function isPayable() external pure returns (bool);

    /// @notice Processes an attestation and verifies whether it's valid.
    /// @param attestation The new attestation.
    /// @return Whether the attestation is valid.
    function attest(Attestation calldata attestation) external payable returns (bool);

    /// @notice Processes multiple attestations and verifies whether they are valid.
    /// @param attestations The new attestations.
    /// @param values Explicit ETH amounts which were sent with each attestation.
    /// @return Whether all the attestations are valid.
    function multiAttest(
        Attestation[] calldata attestations,
        uint256[] calldata values
    ) external payable returns (bool);

    /// @notice Processes an attestation revocation and verifies if it can be revoked.
    /// @param attestation The existing attestation to be revoked.
    /// @return Whether the attestation can be revoked.
    function revoke(Attestation calldata attestation) external payable returns (bool);

    /// @notice Processes revocation of multiple attestation and verifies they can be revoked.
    /// @param attestations The existing attestations to be revoked.
    /// @param values Explicit ETH amounts which were sent with each revocation.
    /// @return Whether the attestations can be revoked.
    function multiRevoke(
        Attestation[] calldata attestations,
        uint256[] calldata values
    ) external payable returns (bool);
}

File 6 of 13 : OwnableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

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

File 7 of 13 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.2;

import "../../utils/AddressUpgradeable.sol";

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

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

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

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

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

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

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

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

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

File 8 of 13 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

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

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

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

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

File 10 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32")
            mstore(0x1c, hash)
            message := keccak256(0x00, 0x3c)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}

File 11 of 13 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 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 256, 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 << 3) < value ? 1 : 0);
        }
    }
}

File 12 of 13 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

File 13 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @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 `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"name":"ArrayLengthMismatch","type":"error"},{"inputs":[],"name":"InvalidAttestationFee","type":"error"},{"inputs":[],"name":"InvalidSchema","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"bytes32","name":"refUID","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct AttestationRequestData","name":"data","type":"tuple"}],"internalType":"struct AttestationRequest","name":"attestationRequest","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"attest","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"schemas","type":"bytes32"}],"name":"authorizedSchemas","outputs":[{"internalType":"bool","name":"authorized","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"bytes32","name":"refUID","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct AttestationRequestData","name":"data","type":"tuple"}],"internalType":"struct AttestationRequest[]","name":"attestationRequests","type":"tuple[]"},{"internalType":"bytes[]","name":"signatures","type":"bytes[]"}],"name":"batchAttest","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"uid","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct RevocationRequestData","name":"data","type":"tuple"}],"internalType":"struct RevocationRequest[]","name":"revocationRequests","type":"tuple[]"}],"name":"batchRevoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"uid","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct RevocationRequestData","name":"data","type":"tuple"}],"internalType":"struct RevocationRequest[]","name":"revocationRequests","type":"tuple[]"},{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"bytes32","name":"refUID","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct AttestationRequestData","name":"data","type":"tuple"}],"internalType":"struct AttestationRequest[]","name":"attestationRequests","type":"tuple[]"},{"internalType":"bytes[]","name":"signatures","type":"bytes[]"}],"name":"batchUpdate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"eas","outputs":[{"internalType":"contract IEAS","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_eas","type":"address"},{"internalType":"address","name":"_signer","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"uid","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct RevocationRequestData","name":"data","type":"tuple"}],"internalType":"struct RevocationRequest","name":"revocationRequest","type":"tuple"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setAuthorizedSchema","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"uid","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct RevocationRequestData","name":"data","type":"tuple"}],"internalType":"struct RevocationRequest","name":"revocationRequest","type":"tuple"},{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"bytes32","name":"refUID","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct AttestationRequestData","name":"data","type":"tuple"}],"internalType":"struct AttestationRequest","name":"attestationRequest","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"update","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"receiver","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b506125a1806100206000396000f3fe6080604052600436106100f35760003560e01c8063715018a61161008a578063afef95e811610059578063afef95e8146102df578063db9c3f48146102fb578063f2fde38b14610317578063f5db14ce14610340576100f3565b8063715018a6146102495780638150864d146102605780638da5cb5b1461028b5780639ed458c5146102b6576100f3565b806346926267116100c657806346926267146101a5578063485cc955146101ce57806351cff8d9146101f75780636c19e78314610220576100f3565b80630256798e146100f85780630b1b4bec146101355780631a0df4e514610151578063238ac9331461017a575b600080fd5b34801561010457600080fd5b5061011f600480360381019061011a91906112b6565b61035c565b60405161012c91906112fe565b60405180910390f35b61014f600480360381019061014a91906114a2565b61037c565b005b34801561015d57600080fd5b506101786004803603810190610173919061158d565b61039d565b005b34801561018657600080fd5b5061018f610468565b60405161019c919061161b565b60405180910390f35b3480156101b157600080fd5b506101cc60048036038101906101c79190611636565b61048e565b005b3480156101da57600080fd5b506101f560048036038101906101f0919061168f565b61051e565b005b34801561020357600080fd5b5061021e6004803603810190610219919061170d565b6106e0565b005b34801561022c57600080fd5b506102476004803603810190610242919061173a565b610732565b005b34801561025557600080fd5b5061025e61077e565b005b34801561026c57600080fd5b50610275610792565b60405161028291906117c6565b60405180910390f35b34801561029757600080fd5b506102a06107b8565b6040516102ad919061161b565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d8919061180d565b6107e2565b005b6102f960048036038101906102f49190611984565b610819565b005b61031560048036038101906103109190611ba8565b610911565b005b34801561032357600080fd5b5061033e6004803603810190610339919061173a565b610a6a565b005b61035a60048036038101906103559190611c20565b610aed565b005b60676020528060005260406000206000915054906101000a900460ff1681565b6103858361048e565b6103988261039290611cd1565b82610911565b505050565b60005b8282905081101561046357606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663469262678484848181106103fc576103fb611ce4565b5b9050606002016040518263ffffffff1660e01b815260040161041e9190611de8565b600060405180830381600087803b15801561043857600080fd5b505af115801561044c573d6000803e3d6000fd5b50505050808061045b90611e32565b9150506103a0565b505050565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166346926267826040518263ffffffff1660e01b81526004016104e99190611de8565b600060405180830381600087803b15801561050357600080fd5b505af1158015610517573d6000803e3d6000fd5b5050505050565b60008060019054906101000a900460ff1615905080801561054f5750600160008054906101000a900460ff1660ff16105b8061057c575061055e30610c0a565b15801561057b5750600160008054906101000a900460ff1660ff16145b5b6105bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b290611efd565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156105f8576001600060016101000a81548160ff0219169083151502179055505b610600610c2d565b82606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080156106db5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516106d29190611f65565b60405180910390a15b505050565b6106e8610c86565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561072e573d6000803e3d6000fd5b5050565b61073a610c86565b80606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610786610c86565b6107906000610d04565b565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107ea610c86565b806067600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80518383905014610856576040517fa24a13a600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108608383610dca565b341015610899576040517f30c00ff700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8383905081101561090b576108f88484838181106108bd576108bc611ce4565b5b90506020028101906108cf9190611f85565b6108d890611cd1565b8383815181106108eb576108ea611ce4565b5b6020026020010151610911565b808061090390611e32565b91505061089c565b50505050565b816020015160a00151341015610953576040517f30c00ff700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606760008360000151815260200190815260200160002060009054906101000a900460ff166109ae576040517fbf37b20e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109b88282610e3c565b6000826020015160a0018181525050606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f17325e7836040518263ffffffff1660e01b8152600401610a22919061211f565b6020604051808303816000875af1158015610a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a659190612156565b505050565b610a72610c86565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad8906121f5565b60405180910390fd5b610aea81610d04565b50565b8282905085859050141580610b06575080518383905014155b15610b3d576040517fa24a13a600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b478383610dca565b341015610b80576040517f30c00ff700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b85859050811015610c0257610bef868683818110610ba457610ba3611ce4565b5b905060600201858584818110610bbd57610bbc611ce4565b5b9050602002810190610bcf9190611f85565b848481518110610be257610be1611ce4565b5b602002602001015161037c565b8080610bfa90611e32565b915050610b83565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390612287565b60405180910390fd5b610c84610f0d565b565b610c8e610f6e565b73ffffffffffffffffffffffffffffffffffffffff16610cac6107b8565b73ffffffffffffffffffffffffffffffffffffffff1614610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf9906122f3565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600090505b83839050811015610e3557838382818110610df057610def611ce4565b5b9050602002810190610e029190611f85565b8060200190610e119190612313565b60a0013582610e20919061233b565b91508080610e2d90611e32565b915050610dd2565b5092915050565b600082604051602001610e4f919061211f565b604051602081830303815290604052805190602001209050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ebb83610ead84610f76565b610fac90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614610f08576040517f8baa579f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600060019054906101000a900460ff16610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390612287565b60405180910390fd5b610f6c610f67610f6e565b610d04565b565b600033905090565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b6000806000610fbb8585610fd3565b91509150610fc881611024565b819250505092915050565b60008060418351036110145760008060006020860151925060408601519150606086015160001a90506110088782858561118a565b9450945050505061101d565b60006002915091505b9250929050565b600060048111156110385761103761236f565b5b81600481111561104b5761104a61236f565b5b031561118757600160048111156110655761106461236f565b5b8160048111156110785761107761236f565b5b036110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af906123ea565b60405180910390fd5b600260048111156110cc576110cb61236f565b5b8160048111156110df576110de61236f565b5b0361111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690612456565b60405180910390fd5b600360048111156111335761113261236f565b5b8160048111156111465761114561236f565b5b03611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906124e8565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156111c5576000600391509150611263565b6000600187878787604051600081526020016040526040516111ea9493929190612526565b6020604051602081039080840390855afa15801561120c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361125a57600060019250925050611263565b80600092509250505b94509492505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61129381611280565b811461129e57600080fd5b50565b6000813590506112b08161128a565b92915050565b6000602082840312156112cc576112cb611276565b5b60006112da848285016112a1565b91505092915050565b60008115159050919050565b6112f8816112e3565b82525050565b600060208201905061131360008301846112ef565b92915050565b600080fd5b60006060828403121561133457611333611319565b5b81905092915050565b60006040828403121561135357611352611319565b5b81905092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6113af82611366565b810181811067ffffffffffffffff821117156113ce576113cd611377565b5b80604052505050565b60006113e161126c565b90506113ed82826113a6565b919050565b600067ffffffffffffffff82111561140d5761140c611377565b5b61141682611366565b9050602081019050919050565b82818337600083830152505050565b6000611445611440846113f2565b6113d7565b90508281526020810184848401111561146157611460611361565b5b61146c848285611423565b509392505050565b600082601f8301126114895761148861135c565b5b8135611499848260208601611432565b91505092915050565b600080600060a084860312156114bb576114ba611276565b5b60006114c98682870161131e565b935050606084013567ffffffffffffffff8111156114ea576114e961127b565b5b6114f68682870161133d565b925050608084013567ffffffffffffffff8111156115175761151661127b565b5b61152386828701611474565b9150509250925092565b600080fd5b600080fd5b60008083601f84011261154d5761154c61135c565b5b8235905067ffffffffffffffff81111561156a5761156961152d565b5b60208301915083606082028301111561158657611585611532565b5b9250929050565b600080602083850312156115a4576115a3611276565b5b600083013567ffffffffffffffff8111156115c2576115c161127b565b5b6115ce85828601611537565b92509250509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611605826115da565b9050919050565b611615816115fa565b82525050565b6000602082019050611630600083018461160c565b92915050565b60006060828403121561164c5761164b611276565b5b600061165a8482850161131e565b91505092915050565b61166c816115fa565b811461167757600080fd5b50565b60008135905061168981611663565b92915050565b600080604083850312156116a6576116a5611276565b5b60006116b48582860161167a565b92505060206116c58582860161167a565b9150509250929050565b60006116da826115da565b9050919050565b6116ea816116cf565b81146116f557600080fd5b50565b600081359050611707816116e1565b92915050565b60006020828403121561172357611722611276565b5b6000611731848285016116f8565b91505092915050565b6000602082840312156117505761174f611276565b5b600061175e8482850161167a565b91505092915050565b6000819050919050565b600061178c611787611782846115da565b611767565b6115da565b9050919050565b600061179e82611771565b9050919050565b60006117b082611793565b9050919050565b6117c0816117a5565b82525050565b60006020820190506117db60008301846117b7565b92915050565b6117ea816112e3565b81146117f557600080fd5b50565b600081359050611807816117e1565b92915050565b6000806040838503121561182457611823611276565b5b6000611832858286016112a1565b9250506020611843858286016117f8565b9150509250929050565b60008083601f8401126118635761186261135c565b5b8235905067ffffffffffffffff8111156118805761187f61152d565b5b60208301915083602082028301111561189c5761189b611532565b5b9250929050565b600067ffffffffffffffff8211156118be576118bd611377565b5b602082029050602081019050919050565b60006118e26118dd846118a3565b6113d7565b9050808382526020820190506020840283018581111561190557611904611532565b5b835b8181101561194c57803567ffffffffffffffff81111561192a5761192961135c565b5b8086016119378982611474565b85526020850194505050602081019050611907565b5050509392505050565b600082601f83011261196b5761196a61135c565b5b813561197b8482602086016118cf565b91505092915050565b60008060006040848603121561199d5761199c611276565b5b600084013567ffffffffffffffff8111156119bb576119ba61127b565b5b6119c78682870161184d565b9350935050602084013567ffffffffffffffff8111156119ea576119e961127b565b5b6119f686828701611956565b9150509250925092565b600080fd5b600080fd5b600067ffffffffffffffff82169050919050565b611a2781611a0a565b8114611a3257600080fd5b50565b600081359050611a4481611a1e565b92915050565b6000819050919050565b611a5d81611a4a565b8114611a6857600080fd5b50565b600081359050611a7a81611a54565b92915050565b600060c08284031215611a9657611a95611a00565b5b611aa060c06113d7565b90506000611ab08482850161167a565b6000830152506020611ac484828501611a35565b6020830152506040611ad8848285016117f8565b6040830152506060611aec848285016112a1565b606083015250608082013567ffffffffffffffff811115611b1057611b0f611a05565b5b611b1c84828501611474565b60808301525060a0611b3084828501611a6b565b60a08301525092915050565b600060408284031215611b5257611b51611a00565b5b611b5c60406113d7565b90506000611b6c848285016112a1565b600083015250602082013567ffffffffffffffff811115611b9057611b8f611a05565b5b611b9c84828501611a80565b60208301525092915050565b60008060408385031215611bbf57611bbe611276565b5b600083013567ffffffffffffffff811115611bdd57611bdc61127b565b5b611be985828601611b3c565b925050602083013567ffffffffffffffff811115611c0a57611c0961127b565b5b611c1685828601611474565b9150509250929050565b600080600080600060608688031215611c3c57611c3b611276565b5b600086013567ffffffffffffffff811115611c5a57611c5961127b565b5b611c6688828901611537565b9550955050602086013567ffffffffffffffff811115611c8957611c8861127b565b5b611c958882890161184d565b9350935050604086013567ffffffffffffffff811115611cb857611cb761127b565b5b611cc488828901611956565b9150509295509295909350565b6000611cdd3683611b3c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611d2260208401846112a1565b905092915050565b611d3381611280565b82525050565b600082905092915050565b6000611d536020840184611a6b565b905092915050565b611d6481611a4a565b82525050565b60408201611d7b6000830183611d13565b611d886000850182611d2a565b50611d966020830183611d44565b611da36020850182611d5b565b50505050565b60608201611dba6000830183611d13565b611dc76000850182611d2a565b50611dd56020830183611d39565b611de26020850182611d6a565b50505050565b6000606082019050611dfd6000830184611da9565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e3d82611a4a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611e6f57611e6e611e03565b5b600182019050919050565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000611ee7602e83611e7a565b9150611ef282611e8b565b604082019050919050565b60006020820190508181036000830152611f1681611eda565b9050919050565b6000819050919050565b600060ff82169050919050565b6000611f4f611f4a611f4584611f1d565b611767565b611f27565b9050919050565b611f5f81611f34565b82525050565b6000602082019050611f7a6000830184611f56565b92915050565b600080fd5b600082356001604003833603038112611fa157611fa0611f80565b5b80830191505092915050565b611fb6816115fa565b82525050565b611fc581611a0a565b82525050565b611fd4816112e3565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612014578082015181840152602081019050611ff9565b60008484015250505050565b600061202b82611fda565b6120358185611fe5565b9350612045818560208601611ff6565b61204e81611366565b840191505092915050565b600060c0830160008301516120716000860182611fad565b5060208301516120846020860182611fbc565b5060408301516120976040860182611fcb565b5060608301516120aa6060860182611d2a565b50608083015184820360808601526120c28282612020565b91505060a08301516120d760a0860182611d5b565b508091505092915050565b60006040830160008301516120fa6000860182611d2a565b50602083015184820360208601526121128282612059565b9150508091505092915050565b6000602082019050818103600083015261213981846120e2565b905092915050565b6000815190506121508161128a565b92915050565b60006020828403121561216c5761216b611276565b5b600061217a84828501612141565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121df602683611e7a565b91506121ea82612183565b604082019050919050565b6000602082019050818103600083015261220e816121d2565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000612271602b83611e7a565b915061227c82612215565b604082019050919050565b600060208201905081810360008301526122a081612264565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006122dd602083611e7a565b91506122e8826122a7565b602082019050919050565b6000602082019050818103600083015261230c816122d0565b9050919050565b60008235600160c00383360303811261232f5761232e611f80565b5b80830191505092915050565b600061234682611a4a565b915061235183611a4a565b925082820190508082111561236957612368611e03565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006123d4601883611e7a565b91506123df8261239e565b602082019050919050565b60006020820190508181036000830152612403816123c7565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000612440601f83611e7a565b915061244b8261240a565b602082019050919050565b6000602082019050818103600083015261246f81612433565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006124d2602283611e7a565b91506124dd82612476565b604082019050919050565b60006020820190508181036000830152612501816124c5565b9050919050565b61251181611280565b82525050565b61252081611f27565b82525050565b600060808201905061253b6000830187612508565b6125486020830186612517565b6125556040830185612508565b6125626060830184612508565b9594505050505056fea26469706673582212208a70891c959d148d8d691512764c9e3115cea95412c7dc3d480859a59454b65464736f6c63430008150033

Deployed Bytecode

0x6080604052600436106100f35760003560e01c8063715018a61161008a578063afef95e811610059578063afef95e8146102df578063db9c3f48146102fb578063f2fde38b14610317578063f5db14ce14610340576100f3565b8063715018a6146102495780638150864d146102605780638da5cb5b1461028b5780639ed458c5146102b6576100f3565b806346926267116100c657806346926267146101a5578063485cc955146101ce57806351cff8d9146101f75780636c19e78314610220576100f3565b80630256798e146100f85780630b1b4bec146101355780631a0df4e514610151578063238ac9331461017a575b600080fd5b34801561010457600080fd5b5061011f600480360381019061011a91906112b6565b61035c565b60405161012c91906112fe565b60405180910390f35b61014f600480360381019061014a91906114a2565b61037c565b005b34801561015d57600080fd5b506101786004803603810190610173919061158d565b61039d565b005b34801561018657600080fd5b5061018f610468565b60405161019c919061161b565b60405180910390f35b3480156101b157600080fd5b506101cc60048036038101906101c79190611636565b61048e565b005b3480156101da57600080fd5b506101f560048036038101906101f0919061168f565b61051e565b005b34801561020357600080fd5b5061021e6004803603810190610219919061170d565b6106e0565b005b34801561022c57600080fd5b506102476004803603810190610242919061173a565b610732565b005b34801561025557600080fd5b5061025e61077e565b005b34801561026c57600080fd5b50610275610792565b60405161028291906117c6565b60405180910390f35b34801561029757600080fd5b506102a06107b8565b6040516102ad919061161b565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d8919061180d565b6107e2565b005b6102f960048036038101906102f49190611984565b610819565b005b61031560048036038101906103109190611ba8565b610911565b005b34801561032357600080fd5b5061033e6004803603810190610339919061173a565b610a6a565b005b61035a60048036038101906103559190611c20565b610aed565b005b60676020528060005260406000206000915054906101000a900460ff1681565b6103858361048e565b6103988261039290611cd1565b82610911565b505050565b60005b8282905081101561046357606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663469262678484848181106103fc576103fb611ce4565b5b9050606002016040518263ffffffff1660e01b815260040161041e9190611de8565b600060405180830381600087803b15801561043857600080fd5b505af115801561044c573d6000803e3d6000fd5b50505050808061045b90611e32565b9150506103a0565b505050565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166346926267826040518263ffffffff1660e01b81526004016104e99190611de8565b600060405180830381600087803b15801561050357600080fd5b505af1158015610517573d6000803e3d6000fd5b5050505050565b60008060019054906101000a900460ff1615905080801561054f5750600160008054906101000a900460ff1660ff16105b8061057c575061055e30610c0a565b15801561057b5750600160008054906101000a900460ff1660ff16145b5b6105bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b290611efd565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156105f8576001600060016101000a81548160ff0219169083151502179055505b610600610c2d565b82606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080156106db5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516106d29190611f65565b60405180910390a15b505050565b6106e8610c86565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561072e573d6000803e3d6000fd5b5050565b61073a610c86565b80606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610786610c86565b6107906000610d04565b565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107ea610c86565b806067600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80518383905014610856576040517fa24a13a600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108608383610dca565b341015610899576040517f30c00ff700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8383905081101561090b576108f88484838181106108bd576108bc611ce4565b5b90506020028101906108cf9190611f85565b6108d890611cd1565b8383815181106108eb576108ea611ce4565b5b6020026020010151610911565b808061090390611e32565b91505061089c565b50505050565b816020015160a00151341015610953576040517f30c00ff700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606760008360000151815260200190815260200160002060009054906101000a900460ff166109ae576040517fbf37b20e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109b88282610e3c565b6000826020015160a0018181525050606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f17325e7836040518263ffffffff1660e01b8152600401610a22919061211f565b6020604051808303816000875af1158015610a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a659190612156565b505050565b610a72610c86565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad8906121f5565b60405180910390fd5b610aea81610d04565b50565b8282905085859050141580610b06575080518383905014155b15610b3d576040517fa24a13a600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b478383610dca565b341015610b80576040517f30c00ff700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b85859050811015610c0257610bef868683818110610ba457610ba3611ce4565b5b905060600201858584818110610bbd57610bbc611ce4565b5b9050602002810190610bcf9190611f85565b848481518110610be257610be1611ce4565b5b602002602001015161037c565b8080610bfa90611e32565b915050610b83565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390612287565b60405180910390fd5b610c84610f0d565b565b610c8e610f6e565b73ffffffffffffffffffffffffffffffffffffffff16610cac6107b8565b73ffffffffffffffffffffffffffffffffffffffff1614610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf9906122f3565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600090505b83839050811015610e3557838382818110610df057610def611ce4565b5b9050602002810190610e029190611f85565b8060200190610e119190612313565b60a0013582610e20919061233b565b91508080610e2d90611e32565b915050610dd2565b5092915050565b600082604051602001610e4f919061211f565b604051602081830303815290604052805190602001209050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ebb83610ead84610f76565b610fac90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614610f08576040517f8baa579f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600060019054906101000a900460ff16610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390612287565b60405180910390fd5b610f6c610f67610f6e565b610d04565b565b600033905090565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b6000806000610fbb8585610fd3565b91509150610fc881611024565b819250505092915050565b60008060418351036110145760008060006020860151925060408601519150606086015160001a90506110088782858561118a565b9450945050505061101d565b60006002915091505b9250929050565b600060048111156110385761103761236f565b5b81600481111561104b5761104a61236f565b5b031561118757600160048111156110655761106461236f565b5b8160048111156110785761107761236f565b5b036110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af906123ea565b60405180910390fd5b600260048111156110cc576110cb61236f565b5b8160048111156110df576110de61236f565b5b0361111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690612456565b60405180910390fd5b600360048111156111335761113261236f565b5b8160048111156111465761114561236f565b5b03611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906124e8565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156111c5576000600391509150611263565b6000600187878787604051600081526020016040526040516111ea9493929190612526565b6020604051602081039080840390855afa15801561120c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361125a57600060019250925050611263565b80600092509250505b94509492505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61129381611280565b811461129e57600080fd5b50565b6000813590506112b08161128a565b92915050565b6000602082840312156112cc576112cb611276565b5b60006112da848285016112a1565b91505092915050565b60008115159050919050565b6112f8816112e3565b82525050565b600060208201905061131360008301846112ef565b92915050565b600080fd5b60006060828403121561133457611333611319565b5b81905092915050565b60006040828403121561135357611352611319565b5b81905092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6113af82611366565b810181811067ffffffffffffffff821117156113ce576113cd611377565b5b80604052505050565b60006113e161126c565b90506113ed82826113a6565b919050565b600067ffffffffffffffff82111561140d5761140c611377565b5b61141682611366565b9050602081019050919050565b82818337600083830152505050565b6000611445611440846113f2565b6113d7565b90508281526020810184848401111561146157611460611361565b5b61146c848285611423565b509392505050565b600082601f8301126114895761148861135c565b5b8135611499848260208601611432565b91505092915050565b600080600060a084860312156114bb576114ba611276565b5b60006114c98682870161131e565b935050606084013567ffffffffffffffff8111156114ea576114e961127b565b5b6114f68682870161133d565b925050608084013567ffffffffffffffff8111156115175761151661127b565b5b61152386828701611474565b9150509250925092565b600080fd5b600080fd5b60008083601f84011261154d5761154c61135c565b5b8235905067ffffffffffffffff81111561156a5761156961152d565b5b60208301915083606082028301111561158657611585611532565b5b9250929050565b600080602083850312156115a4576115a3611276565b5b600083013567ffffffffffffffff8111156115c2576115c161127b565b5b6115ce85828601611537565b92509250509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611605826115da565b9050919050565b611615816115fa565b82525050565b6000602082019050611630600083018461160c565b92915050565b60006060828403121561164c5761164b611276565b5b600061165a8482850161131e565b91505092915050565b61166c816115fa565b811461167757600080fd5b50565b60008135905061168981611663565b92915050565b600080604083850312156116a6576116a5611276565b5b60006116b48582860161167a565b92505060206116c58582860161167a565b9150509250929050565b60006116da826115da565b9050919050565b6116ea816116cf565b81146116f557600080fd5b50565b600081359050611707816116e1565b92915050565b60006020828403121561172357611722611276565b5b6000611731848285016116f8565b91505092915050565b6000602082840312156117505761174f611276565b5b600061175e8482850161167a565b91505092915050565b6000819050919050565b600061178c611787611782846115da565b611767565b6115da565b9050919050565b600061179e82611771565b9050919050565b60006117b082611793565b9050919050565b6117c0816117a5565b82525050565b60006020820190506117db60008301846117b7565b92915050565b6117ea816112e3565b81146117f557600080fd5b50565b600081359050611807816117e1565b92915050565b6000806040838503121561182457611823611276565b5b6000611832858286016112a1565b9250506020611843858286016117f8565b9150509250929050565b60008083601f8401126118635761186261135c565b5b8235905067ffffffffffffffff8111156118805761187f61152d565b5b60208301915083602082028301111561189c5761189b611532565b5b9250929050565b600067ffffffffffffffff8211156118be576118bd611377565b5b602082029050602081019050919050565b60006118e26118dd846118a3565b6113d7565b9050808382526020820190506020840283018581111561190557611904611532565b5b835b8181101561194c57803567ffffffffffffffff81111561192a5761192961135c565b5b8086016119378982611474565b85526020850194505050602081019050611907565b5050509392505050565b600082601f83011261196b5761196a61135c565b5b813561197b8482602086016118cf565b91505092915050565b60008060006040848603121561199d5761199c611276565b5b600084013567ffffffffffffffff8111156119bb576119ba61127b565b5b6119c78682870161184d565b9350935050602084013567ffffffffffffffff8111156119ea576119e961127b565b5b6119f686828701611956565b9150509250925092565b600080fd5b600080fd5b600067ffffffffffffffff82169050919050565b611a2781611a0a565b8114611a3257600080fd5b50565b600081359050611a4481611a1e565b92915050565b6000819050919050565b611a5d81611a4a565b8114611a6857600080fd5b50565b600081359050611a7a81611a54565b92915050565b600060c08284031215611a9657611a95611a00565b5b611aa060c06113d7565b90506000611ab08482850161167a565b6000830152506020611ac484828501611a35565b6020830152506040611ad8848285016117f8565b6040830152506060611aec848285016112a1565b606083015250608082013567ffffffffffffffff811115611b1057611b0f611a05565b5b611b1c84828501611474565b60808301525060a0611b3084828501611a6b565b60a08301525092915050565b600060408284031215611b5257611b51611a00565b5b611b5c60406113d7565b90506000611b6c848285016112a1565b600083015250602082013567ffffffffffffffff811115611b9057611b8f611a05565b5b611b9c84828501611a80565b60208301525092915050565b60008060408385031215611bbf57611bbe611276565b5b600083013567ffffffffffffffff811115611bdd57611bdc61127b565b5b611be985828601611b3c565b925050602083013567ffffffffffffffff811115611c0a57611c0961127b565b5b611c1685828601611474565b9150509250929050565b600080600080600060608688031215611c3c57611c3b611276565b5b600086013567ffffffffffffffff811115611c5a57611c5961127b565b5b611c6688828901611537565b9550955050602086013567ffffffffffffffff811115611c8957611c8861127b565b5b611c958882890161184d565b9350935050604086013567ffffffffffffffff811115611cb857611cb761127b565b5b611cc488828901611956565b9150509295509295909350565b6000611cdd3683611b3c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611d2260208401846112a1565b905092915050565b611d3381611280565b82525050565b600082905092915050565b6000611d536020840184611a6b565b905092915050565b611d6481611a4a565b82525050565b60408201611d7b6000830183611d13565b611d886000850182611d2a565b50611d966020830183611d44565b611da36020850182611d5b565b50505050565b60608201611dba6000830183611d13565b611dc76000850182611d2a565b50611dd56020830183611d39565b611de26020850182611d6a565b50505050565b6000606082019050611dfd6000830184611da9565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e3d82611a4a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611e6f57611e6e611e03565b5b600182019050919050565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000611ee7602e83611e7a565b9150611ef282611e8b565b604082019050919050565b60006020820190508181036000830152611f1681611eda565b9050919050565b6000819050919050565b600060ff82169050919050565b6000611f4f611f4a611f4584611f1d565b611767565b611f27565b9050919050565b611f5f81611f34565b82525050565b6000602082019050611f7a6000830184611f56565b92915050565b600080fd5b600082356001604003833603038112611fa157611fa0611f80565b5b80830191505092915050565b611fb6816115fa565b82525050565b611fc581611a0a565b82525050565b611fd4816112e3565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612014578082015181840152602081019050611ff9565b60008484015250505050565b600061202b82611fda565b6120358185611fe5565b9350612045818560208601611ff6565b61204e81611366565b840191505092915050565b600060c0830160008301516120716000860182611fad565b5060208301516120846020860182611fbc565b5060408301516120976040860182611fcb565b5060608301516120aa6060860182611d2a565b50608083015184820360808601526120c28282612020565b91505060a08301516120d760a0860182611d5b565b508091505092915050565b60006040830160008301516120fa6000860182611d2a565b50602083015184820360208601526121128282612059565b9150508091505092915050565b6000602082019050818103600083015261213981846120e2565b905092915050565b6000815190506121508161128a565b92915050565b60006020828403121561216c5761216b611276565b5b600061217a84828501612141565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121df602683611e7a565b91506121ea82612183565b604082019050919050565b6000602082019050818103600083015261220e816121d2565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000612271602b83611e7a565b915061227c82612215565b604082019050919050565b600060208201905081810360008301526122a081612264565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006122dd602083611e7a565b91506122e8826122a7565b602082019050919050565b6000602082019050818103600083015261230c816122d0565b9050919050565b60008235600160c00383360303811261232f5761232e611f80565b5b80830191505092915050565b600061234682611a4a565b915061235183611a4a565b925082820190508082111561236957612368611e03565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006123d4601883611e7a565b91506123df8261239e565b602082019050919050565b60006020820190508181036000830152612403816123c7565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000612440601f83611e7a565b915061244b8261240a565b602082019050919050565b6000602082019050818103600083015261246f81612433565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006124d2602283611e7a565b91506124dd82612476565b604082019050919050565b60006020820190508181036000830152612501816124c5565b9050919050565b61251181611280565b82525050565b61252081611f27565b82525050565b600060808201905061253b6000830187612508565b6125486020830186612517565b6125556040830185612508565b6125626060830184612508565b9594505050505056fea26469706673582212208a70891c959d148d8d691512764c9e3115cea95412c7dc3d480859a59454b65464736f6c63430008150033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits

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