ETH Price: $1,964.39 (-0.19%)

Contract

0x202CD7Ef0a73cf1C541a40f274B2257580214476

Overview

ETH Balance

0 ETH

ETH Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Block
From
To
Set Trustful Res...2651159992024-10-18 13:42:53487 days ago1729258973IN
0x202CD7Ef...580214476
0 ETH0.000001740.010938

Parent Transaction Hash Block From To
View All Internal Transactions

Cross-Chain Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Resolver

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import { Attestation } from "./Common.sol";
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { IResolver } from "./interfaces/IResolver.sol";
import { IBadgeRegistry } from "./interfaces/IBadgeRegistry.sol";
import { IGrantRegistry } from "./interfaces/IGrantRegistry.sol";
import { ITrustfulResolver } from "./interfaces/ITrustfulResolver.sol";

/// @author KarmaGap | 0xneves | RafaDSan
/// @notice KarmaGap Resolver contract for Ethereum Attestation Service.
contract Resolver is IResolver, Ownable {
  /// The global EAS contract.
  address public immutable eas;
  /// The global grant registry.
  IGrantRegistry public grantRegistry;
  /// The global badge registry.
  IBadgeRegistry public badgeRegistry;
  /// The Trustful Resolver contract.
  /// @dev Set this to address zero to stop the contract from working.
  /// NOTE: It's required to initialize this contract.
  ITrustfulResolver public trustfulResolver;

  /// @param _eas The address of the global EAS contract.
  /// @param _grantRegistry The address of the global grant registry.
  /// @param _badgeRegistry The address of the global badge registry.
  constructor(address _eas, address _grantRegistry, address _badgeRegistry) Ownable(msg.sender) {
    if (_eas == address(0)) revert InvalidContractAddress();
    eas = _eas;
    grantRegistry = IGrantRegistry(_grantRegistry);
    badgeRegistry = IBadgeRegistry(_badgeRegistry);
  }

  /// @dev Ensures that only the EAS contract can make this call.
  modifier onlyEAS() {
    if (msg.sender != eas) revert AccessDenied();
    _;
  }

  /// @inheritdoc IResolver
  function isPayable() public pure virtual returns (bool) {
    return false;
  }

  /// @inheritdoc IResolver
  function attest(Attestation calldata attestation) external payable onlyEAS returns (bool) {
    if (address(trustfulResolver) == address(0)) revert InvalidContractAddress();
    if (attestation.recipient != attestation.attester) revert InvalidGrantOwner(); 
    if (attestation.expirationTime != 0) revert InvalidExpirationTime();
    if (attestation.revocable != false) revert InvalidRevocability();

    (bytes32 grantUID, bytes32[] memory badgeIds, uint8[] memory badgesScores, string memory grantProgramUID) = abi.decode(
      attestation.data,
      (bytes32, bytes32[], uint8[], string)
    );

    if (attestation.refUID != grantUID) revert InvalidRefUID();

    // fetching each data separately because the grantRegistry might be upgraded someday
    // and this way we allow backwards compatibility

    // check if badges exists in the registry
    for (uint256 i = 0; i < badgeIds.length; i++) {
      if (!badgeRegistry.badgeExists(badgeIds[i])) {
        revert InvalidBadgeID();
      }
      // leverage the for loop to check for incorrect scores
      if (badgesScores[i] == 0 || badgesScores[i] > 5) {
        revert InvalidScoreValue();
      }
    }

    // create a new review with a story
    bool success = trustfulResolver.createStory(
      grantUID,
      attestation.uid,
      grantProgramUID,
      badgeIds,
      badgesScores
    );

    if (success) return true;
    else return false;
  }

  /// @inheritdoc IResolver
  function revoke(Attestation calldata attestation) external payable onlyEAS returns (bool) {
    return false;
  }

  /// @inheritdoc IResolver
  function setGrantRegistry(address _grantRegistry) external onlyOwner {
    address oldGrantRegistry = address(grantRegistry);
    grantRegistry = IGrantRegistry(_grantRegistry);
    emit GrantRegistryUpdated(oldGrantRegistry, _grantRegistry);
  }

  /// @inheritdoc IResolver
  function setBadgeRegistry(address _badgeRegistry) external onlyOwner {
    address oldBadgeRegistry = address(badgeRegistry);
    badgeRegistry = IBadgeRegistry(_badgeRegistry);
    emit BadgeRegistryUpdated(oldBadgeRegistry, _badgeRegistry);
  }

  /// @inheritdoc IResolver
  function setTrustfulResolver(address _trustfulResolver) external onlyOwner {
    address oldTrustfulResolver = address(trustfulResolver);
    trustfulResolver = ITrustfulResolver(_trustfulResolver);
    emit TrustfulResolverUpdated(oldTrustfulResolver, _trustfulResolver);
  }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.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.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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

pragma solidity ^0.8.0;

/// @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.
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;

/// @notice The interface of the {BadgeRegistry} contract.
interface IBadgeRegistry {
  /// @param badgeId The badge ID to check.
  /// @return True if the badge exists. False if it does not.
  function badgeExists(bytes32 badgeId) external view returns (bool);
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;

/// @notice The interface of the {GrantRegistry} contract.
interface IGrantRegistry {
  /// Grant Status.
  enum Status {
    Proposed, // The grant has been proposed but not yet approved (Default)
    InProgress, // The project is actively being worked on
    Completed, // The project has been completed and deliverables submitted
    Cancelled, // The grant was cancelled
    Rejected // The grant proposal was reviewed and rejected
  }

  /// @notice Get the grantee address.
  /// @param grantUID The grant ID to be retrieved.
  function getGranteeAddress(bytes32 grantUID) external view returns (address);

  /// @notice Get the grant program UID.
  /// @param grantUID The grant ID to be retrieved.
  function getGrantProgramUID(bytes32 grantUID) external view returns (uint256);

  /// @notice Get the grant status.
  /// @param grantUID The grant ID to be retrieved.
  function getStatus(bytes32 grantUID) external view returns (Status);
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/// @notice The interface of the {Resolver} contract.
interface IResolver {
  /// Emitted when non-EAS contract tries to attest.
  error AccessDenied();
  /// Emitted when the badge ID doesn't exist in the registry.
  error InvalidBadgeID();
  /// Emitted when trying to set contracts as address zero.
  error InvalidContractAddress();
  /// Emitted then the attestation was subnmitted with less than max uint64 expiration time.
  error InvalidExpirationTime();
  /// Emitted when the grantee is doesn't match the one in the grant registry.
  error InvalidGrantOwner();
  /// Emitted when the grant cannot be reviwed.
  error InvalidGrantReview();
  /// Emitted when the review score is not between 1 and 5.
  error InvalidScoreValue();
  /// Emitted when the refUID doesn't match the grant UID.
  error InvalidRefUID();
  /// Emitted when the attestation is revocable.
  error InvalidRevocability();

  /// Emitted when a new grant registry is set.
  event GrantRegistryUpdated(address indexed oldGrantRegistry, address indexed newGrantRegistry);
  /// Emitted when a new badge registry is set.
  event BadgeRegistryUpdated(address indexed oldBadgeRegistry, address indexed newBadgeRegistry);
  /// Emitted when a new trustful resolver is set.
  event TrustfulResolverUpdated(
    address indexed oldTrustfulResolver,
    address indexed newTrustfulResolver
  );

  /// @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 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 Set a new address as the Grant Registry.
  function setGrantRegistry(address _grantRegistry) external;

  /// @notice Set a new address as the Badge Registry.
  function setBadgeRegistry(address _badgeRegistry) external;

  /// @notice Set a new address as the Trustful Resolver.
  function setTrustfulResolver(address _trustfulResolver) external;
}

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

pragma solidity ^0.8.25;

/// @notice The interface of the {TrustfulResolver} contract.
interface ITrustfulResolver {
  /// @notice Creates a new story review for a grant program.
  ///
  /// Requirement:
  /// - The caller must be the EAS Resolver contract.
  /// - The badges must be registered in the Trustful Scorer.
  ///
  /// Emits a {StoryCreated} event.
  ///
  /// @param grantUID Unique identifier of the grant existing in the Grant Registry.
  /// @param txUID Unique identifier of the transaction on EAS that created the story.
  /// @param grantProgramUID The grant program UID.
  /// @param badges Array of badge IDs exiting in the Badge Registry.
  /// @param scores Array of scores for each badge.
  function createStory(
    bytes32 grantUID,
    bytes32 txUID,
    string calldata grantProgramUID,
    bytes32[] calldata badges,
    uint8[] calldata scores
  ) external returns (bool success);
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_eas","type":"address"},{"internalType":"address","name":"_grantRegistry","type":"address"},{"internalType":"address","name":"_badgeRegistry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessDenied","type":"error"},{"inputs":[],"name":"InvalidBadgeID","type":"error"},{"inputs":[],"name":"InvalidContractAddress","type":"error"},{"inputs":[],"name":"InvalidExpirationTime","type":"error"},{"inputs":[],"name":"InvalidGrantOwner","type":"error"},{"inputs":[],"name":"InvalidGrantReview","type":"error"},{"inputs":[],"name":"InvalidRefUID","type":"error"},{"inputs":[],"name":"InvalidRevocability","type":"error"},{"inputs":[],"name":"InvalidScoreValue","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldBadgeRegistry","type":"address"},{"indexed":true,"internalType":"address","name":"newBadgeRegistry","type":"address"}],"name":"BadgeRegistryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldGrantRegistry","type":"address"},{"indexed":true,"internalType":"address","name":"newGrantRegistry","type":"address"}],"name":"GrantRegistryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldTrustfulResolver","type":"address"},{"indexed":true,"internalType":"address","name":"newTrustfulResolver","type":"address"}],"name":"TrustfulResolverUpdated","type":"event"},{"inputs":[{"components":[{"internalType":"bytes32","name":"uid","type":"bytes32"},{"internalType":"bytes32","name":"schema","type":"bytes32"},{"internalType":"uint64","name":"time","type":"uint64"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"uint64","name":"revocationTime","type":"uint64"},{"internalType":"bytes32","name":"refUID","type":"bytes32"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation","name":"attestation","type":"tuple"}],"name":"attest","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"badgeRegistry","outputs":[{"internalType":"contract IBadgeRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eas","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"grantRegistry","outputs":[{"internalType":"contract IGrantRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPayable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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":"uid","type":"bytes32"},{"internalType":"bytes32","name":"schema","type":"bytes32"},{"internalType":"uint64","name":"time","type":"uint64"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"uint64","name":"revocationTime","type":"uint64"},{"internalType":"bytes32","name":"refUID","type":"bytes32"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation","name":"attestation","type":"tuple"}],"name":"revoke","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_badgeRegistry","type":"address"}],"name":"setBadgeRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_grantRegistry","type":"address"}],"name":"setGrantRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_trustfulResolver","type":"address"}],"name":"setTrustfulResolver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"trustfulResolver","outputs":[{"internalType":"contract ITrustfulResolver","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60a060405234801561001057600080fd5b50604051611bfa380380611bfa83398181016040528101906100329190610300565b33600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100a55760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161009c9190610362565b60405180910390fd5b6100b4816101d960201b60201c565b50600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361011b576040517fa710429d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505061037d565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006102cd826102a2565b9050919050565b6102dd816102c2565b81146102e857600080fd5b50565b6000815190506102fa816102d4565b92915050565b6000806000606084860312156103195761031861029d565b5b6000610327868287016102eb565b9350506020610338868287016102eb565b9250506040610349868287016102eb565b9150509250925092565b61035c816102c2565b82525050565b60006020820190506103776000830184610353565b92915050565b6080516118546103a6600039600081816103200152818161053601526105c601526118546000f3fe6080604052600436106100c25760003560e01c8063ce46e0461161007f578063e60c350511610059578063e60c350514610237578063ea3e7cef14610267578063ec72fd3914610292578063f2fde38b146102bb576100c2565b8063ce46e046146101b1578063d1e5744d146101dc578063e49617e114610207576100c2565b80631f7c7119146100c7578063715018a6146100f25780638150864d146101095780638da5cb5b14610134578063c402c9221461015f578063c52bd97614610188575b600080fd5b3480156100d357600080fd5b506100dc6102e4565b6040516100e99190610e0d565b60405180910390f35b3480156100fe57600080fd5b5061010761030a565b005b34801561011557600080fd5b5061011e61031e565b60405161012b9190610e49565b60405180910390f35b34801561014057600080fd5b50610149610342565b6040516101569190610e49565b60405180910390f35b34801561016b57600080fd5b5061018660048036038101906101819190610ea4565b61036b565b005b34801561019457600080fd5b506101af60048036038101906101aa9190610ea4565b610439565b005b3480156101bd57600080fd5b506101c6610507565b6040516101d39190610eec565b60405180910390f35b3480156101e857600080fd5b506101f161050c565b6040516101fe9190610f28565b60405180910390f35b610221600480360381019061021c9190610f68565b610532565b60405161022e9190610eec565b60405180910390f35b610251600480360381019061024c9190610f68565b6105c2565b60405161025e9190610eec565b60405180910390f35b34801561027357600080fd5b5061027c610ac1565b6040516102899190610fd2565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190610ea4565b610ae7565b005b3480156102c757600080fd5b506102e260048036038101906102dd9190610ea4565b610bb5565b005b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610312610c3b565b61031c6000610cc2565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610373610c3b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f24a733cad2cc57a8eba27848490557305a4d5788ad1a45d87e4937c73cddc30f60405160405180910390a35050565b610441610c3b565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f2e39609de5f12df30efd5ac1141fb53e6ddc6776917c1c9eb18ae10536caa87f60405160405180910390a35050565b600090565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105b9576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60009050919050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610649576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036106d1576040517fa710429d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160e00160208101906106e49190610ea4565b73ffffffffffffffffffffffffffffffffffffffff168260c001602081019061070d9190610ea4565b73ffffffffffffffffffffffffffffffffffffffff161461075a576040517f94ca2f8b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082606001602081019061076f919061102d565b67ffffffffffffffff16146107b0576040517f08e8b93700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515826101000160208101906107c89190611086565b151514610801576040517f84b3e17500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806000808580610120019061081891906110c2565b8101906108259190611465565b9350935093509350838660a001351461086a576040517fefcf836900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b83518110156109ef57600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af4bd7438583815181106108c7576108c6611520565b5b60200260200101516040518263ffffffff1660e01b81526004016108eb919061155e565b602060405180830381865afa158015610908573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092c919061158e565b610962576040517fe598ae5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083828151811061097757610976611520565b5b602002602001015160ff1614806109ab5750600583828151811061099e5761099d611520565b5b602002602001015160ff16115b156109e2576040517fcd1220fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808060010191505061086d565b506000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ea71037d8689600001358588886040518663ffffffff1660e01b8152600401610a599594939291906117b6565b6020604051808303816000875af1158015610a78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9c919061158e565b90508015610ab257600195505050505050610abc565b6000955050505050505b919050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610aef610c3b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb304c653ca87139db5f02c2fec1ace1a0489d7a26e0da5948e16a1660bbe4ac360405160405180910390a35050565b610bbd610c3b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c2f5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c269190610e49565b60405180910390fd5b610c3881610cc2565b50565b610c43610d86565b73ffffffffffffffffffffffffffffffffffffffff16610c61610342565b73ffffffffffffffffffffffffffffffffffffffff1614610cc057610c84610d86565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610cb79190610e49565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610dd3610dce610dc984610d8e565b610dae565b610d8e565b9050919050565b6000610de582610db8565b9050919050565b6000610df782610dda565b9050919050565b610e0781610dec565b82525050565b6000602082019050610e226000830184610dfe565b92915050565b6000610e3382610d8e565b9050919050565b610e4381610e28565b82525050565b6000602082019050610e5e6000830184610e3a565b92915050565b6000604051905090565b600080fd5b600080fd5b610e8181610e28565b8114610e8c57600080fd5b50565b600081359050610e9e81610e78565b92915050565b600060208284031215610eba57610eb9610e6e565b5b6000610ec884828501610e8f565b91505092915050565b60008115159050919050565b610ee681610ed1565b82525050565b6000602082019050610f016000830184610edd565b92915050565b6000610f1282610dda565b9050919050565b610f2281610f07565b82525050565b6000602082019050610f3d6000830184610f19565b92915050565b600080fd5b60006101408284031215610f5f57610f5e610f43565b5b81905092915050565b600060208284031215610f7e57610f7d610e6e565b5b600082013567ffffffffffffffff811115610f9c57610f9b610e73565b5b610fa884828501610f48565b91505092915050565b6000610fbc82610dda565b9050919050565b610fcc81610fb1565b82525050565b6000602082019050610fe76000830184610fc3565b92915050565b600067ffffffffffffffff82169050919050565b61100a81610fed565b811461101557600080fd5b50565b60008135905061102781611001565b92915050565b60006020828403121561104357611042610e6e565b5b600061105184828501611018565b91505092915050565b61106381610ed1565b811461106e57600080fd5b50565b6000813590506110808161105a565b92915050565b60006020828403121561109c5761109b610e6e565b5b60006110aa84828501611071565b91505092915050565b600080fd5b600080fd5b600080fd5b600080833560016020038436030381126110df576110de6110b3565b5b80840192508235915067ffffffffffffffff821115611101576111006110b8565b5b60208301925060018202360383131561111d5761111c6110bd565b5b509250929050565b6000819050919050565b61113881611125565b811461114357600080fd5b50565b6000813590506111558161112f565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6111a982611160565b810181811067ffffffffffffffff821117156111c8576111c7611171565b5b80604052505050565b60006111db610e64565b90506111e782826111a0565b919050565b600067ffffffffffffffff82111561120757611206611171565b5b602082029050602081019050919050565b600080fd5b600061123061122b846111ec565b6111d1565b9050808382526020820190506020840283018581111561125357611252611218565b5b835b8181101561127c57806112688882611146565b845260208401935050602081019050611255565b5050509392505050565b600082601f83011261129b5761129a61115b565b5b81356112ab84826020860161121d565b91505092915050565b600067ffffffffffffffff8211156112cf576112ce611171565b5b602082029050602081019050919050565b600060ff82169050919050565b6112f6816112e0565b811461130157600080fd5b50565b600081359050611313816112ed565b92915050565b600061132c611327846112b4565b6111d1565b9050808382526020820190506020840283018581111561134f5761134e611218565b5b835b8181101561137857806113648882611304565b845260208401935050602081019050611351565b5050509392505050565b600082601f8301126113975761139661115b565b5b81356113a7848260208601611319565b91505092915050565b600080fd5b600067ffffffffffffffff8211156113d0576113cf611171565b5b6113d982611160565b9050602081019050919050565b82818337600083830152505050565b6000611408611403846113b5565b6111d1565b905082815260208101848484011115611424576114236113b0565b5b61142f8482856113e6565b509392505050565b600082601f83011261144c5761144b61115b565b5b813561145c8482602086016113f5565b91505092915050565b6000806000806080858703121561147f5761147e610e6e565b5b600061148d87828801611146565b945050602085013567ffffffffffffffff8111156114ae576114ad610e73565b5b6114ba87828801611286565b935050604085013567ffffffffffffffff8111156114db576114da610e73565b5b6114e787828801611382565b925050606085013567ffffffffffffffff81111561150857611507610e73565b5b61151487828801611437565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b61155881611125565b82525050565b6000602082019050611573600083018461154f565b92915050565b6000815190506115888161105a565b92915050565b6000602082840312156115a4576115a3610e6e565b5b60006115b284828501611579565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115f55780820151818401526020810190506115da565b60008484015250505050565b600061160c826115bb565b61161681856115c6565b93506116268185602086016115d7565b61162f81611160565b840191505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61166f81611125565b82525050565b60006116818383611666565b60208301905092915050565b6000602082019050919050565b60006116a58261163a565b6116af8185611645565b93506116ba83611656565b8060005b838110156116eb5781516116d28882611675565b97506116dd8361168d565b9250506001810190506116be565b5085935050505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61172d816112e0565b82525050565b600061173f8383611724565b60208301905092915050565b6000602082019050919050565b6000611763826116f8565b61176d8185611703565b935061177883611714565b8060005b838110156117a95781516117908882611733565b975061179b8361174b565b92505060018101905061177c565b5085935050505092915050565b600060a0820190506117cb600083018861154f565b6117d8602083018761154f565b81810360408301526117ea8186611601565b905081810360608301526117fe818561169a565b905081810360808301526118128184611758565b9050969550505050505056fea26469706673582212201006b2742634debc6748bae06cf6e3515868501be4d6ad9973964a4be74b325864736f6c63430008190033000000000000000000000000bd75f629a22dc1ced33dda0b68c546a1c035c4580000000000000000000000002e6de0735b896dd248b08dcb9ba1f1f6dd5bf1b700000000000000000000000095d4123c5fa150b04dd56b0ab5141decb41725b0

Deployed Bytecode

0x6080604052600436106100c25760003560e01c8063ce46e0461161007f578063e60c350511610059578063e60c350514610237578063ea3e7cef14610267578063ec72fd3914610292578063f2fde38b146102bb576100c2565b8063ce46e046146101b1578063d1e5744d146101dc578063e49617e114610207576100c2565b80631f7c7119146100c7578063715018a6146100f25780638150864d146101095780638da5cb5b14610134578063c402c9221461015f578063c52bd97614610188575b600080fd5b3480156100d357600080fd5b506100dc6102e4565b6040516100e99190610e0d565b60405180910390f35b3480156100fe57600080fd5b5061010761030a565b005b34801561011557600080fd5b5061011e61031e565b60405161012b9190610e49565b60405180910390f35b34801561014057600080fd5b50610149610342565b6040516101569190610e49565b60405180910390f35b34801561016b57600080fd5b5061018660048036038101906101819190610ea4565b61036b565b005b34801561019457600080fd5b506101af60048036038101906101aa9190610ea4565b610439565b005b3480156101bd57600080fd5b506101c6610507565b6040516101d39190610eec565b60405180910390f35b3480156101e857600080fd5b506101f161050c565b6040516101fe9190610f28565b60405180910390f35b610221600480360381019061021c9190610f68565b610532565b60405161022e9190610eec565b60405180910390f35b610251600480360381019061024c9190610f68565b6105c2565b60405161025e9190610eec565b60405180910390f35b34801561027357600080fd5b5061027c610ac1565b6040516102899190610fd2565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190610ea4565b610ae7565b005b3480156102c757600080fd5b506102e260048036038101906102dd9190610ea4565b610bb5565b005b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610312610c3b565b61031c6000610cc2565b565b7f000000000000000000000000bd75f629a22dc1ced33dda0b68c546a1c035c45881565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610373610c3b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f24a733cad2cc57a8eba27848490557305a4d5788ad1a45d87e4937c73cddc30f60405160405180910390a35050565b610441610c3b565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f2e39609de5f12df30efd5ac1141fb53e6ddc6776917c1c9eb18ae10536caa87f60405160405180910390a35050565b600090565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f000000000000000000000000bd75f629a22dc1ced33dda0b68c546a1c035c45873ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105b9576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60009050919050565b60007f000000000000000000000000bd75f629a22dc1ced33dda0b68c546a1c035c45873ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610649576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036106d1576040517fa710429d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160e00160208101906106e49190610ea4565b73ffffffffffffffffffffffffffffffffffffffff168260c001602081019061070d9190610ea4565b73ffffffffffffffffffffffffffffffffffffffff161461075a576040517f94ca2f8b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082606001602081019061076f919061102d565b67ffffffffffffffff16146107b0576040517f08e8b93700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515826101000160208101906107c89190611086565b151514610801576040517f84b3e17500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806000808580610120019061081891906110c2565b8101906108259190611465565b9350935093509350838660a001351461086a576040517fefcf836900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b83518110156109ef57600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663af4bd7438583815181106108c7576108c6611520565b5b60200260200101516040518263ffffffff1660e01b81526004016108eb919061155e565b602060405180830381865afa158015610908573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092c919061158e565b610962576040517fe598ae5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083828151811061097757610976611520565b5b602002602001015160ff1614806109ab5750600583828151811061099e5761099d611520565b5b602002602001015160ff16115b156109e2576040517fcd1220fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808060010191505061086d565b506000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ea71037d8689600001358588886040518663ffffffff1660e01b8152600401610a599594939291906117b6565b6020604051808303816000875af1158015610a78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9c919061158e565b90508015610ab257600195505050505050610abc565b6000955050505050505b919050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610aef610c3b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb304c653ca87139db5f02c2fec1ace1a0489d7a26e0da5948e16a1660bbe4ac360405160405180910390a35050565b610bbd610c3b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c2f5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c269190610e49565b60405180910390fd5b610c3881610cc2565b50565b610c43610d86565b73ffffffffffffffffffffffffffffffffffffffff16610c61610342565b73ffffffffffffffffffffffffffffffffffffffff1614610cc057610c84610d86565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610cb79190610e49565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610dd3610dce610dc984610d8e565b610dae565b610d8e565b9050919050565b6000610de582610db8565b9050919050565b6000610df782610dda565b9050919050565b610e0781610dec565b82525050565b6000602082019050610e226000830184610dfe565b92915050565b6000610e3382610d8e565b9050919050565b610e4381610e28565b82525050565b6000602082019050610e5e6000830184610e3a565b92915050565b6000604051905090565b600080fd5b600080fd5b610e8181610e28565b8114610e8c57600080fd5b50565b600081359050610e9e81610e78565b92915050565b600060208284031215610eba57610eb9610e6e565b5b6000610ec884828501610e8f565b91505092915050565b60008115159050919050565b610ee681610ed1565b82525050565b6000602082019050610f016000830184610edd565b92915050565b6000610f1282610dda565b9050919050565b610f2281610f07565b82525050565b6000602082019050610f3d6000830184610f19565b92915050565b600080fd5b60006101408284031215610f5f57610f5e610f43565b5b81905092915050565b600060208284031215610f7e57610f7d610e6e565b5b600082013567ffffffffffffffff811115610f9c57610f9b610e73565b5b610fa884828501610f48565b91505092915050565b6000610fbc82610dda565b9050919050565b610fcc81610fb1565b82525050565b6000602082019050610fe76000830184610fc3565b92915050565b600067ffffffffffffffff82169050919050565b61100a81610fed565b811461101557600080fd5b50565b60008135905061102781611001565b92915050565b60006020828403121561104357611042610e6e565b5b600061105184828501611018565b91505092915050565b61106381610ed1565b811461106e57600080fd5b50565b6000813590506110808161105a565b92915050565b60006020828403121561109c5761109b610e6e565b5b60006110aa84828501611071565b91505092915050565b600080fd5b600080fd5b600080fd5b600080833560016020038436030381126110df576110de6110b3565b5b80840192508235915067ffffffffffffffff821115611101576111006110b8565b5b60208301925060018202360383131561111d5761111c6110bd565b5b509250929050565b6000819050919050565b61113881611125565b811461114357600080fd5b50565b6000813590506111558161112f565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6111a982611160565b810181811067ffffffffffffffff821117156111c8576111c7611171565b5b80604052505050565b60006111db610e64565b90506111e782826111a0565b919050565b600067ffffffffffffffff82111561120757611206611171565b5b602082029050602081019050919050565b600080fd5b600061123061122b846111ec565b6111d1565b9050808382526020820190506020840283018581111561125357611252611218565b5b835b8181101561127c57806112688882611146565b845260208401935050602081019050611255565b5050509392505050565b600082601f83011261129b5761129a61115b565b5b81356112ab84826020860161121d565b91505092915050565b600067ffffffffffffffff8211156112cf576112ce611171565b5b602082029050602081019050919050565b600060ff82169050919050565b6112f6816112e0565b811461130157600080fd5b50565b600081359050611313816112ed565b92915050565b600061132c611327846112b4565b6111d1565b9050808382526020820190506020840283018581111561134f5761134e611218565b5b835b8181101561137857806113648882611304565b845260208401935050602081019050611351565b5050509392505050565b600082601f8301126113975761139661115b565b5b81356113a7848260208601611319565b91505092915050565b600080fd5b600067ffffffffffffffff8211156113d0576113cf611171565b5b6113d982611160565b9050602081019050919050565b82818337600083830152505050565b6000611408611403846113b5565b6111d1565b905082815260208101848484011115611424576114236113b0565b5b61142f8482856113e6565b509392505050565b600082601f83011261144c5761144b61115b565b5b813561145c8482602086016113f5565b91505092915050565b6000806000806080858703121561147f5761147e610e6e565b5b600061148d87828801611146565b945050602085013567ffffffffffffffff8111156114ae576114ad610e73565b5b6114ba87828801611286565b935050604085013567ffffffffffffffff8111156114db576114da610e73565b5b6114e787828801611382565b925050606085013567ffffffffffffffff81111561150857611507610e73565b5b61151487828801611437565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b61155881611125565b82525050565b6000602082019050611573600083018461154f565b92915050565b6000815190506115888161105a565b92915050565b6000602082840312156115a4576115a3610e6e565b5b60006115b284828501611579565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115f55780820151818401526020810190506115da565b60008484015250505050565b600061160c826115bb565b61161681856115c6565b93506116268185602086016115d7565b61162f81611160565b840191505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61166f81611125565b82525050565b60006116818383611666565b60208301905092915050565b6000602082019050919050565b60006116a58261163a565b6116af8185611645565b93506116ba83611656565b8060005b838110156116eb5781516116d28882611675565b97506116dd8361168d565b9250506001810190506116be565b5085935050505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61172d816112e0565b82525050565b600061173f8383611724565b60208301905092915050565b6000602082019050919050565b6000611763826116f8565b61176d8185611703565b935061177883611714565b8060005b838110156117a95781516117908882611733565b975061179b8361174b565b92505060018101905061177c565b5085935050505092915050565b600060a0820190506117cb600083018861154f565b6117d8602083018761154f565b81810360408301526117ea8186611601565b905081810360608301526117fe818561169a565b905081810360808301526118128184611758565b9050969550505050505056fea26469706673582212201006b2742634debc6748bae06cf6e3515868501be4d6ad9973964a4be74b325864736f6c63430008190033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000bd75f629a22dc1ced33dda0b68c546a1c035c4580000000000000000000000002e6de0735b896dd248b08dcb9ba1f1f6dd5bf1b700000000000000000000000095d4123c5fa150b04dd56b0ab5141decb41725b0

-----Decoded View---------------
Arg [0] : _eas (address): 0xbD75f629A22Dc1ceD33dDA0b68c546A1c035c458
Arg [1] : _grantRegistry (address): 0x2E6De0735b896dD248B08dcb9BA1f1f6Dd5bf1B7
Arg [2] : _badgeRegistry (address): 0x95d4123c5fA150B04dD56b0ab5141DEcB41725b0

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000bd75f629a22dc1ced33dda0b68c546a1c035c458
Arg [1] : 0000000000000000000000002e6de0735b896dd248b08dcb9ba1f1f6dd5bf1b7
Arg [2] : 00000000000000000000000095d4123c5fa150b04dd56b0ab5141decb41725b0


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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