Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 487 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 18394739 | 471 days ago | IN | 0.00063898 ETH | 0.00372905 | ||||
Mint | 18386612 | 472 days ago | IN | 0.00065536 ETH | 0.00272009 | ||||
Mint | 18348110 | 477 days ago | IN | 0.00066318 ETH | 0.00155928 | ||||
Mint | 18343141 | 478 days ago | IN | 0.00066608 ETH | 0.0026368 | ||||
Mint | 18301644 | 484 days ago | IN | 0.00062994 ETH | 0.00163733 | ||||
Mint | 18299487 | 484 days ago | IN | 0.00062637 ETH | 0.0016408 | ||||
Mint | 18291574 | 485 days ago | IN | 0.00063137 ETH | 0.00185903 | ||||
Mint | 18283208 | 486 days ago | IN | 0.00062709 ETH | 0.00164478 | ||||
Mint | 18276514 | 487 days ago | IN | 0.00062415 ETH | 0.00175497 | ||||
Mint | 18276397 | 487 days ago | IN | 0.0006249 ETH | 0.00167341 | ||||
Mint | 18260635 | 489 days ago | IN | 0.0005945 ETH | 0.00177621 | ||||
Mint | 18255403 | 490 days ago | IN | 0.00060871 ETH | 0.00237394 | ||||
Mint | 18248184 | 491 days ago | IN | 0.00061408 ETH | 0.00177664 | ||||
Mint | 18243515 | 492 days ago | IN | 0.00061771 ETH | 0.00203121 | ||||
Mint | 18225956 | 494 days ago | IN | 0.00064523 ETH | 0.00220692 | ||||
Mint | 18224993 | 494 days ago | IN | 0.00064475 ETH | 0.00157742 | ||||
Mint | 18131532 | 507 days ago | IN | 0.00063345 ETH | 0.00243695 | ||||
Mint | 17903837 | 539 days ago | IN | 0.00055529 ETH | 0.00242829 | ||||
Mint | 17902661 | 539 days ago | IN | 0.00055523 ETH | 0.00302161 | ||||
Mint | 17896610 | 540 days ago | IN | 0.0005554 ETH | 0.00352836 | ||||
Mint | 17894702 | 541 days ago | IN | 0.00055656 ETH | 0.00358827 | ||||
Mint | 17891750 | 541 days ago | IN | 0.00055595 ETH | 0.00430737 | ||||
Mint | 17888056 | 542 days ago | IN | 0.0005544 ETH | 0.00359799 | ||||
Mint | 17872183 | 544 days ago | IN | 0.00055349 ETH | 0.00790943 | ||||
Mint | 17870676 | 544 days ago | IN | 0.00055974 ETH | 0.00912976 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
18394739 | 471 days ago | 0.00001565 ETH | ||||
18394739 | 471 days ago | 0.00062333 ETH | ||||
18386612 | 472 days ago | 0.00001598 ETH | ||||
18386612 | 472 days ago | 0.00063937 ETH | ||||
18348110 | 477 days ago | 0.00001617 ETH | ||||
18348110 | 477 days ago | 0.000647 ETH | ||||
18343141 | 478 days ago | 0.00001627 ETH | ||||
18343141 | 478 days ago | 0.0006498 ETH | ||||
18301644 | 484 days ago | 0.00001536 ETH | ||||
18301644 | 484 days ago | 0.00061457 ETH | ||||
18299487 | 484 days ago | 0.00001519 ETH | ||||
18299487 | 484 days ago | 0.00061118 ETH | ||||
18291574 | 485 days ago | 0.00001539 ETH | ||||
18291574 | 485 days ago | 0.00061597 ETH | ||||
18283208 | 486 days ago | 0.00001525 ETH | ||||
18283208 | 486 days ago | 0.00061183 ETH | ||||
18276514 | 487 days ago | 0.00001522 ETH | ||||
18276514 | 487 days ago | 0.00060892 ETH | ||||
18276397 | 487 days ago | 0.00001524 ETH | ||||
18276397 | 487 days ago | 0.00060966 ETH | ||||
18260635 | 489 days ago | 0.0000145 ETH | ||||
18260635 | 489 days ago | 0.00058 ETH | ||||
18255403 | 490 days ago | 0.00001484 ETH | ||||
18255403 | 490 days ago | 0.00059386 ETH | ||||
18248184 | 491 days ago | 0.00001497 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SoulboundCreditScore
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 1 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./libraries/Errors.sol"; import "./tokens/MasaSBTSelfSovereign.sol"; /// @title Soulbound Credit Score /// @author Masa Finance /// @notice Soulbound token that represents a credit score. /// @dev Soulbound credit score, that inherits from the SBT contract. contract SoulboundCreditScore is MasaSBTSelfSovereign, ReentrancyGuard { /* ========== STATE VARIABLES =========================================== */ /* ========== INITIALIZE ================================================ */ /// @notice Creates a new soulbound credit score /// @dev Creates a new soulbound credit score, inheriting from the SBT contract. /// @param admin Administrator of the smart contract /// @param baseTokenURI Base URI of the token /// @param soulboundIdentity Address of the SoulboundIdentity contract /// @param paymentParams Payment gateway params constructor( address admin, string memory baseTokenURI, ISoulboundIdentity soulboundIdentity, PaymentParams memory paymentParams ) MasaSBTSelfSovereign( admin, "Masa Credit Score", "MCS", baseTokenURI, soulboundIdentity, paymentParams ) EIP712("SoulboundCreditScore", "1.0.0") {} /* ========== RESTRICTED FUNCTIONS ====================================== */ /* ========== MUTATIVE FUNCTIONS ======================================== */ /// @notice Mints a new SBT /// @dev The caller must have the MINTER role /// @param paymentMethod Address of token that user want to pay /// @param identityId TokenId of the identity to mint the NFT to /// @return The NFT ID of the newly minted SBT function mint( address paymentMethod, uint256 identityId, address authorityAddress, uint256 signatureDate, bytes calldata signature ) public payable virtual nonReentrant returns (uint256) { address to = soulboundIdentity.ownerOf(identityId); if (to != _msgSender()) revert CallerNotOwner(_msgSender()); if (balanceOf(to) > 0) revert CreditScoreAlreadyCreated(to); _verify( _hash(identityId, authorityAddress, signatureDate), signature, authorityAddress ); _pay(paymentMethod, getMintPrice(paymentMethod)); uint256 tokenId = _mintWithCounter(to); emit SoulboundCreditScoreMinted( tokenId, identityId, authorityAddress, signatureDate, paymentMethod, mintPrice ); return tokenId; } /// @notice Mints a new SBT /// @dev The caller must have the MINTER role /// @param paymentMethod Address of token that user want to pay /// @param to The address to mint the SBT to /// @return The SBT ID of the newly minted SBT function mint( address paymentMethod, address to, address authorityAddress, uint256 signatureDate, bytes calldata signature ) external payable virtual returns (uint256) { uint256 identityId = soulboundIdentity.tokenOfOwner(to); return mint( paymentMethod, identityId, authorityAddress, signatureDate, signature ); } /* ========== VIEWS ===================================================== */ /* ========== PRIVATE FUNCTIONS ========================================= */ function _hash( uint256 identityId, address authorityAddress, uint256 signatureDate ) internal view returns (bytes32) { return _hashTypedDataV4( keccak256( abi.encode( keccak256( "MintCreditScore(uint256 identityId,address authorityAddress,uint256 signatureDate)" ), identityId, authorityAddress, signatureDate ) ) ); } /* ========== MODIFIERS ================================================= */ /* ========== EVENTS ==================================================== */ event SoulboundCreditScoreMinted( uint256 tokenId, uint256 identityId, address authorityAddress, uint256 signatureDate, address paymentMethod, uint256 mintPrice ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; error AddressDoesNotHaveIdentity(address to); error AlreadyAdded(); error AuthorityNotExists(address authority); error CallerNotOwner(address caller); error CallerNotReader(address caller); error CreditScoreAlreadyCreated(address to); error IdentityAlreadyCreated(address to); error IdentityOwnerIsReader(uint256 readerIdentityId); error InsufficientEthAmount(uint256 amount); error IdentityOwnerNotTokenOwner(uint256 tokenId, uint256 ownerIdentityId); error InvalidPaymentMethod(address paymentMethod); error InvalidSignature(); error InvalidSignatureDate(uint256 signatureDate); error InvalidToken(address token); error InvalidTokenURI(string tokenURI); error LinkAlreadyExists( address token, uint256 tokenId, uint256 readerIdentityId, uint256 signatureDate ); error LinkAlreadyRevoked(); error LinkDoesNotExist(); error NameAlreadyExists(string name); error NameNotFound(string name); error NameRegisteredByOtherAccount(string name, uint256 tokenId); error NotAuthorized(address signer); error NonExistingErc20Token(address erc20token); error RefundFailed(); error SameValue(); error SBTAlreadyLinked(address token); error SoulNameContractNotSet(); error TokenNotFound(uint256 tokenId); error TransferFailed(); error URIAlreadyExists(string tokenURI); error ValidPeriodExpired(uint256 expirationDate); error ZeroAddress(); error ZeroLengthName(string name); error ZeroYearsPeriod(uint256 yearsPeriod);
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "../libraries/Errors.sol"; import "../interfaces/ISoulboundIdentity.sol"; import "../dex/PaymentGateway.sol"; import "./MasaSBT.sol"; /// @title MasaSBTSelfSovereign /// @author Masa Finance /// @notice Soulbound token. Non-fungible token that is not transferable. /// Adds a link to a SoulboundIdentity SC to let minting using the identityId /// Adds a payment gateway to let minting paying a fee /// Adds a self-sovereign protocol to let minting using an authority signature /// @dev Implementation of https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4105763 Soulbound token. abstract contract MasaSBTSelfSovereign is PaymentGateway, MasaSBT, EIP712 { /* ========== STATE VARIABLES =========================================== */ using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; ISoulboundIdentity public soulboundIdentity; uint256 public mintPrice; // price in stable coin uint256 public mintPriceMASA; // price in MASA mapping(address => bool) public authorities; /* ========== INITIALIZE ================================================ */ /// @notice Creates a new soulbound token /// @dev Creates a new soulbound token /// @param admin Administrator of the smart contract /// @param name Name of the token /// @param symbol Symbol of the token /// @param baseTokenURI Base URI of the token /// @param _soulboundIdentity Address of the SoulboundIdentity contract /// @param paymentParams Payment gateway params constructor( address admin, string memory name, string memory symbol, string memory baseTokenURI, ISoulboundIdentity _soulboundIdentity, PaymentParams memory paymentParams ) PaymentGateway(admin, paymentParams) MasaSBT(admin, name, symbol, baseTokenURI) { if (address(_soulboundIdentity) == address(0)) revert ZeroAddress(); soulboundIdentity = _soulboundIdentity; } /* ========== RESTRICTED FUNCTIONS ====================================== */ /// @notice Sets the SoulboundIdentity contract address linked to this SBT /// @dev The caller must be the admin to call this function /// @param _soulboundIdentity Address of the SoulboundIdentity contract function setSoulboundIdentity(ISoulboundIdentity _soulboundIdentity) external onlyRole(DEFAULT_ADMIN_ROLE) { if (address(_soulboundIdentity) == address(0)) revert ZeroAddress(); if (soulboundIdentity == _soulboundIdentity) revert SameValue(); soulboundIdentity = _soulboundIdentity; } /// @notice Sets the price of minting in stable coin /// @dev The caller must have the admin role to call this function /// @param _mintPrice New price of minting in stable coin function setMintPrice(uint256 _mintPrice) external onlyRole(DEFAULT_ADMIN_ROLE) { if (mintPrice == _mintPrice) revert SameValue(); mintPrice = _mintPrice; } /// @notice Sets the price of minting in MASA /// @dev The caller must have the admin role to call this function /// @param _mintPriceMASA New price of minting in MASA function setMintPriceMASA(uint256 _mintPriceMASA) external onlyRole(DEFAULT_ADMIN_ROLE) { if (mintPriceMASA == _mintPriceMASA) revert SameValue(); mintPriceMASA = _mintPriceMASA; } /// @notice Adds a new authority to the list of authorities /// @dev The caller must have the admin role to call this function /// @param _authority New authority to add function addAuthority(address _authority) external onlyRole(DEFAULT_ADMIN_ROLE) { if (_authority == address(0)) revert ZeroAddress(); if (authorities[_authority]) revert AlreadyAdded(); authorities[_authority] = true; } /// @notice Removes an authority from the list of authorities /// @dev The caller must have the admin role to call this function /// @param _authority Authority to remove function removeAuthority(address _authority) external onlyRole(DEFAULT_ADMIN_ROLE) { if (_authority == address(0)) revert ZeroAddress(); if (!authorities[_authority]) revert AuthorityNotExists(_authority); authorities[_authority] = false; } /* ========== MUTATIVE FUNCTIONS ======================================== */ /* ========== VIEWS ===================================================== */ /// @notice Returns the identityId owned by the given token /// @param tokenId Id of the token /// @return Id of the identity function getIdentityId(uint256 tokenId) external view returns (uint256) { address owner = super.ownerOf(tokenId); return soulboundIdentity.tokenOfOwner(owner); } /// @notice Returns the price for minting /// @dev Returns current pricing for minting /// @param paymentMethod Address of token that user want to pay /// @return Current price for minting in the given payment method function getMintPrice(address paymentMethod) public view returns (uint256) { if (mintPrice == 0 && mintPriceMASA == 0) { return 0; } else if ( paymentMethod == masaToken && enabledPaymentMethod[paymentMethod] && mintPriceMASA > 0 ) { // price in MASA without conversion rate return mintPriceMASA; } else if ( paymentMethod == stableCoin && enabledPaymentMethod[paymentMethod] ) { // stable coin return mintPrice; } else if (enabledPaymentMethod[paymentMethod]) { // ETH and ERC 20 token return _convertFromStableCoin(paymentMethod, mintPrice); } else { revert InvalidPaymentMethod(paymentMethod); } } /// @notice Query if a contract implements an interface /// @dev Interface identification is specified in ERC-165. /// @param interfaceId The interface identifier, as specified in ERC-165 /// @return `true` if the contract implements `interfaceId` and /// `interfaceId` is not 0xffffffff, `false` otherwise function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControl, MasaSBT) returns (bool) { return super.supportsInterface(interfaceId); } /* ========== PRIVATE FUNCTIONS ========================================= */ function _verify( bytes32 digest, bytes memory signature, address signer ) internal view { address _signer = ECDSA.recover(digest, signature); if (_signer != signer) revert InvalidSignature(); if (!authorities[_signer]) revert NotAuthorized(_signer); } function _mintWithCounter(address to) internal virtual returns (uint256) { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _mint(to, tokenId); return tokenId; } /* ========== MODIFIERS ================================================= */ /* ========== EVENTS ==================================================== */ }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.3) (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 } 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"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' 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 (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // 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) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @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) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "../tokens/SBT/ISBT.sol"; import "./ISoulName.sol"; interface ISoulboundIdentity is ISBT { function mint(address to) external returns (uint256); function mintIdentityWithName( address to, string memory name, uint256 yearsPeriod, string memory _tokenURI ) external returns (uint256); function getSoulName() external view returns (ISoulName); function tokenOfOwner(address owner) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "../libraries/Errors.sol"; import "../interfaces/dex/IUniswapRouter.sol"; /// @title Pay using a Decentralized automated market maker (AMM) when needed /// @author Masa Finance /// @notice Smart contract to call a Dex AMM smart contract to pay to a reserve wallet recipient /// @dev This smart contract will call the Uniswap Router interface, based on /// https://github.com/Uniswap/v2-periphery/blob/master/contracts/interfaces/IUniswapV2Router01.sol abstract contract PaymentGateway is AccessControl { using SafeERC20 for IERC20; using SafeMath for uint256; struct PaymentParams { address swapRouter; // Swap router address address wrappedNativeToken; // Wrapped native token address address stableCoin; // Stable coin to pay the fee in (USDC) address masaToken; // Utility token to pay the fee in (MASA) address reserveWallet; // Wallet that will receive the fee } /* ========== STATE VARIABLES =========================================== */ address public swapRouter; address public wrappedNativeToken; address public stableCoin; // USDC. It also needs to be enabled as payment method, if we want to pay in USDC address public masaToken; // MASA. It also needs to be enabled as payment method, if we want to pay in MASA // enabled payment methods: ETH and ERC20 tokens mapping(address => bool) public enabledPaymentMethod; address[] public enabledPaymentMethods; address public reserveWallet; /* ========== INITIALIZE ================================================ */ /// @notice Creates a new Dex AMM /// @dev Creates a new Decentralized automated market maker (AMM) smart contract, // that will call the Uniswap Router interface /// @param admin Administrator of the smart contract /// @param paymentParams Payment params constructor(address admin, PaymentParams memory paymentParams) { if (paymentParams.swapRouter == address(0)) revert ZeroAddress(); if (paymentParams.wrappedNativeToken == address(0)) revert ZeroAddress(); if (paymentParams.stableCoin == address(0)) revert ZeroAddress(); if (paymentParams.reserveWallet == address(0)) revert ZeroAddress(); _grantRole(DEFAULT_ADMIN_ROLE, admin); swapRouter = paymentParams.swapRouter; wrappedNativeToken = paymentParams.wrappedNativeToken; stableCoin = paymentParams.stableCoin; masaToken = paymentParams.masaToken; reserveWallet = paymentParams.reserveWallet; } /* ========== RESTRICTED FUNCTIONS ====================================== */ /// @notice Sets the swap router address /// @dev The caller must have the admin role to call this function /// @param _swapRouter New swap router address function setSwapRouter(address _swapRouter) external onlyRole(DEFAULT_ADMIN_ROLE) { if (_swapRouter == address(0)) revert ZeroAddress(); if (swapRouter == _swapRouter) revert SameValue(); swapRouter = _swapRouter; } /// @notice Sets the wrapped native token address /// @dev The caller must have the admin role to call this function /// @param _wrappedNativeToken New wrapped native token address function setWrappedNativeToken(address _wrappedNativeToken) external onlyRole(DEFAULT_ADMIN_ROLE) { if (_wrappedNativeToken == address(0)) revert ZeroAddress(); if (wrappedNativeToken == _wrappedNativeToken) revert SameValue(); wrappedNativeToken = _wrappedNativeToken; } /// @notice Sets the stable coin to pay the fee in (USDC) /// @dev The caller must have the admin role to call this function /// @param _stableCoin New stable coin to pay the fee in function setStableCoin(address _stableCoin) external onlyRole(DEFAULT_ADMIN_ROLE) { if (_stableCoin == address(0)) revert ZeroAddress(); if (stableCoin == _stableCoin) revert SameValue(); stableCoin = _stableCoin; } /// @notice Sets the utility token to pay the fee in (MASA) /// @dev The caller must have the admin role to call this function /// It can be set to address(0) to disable paying in MASA /// @param _masaToken New utility token to pay the fee in function setMasaToken(address _masaToken) external onlyRole(DEFAULT_ADMIN_ROLE) { if (masaToken == _masaToken) revert SameValue(); masaToken = _masaToken; } /// @notice Adds a new token as a valid payment method /// @dev The caller must have the admin role to call this function /// @param _paymentMethod New token to add function enablePaymentMethod(address _paymentMethod) external onlyRole(DEFAULT_ADMIN_ROLE) { if (enabledPaymentMethod[_paymentMethod]) revert AlreadyAdded(); enabledPaymentMethod[_paymentMethod] = true; enabledPaymentMethods.push(_paymentMethod); } /// @notice Removes a token as a valid payment method /// @dev The caller must have the admin role to call this function /// @param _paymentMethod Token to remove function disablePaymentMethod(address _paymentMethod) external onlyRole(DEFAULT_ADMIN_ROLE) { if (!enabledPaymentMethod[_paymentMethod]) revert NonExistingErc20Token(_paymentMethod); enabledPaymentMethod[_paymentMethod] = false; for (uint256 i = 0; i < enabledPaymentMethods.length; i++) { if (enabledPaymentMethods[i] == _paymentMethod) { enabledPaymentMethods[i] = enabledPaymentMethods[ enabledPaymentMethods.length - 1 ]; enabledPaymentMethods.pop(); break; } } } /// @notice Set the reserve wallet /// @dev The caller must have the admin role to call this function /// @param _reserveWallet New reserve wallet function setReserveWallet(address _reserveWallet) external onlyRole(DEFAULT_ADMIN_ROLE) { if (_reserveWallet == address(0)) revert ZeroAddress(); if (_reserveWallet == reserveWallet) revert SameValue(); reserveWallet = _reserveWallet; } /* ========== MUTATIVE FUNCTIONS ======================================== */ /* ========== VIEWS ===================================================== */ /// @notice Returns all available payment methods /// @dev Returns the address of all available payment methods /// @return Array of all enabled payment methods function getEnabledPaymentMethods() external view returns (address[] memory) { return enabledPaymentMethods; } /* ========== PRIVATE FUNCTIONS ========================================= */ /// @notice Converts an amount from a stable coin to a payment method amount /// @dev This method will perform the swap between the stable coin and the /// payment method, and return the amount of the payment method, /// performing the swap if necessary /// @param paymentMethod Address of token that user want to pay /// @param amount Price to be converted in the specified payment method function _convertFromStableCoin(address paymentMethod, uint256 amount) internal view returns (uint256) { if (!enabledPaymentMethod[paymentMethod] || paymentMethod == stableCoin) revert InvalidToken(paymentMethod); if (paymentMethod == address(0)) { return _estimateSwapAmount(wrappedNativeToken, stableCoin, amount); } else { return _estimateSwapAmount(paymentMethod, stableCoin, amount); } } /// @notice Performs the payment in any payment method /// @dev This method will transfer the funds to the reserve wallet, performing /// the swap if necessary /// @param paymentMethod Address of token that user want to pay /// @param amount Price to be paid in the specified payment method function _pay(address paymentMethod, uint256 amount) internal { if (amount == 0) return; if (!enabledPaymentMethod[paymentMethod]) revert InvalidPaymentMethod(paymentMethod); if (paymentMethod == address(0)) { // ETH if (msg.value < amount) revert InsufficientEthAmount(amount); (bool success, ) = payable(reserveWallet).call{value: amount}(""); if (!success) revert TransferFailed(); if (msg.value > amount) { // return diff uint256 refund = msg.value.sub(amount); (success, ) = payable(msg.sender).call{value: refund}(""); if (!success) revert RefundFailed(); } } else { // ERC20 token, including MASA and USDC IERC20(paymentMethod).safeTransferFrom( msg.sender, reserveWallet, amount ); } } function _estimateSwapAmount( address _fromToken, address _toToken, uint256 _amountOut ) private view returns (uint256) { uint256[] memory amounts; address[] memory path; path = _getPathFromTokenToToken(_fromToken, _toToken); amounts = IUniswapRouter(swapRouter).getAmountsIn(_amountOut, path); return amounts[0]; } function _getPathFromTokenToToken(address fromToken, address toToken) private view returns (address[] memory) { if (fromToken == wrappedNativeToken || toToken == wrappedNativeToken) { address[] memory path = new address[](2); path[0] = fromToken == wrappedNativeToken ? wrappedNativeToken : fromToken; path[1] = toToken == wrappedNativeToken ? wrappedNativeToken : toToken; return path; } else { address[] memory path = new address[](3); path[0] = fromToken; path[1] = wrappedNativeToken; path[2] = toToken; return path; } } /* ========== MODIFIERS ================================================= */ /* ========== EVENTS ==================================================== */ }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "../libraries/Errors.sol"; import "../interfaces/ILinkableSBT.sol"; import "./SBT/SBT.sol"; import "./SBT/extensions/SBTEnumerable.sol"; import "./SBT/extensions/SBTBurnable.sol"; /// @title MasaSBT /// @author Masa Finance /// @notice Soulbound token. Non-fungible token that is not transferable. /// @dev Implementation of https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4105763 Soulbound token. abstract contract MasaSBT is SBT, SBTEnumerable, AccessControl, SBTBurnable, ILinkableSBT { /* ========== STATE VARIABLES =========================================== */ using Strings for uint256; string private _baseTokenURI; uint256 public override addLinkPrice; // price in stable coin uint256 public override addLinkPriceMASA; // price in MASA uint256 public override queryLinkPrice; // price in stable coin uint256 public override queryLinkPriceMASA; // price in MASA /* ========== INITIALIZE ================================================ */ /// @notice Creates a new soulbound token /// @dev Creates a new soulbound token /// @param admin Administrator of the smart contract /// @param name Name of the token /// @param symbol Symbol of the token /// @param baseTokenURI Base URI of the token constructor( address admin, string memory name, string memory symbol, string memory baseTokenURI ) SBT(name, symbol) { _grantRole(DEFAULT_ADMIN_ROLE, admin); _baseTokenURI = baseTokenURI; } /* ========== RESTRICTED FUNCTIONS ====================================== */ /// @notice Sets the price for adding the link in SoulLinker in stable coin /// @dev The caller must have the admin role to call this function /// @param _addLinkPrice New price for adding the link in SoulLinker in stable coin function setAddLinkPrice(uint256 _addLinkPrice) external onlyRole(DEFAULT_ADMIN_ROLE) { if (addLinkPrice == _addLinkPrice) revert SameValue(); addLinkPrice = _addLinkPrice; } /// @notice Sets the price for adding the link in SoulLinker in MASA /// @dev The caller must have the admin role to call this function /// @param _addLinkPriceMASA New price for adding the link in SoulLinker in MASA function setAddLinkPriceMASA(uint256 _addLinkPriceMASA) external onlyRole(DEFAULT_ADMIN_ROLE) { if (addLinkPriceMASA == _addLinkPriceMASA) revert SameValue(); addLinkPriceMASA = _addLinkPriceMASA; } /// @notice Sets the price for reading data in SoulLinker in stable coin /// @dev The caller must have the admin role to call this function /// @param _queryLinkPrice New price for reading data in SoulLinker in stable coin function setQueryLinkPrice(uint256 _queryLinkPrice) external onlyRole(DEFAULT_ADMIN_ROLE) { if (queryLinkPrice == _queryLinkPrice) revert SameValue(); queryLinkPrice = _queryLinkPrice; } /// @notice Sets the price for reading data in SoulLinker in MASA /// @dev The caller must have the admin role to call this function /// @param _queryLinkPriceMASA New price for reading data in SoulLinker in MASA function setQueryLinkPriceMASA(uint256 _queryLinkPriceMASA) external onlyRole(DEFAULT_ADMIN_ROLE) { if (queryLinkPriceMASA == _queryLinkPriceMASA) revert SameValue(); queryLinkPriceMASA = _queryLinkPriceMASA; } /* ========== MUTATIVE FUNCTIONS ======================================== */ /* ========== VIEWS ===================================================== */ /// @notice Returns true if the token exists /// @dev Returns true if the token has been minted /// @param tokenId Token to check /// @return True if the token exists function exists(uint256 tokenId) external view returns (bool) { return _exists(tokenId); } /// @notice A distinct Uniform Resource Identifier (URI) for a given asset. /// @dev Throws if `_tokenId` is not a valid SBT. URIs are defined in RFC /// 3986. The URI may point to a JSON file that conforms to the "ERC721 /// Metadata JSON Schema". /// @param tokenId SBT to get the URI of /// @return URI of the SBT function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } /// @notice Query if a contract implements an interface /// @dev Interface identification is specified in ERC-165. /// @param interfaceId The interface identifier, as specified in ERC-165 /// @return `true` if the contract implements `interfaceId` and /// `interfaceId` is not 0xffffffff, `false` otherwise function supportsInterface(bytes4 interfaceId) public view virtual override(SBT, SBTEnumerable, AccessControl, IERC165) returns (bool) { return super.supportsInterface(interfaceId); } /* ========== PRIVATE FUNCTIONS ========================================= */ function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(SBT, SBTEnumerable) { super._beforeTokenTransfer(from, to, tokenId); } /* ========== MODIFIERS ================================================= */ /* ========== EVENTS ==================================================== */ }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_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) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; interface ISBT is IERC165 { /// @dev This emits when an SBT is newly minted. /// This event emits when SBTs are created event Mint(address indexed _owner, uint256 indexed _tokenId); /// @dev This emits when an SBT is burned /// This event emits when SBTs are destroyed event Burn(address indexed _owner, uint256 indexed _tokenId); /// @notice Count all SBTs assigned to an owner /// @dev SBTs assigned to the zero address are considered invalid, and this /// function throws for queries about the zero address. /// @param _owner An address for whom to query the balance /// @return The number of SBTs owned by `_owner`, possibly zero function balanceOf(address _owner) external view returns (uint256); /// @notice Find the owner of an SBT /// @dev SBTs assigned to zero address are considered invalid, and queries /// about them do throw. /// @param _tokenId The identifier for an SBT /// @return The address of the owner of the SBT function ownerOf(uint256 _tokenId) external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; interface ISoulName { function mint( address to, string memory name, uint256 yearsPeriod, string memory _tokenURI ) external returns (uint256); function getExtension() external view returns (string memory); function isAvailable(string memory name) external view returns (bool available); function getTokenData(string memory name) external view returns ( string memory sbtName, bool linked, uint256 identityId, uint256 tokenId, uint256 expirationDate, bool active ); function getTokenId(string memory name) external view returns (uint256); function getSoulNames(address owner) external view returns (string[] memory sbtNames); function getSoulNames(uint256 identityId) external view returns (string[] memory sbtNames); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; /// @title Uniswap Router interface /// @author Masa Finance /// @notice Interface of the Uniswap Router contract /// @dev This interface is used to interact with the Uniswap Router contract, /// and gets the most important functions of the contract. It's based on /// https://github.com/Uniswap/v2-periphery/blob/master/contracts/interfaces/IUniswapV2Router01.sol interface IUniswapRouter { function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "../tokens/SBT/ISBT.sol"; interface ILinkableSBT is ISBT { function addLinkPrice() external view returns (uint256); function addLinkPriceMASA() external view returns (uint256); function queryLinkPrice() external view returns (uint256); function queryLinkPriceMASA() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ISBT.sol"; import "./extensions/ISBTMetadata.sol"; /// @title SBT /// @author Masa Finance /// @notice Soulbound token is an NFT token that is not transferable. contract SBT is Context, ERC165, ISBT, ISBTMetadata { using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(ISBT).interfaceId || interfaceId == type(ISBTMetadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {ISBT-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "SBT: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {ISBT-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "SBT: invalid token ID"); return owner; } /** * @dev See {ISBTMetadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {ISBTMetadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {ISBTMetadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = SBT.ownerOf(tokenId); return (spender == owner); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Mint} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "SBT: mint to the zero address"); require(!_exists(tokenId), "SBT: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Mint(to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * * Requirements: * - `tokenId` must exist. * * Emits a {Burn} event. */ function _burn(uint256 tokenId) internal virtual { address owner = SBT.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Burn(owner, tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "SBT: invalid token ID"); } /** * @dev Hook that is called before any token minting/burning * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address, address, uint256 ) internal virtual {} /** * @dev Hook that is called after any minting/burning of tokens * * Calling conditions: * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address, address, uint256 ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "../SBT.sol"; import "./ISBTEnumerable.sol"; /** * @dev This implements an optional extension of {SBT} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract SBTEnumerable is SBT, ISBTEnumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, SBT) returns (bool) { return interfaceId == type(ISBTEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {ISBTEnumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require( index < SBT.balanceOf(owner), "SBTEnumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {ISBTEnumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {ISBTEnumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < SBTEnumerable.totalSupply(), "SBTEnumerable: global index out of bounds" ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = SBT.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = SBT.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/utils/Context.sol"; import "../SBT.sol"; /** * @title SBT Burnable Token * @dev SBT Token that can be burned (destroyed). */ abstract contract SBTBurnable is Context, SBT { /** * @dev Burns `tokenId`. See {SBT-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require( _isOwner(_msgSender(), tokenId), "SBT: caller is not token owner" ); _burn(tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "../ISBT.sol"; /** * @title SBT Soulbound Token Standard, optional metadata extension */ interface ISBTMetadata is ISBT { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "../ISBT.sol"; /** * @title SBT Soulbound Token Standard, optional enumeration extension */ interface ISBTEnumerable is ISBT { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
{ "optimizer": { "enabled": true, "runs": 1, "details": { "yul": false } }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"contract ISoulboundIdentity","name":"soulboundIdentity","type":"address"},{"components":[{"internalType":"address","name":"swapRouter","type":"address"},{"internalType":"address","name":"wrappedNativeToken","type":"address"},{"internalType":"address","name":"stableCoin","type":"address"},{"internalType":"address","name":"masaToken","type":"address"},{"internalType":"address","name":"reserveWallet","type":"address"}],"internalType":"struct PaymentGateway.PaymentParams","name":"paymentParams","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyAdded","type":"error"},{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"AuthorityNotExists","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"CallerNotOwner","type":"error"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"CreditScoreAlreadyCreated","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"InsufficientEthAmount","type":"error"},{"inputs":[{"internalType":"address","name":"paymentMethod","type":"address"}],"name":"InvalidPaymentMethod","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"InvalidToken","type":"error"},{"inputs":[{"internalType":"address","name":"erc20token","type":"address"}],"name":"NonExistingErc20Token","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"NotAuthorized","type":"error"},{"inputs":[],"name":"RefundFailed","type":"error"},{"inputs":[],"name":"SameValue","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"identityId","type":"uint256"},{"indexed":false,"internalType":"address","name":"authorityAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"signatureDate","type":"uint256"},{"indexed":false,"internalType":"address","name":"paymentMethod","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"SoulboundCreditScoreMinted","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_authority","type":"address"}],"name":"addAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"addLinkPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLinkPriceMASA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorities","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_paymentMethod","type":"address"}],"name":"disablePaymentMethod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_paymentMethod","type":"address"}],"name":"enablePaymentMethod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"enabledPaymentMethod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"enabledPaymentMethods","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEnabledPaymentMethods","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getIdentityId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"paymentMethod","type":"address"}],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masaToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"paymentMethod","type":"address"},{"internalType":"uint256","name":"identityId","type":"uint256"},{"internalType":"address","name":"authorityAddress","type":"address"},{"internalType":"uint256","name":"signatureDate","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentMethod","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"authorityAddress","type":"address"},{"internalType":"uint256","name":"signatureDate","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPriceMASA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"queryLinkPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"queryLinkPriceMASA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_authority","type":"address"}],"name":"removeAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_addLinkPrice","type":"uint256"}],"name":"setAddLinkPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_addLinkPriceMASA","type":"uint256"}],"name":"setAddLinkPriceMASA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_masaToken","type":"address"}],"name":"setMasaToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPriceMASA","type":"uint256"}],"name":"setMintPriceMASA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_queryLinkPrice","type":"uint256"}],"name":"setQueryLinkPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_queryLinkPriceMASA","type":"uint256"}],"name":"setQueryLinkPriceMASA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_reserveWallet","type":"address"}],"name":"setReserveWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISoulboundIdentity","name":"_soulboundIdentity","type":"address"}],"name":"setSoulboundIdentity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stableCoin","type":"address"}],"name":"setStableCoin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_swapRouter","type":"address"}],"name":"setSwapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wrappedNativeToken","type":"address"}],"name":"setWrappedNativeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soulboundIdentity","outputs":[{"internalType":"contract ISoulboundIdentity","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stableCoin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wrappedNativeToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101406040523480156200001257600080fd5b50604051620042c3380380620042c38339810160408190526200003591620005e5565b83604051806040016040528060118152602001704d617361204372656469742053636f726560781b815250604051806040016040528060038152602001624d435360e81b8152508585856040518060400160405280601481526020017f536f756c626f756e6443726564697453636f7265000000000000000000000000815250604051806040016040528060058152602001640312e302e360dc1b815250878787878b8784848160009080519060200190620000f392919062000418565b5080516200010990600190602084019062000418565b505081516001600160a01b031615159050620001385760405163d92e233d60e01b815260040160405180910390fd5b60208101516001600160a01b0316620001645760405163d92e233d60e01b815260040160405180910390fd5b60408101516001600160a01b0316620001905760405163d92e233d60e01b815260040160405180910390fd5b60808101516001600160a01b0316620001bc5760405163d92e233d60e01b815260040160405180910390fd5b620001c960008362000324565b8051600980546001600160a01b03199081166001600160a01b03938416179091556020830151600a805483169184169190911790556040830151600b805483169184169190911790556060830151600c80548316918416919091179055608090920151600f80549093169116179055506200024660008562000324565b80516200025b90601090602084019062000418565b5050845160208087019190912085519186019190912060e08290526101008190524660a05290935091507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f9050620002b5818484620003af565b6080523060601b60c05261012052505050506001600160a01b038216620002ef5760405163d92e233d60e01b815260040160405180910390fd5b50601680546001600160a01b0319166001600160a01b039290921691909117905550506001601a55506200083d945050505050565b620003308282620003eb565b620003ab5760008281526008602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200036a3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60008383834630604051602001620003cc95949392919062000688565b6040516020818303038152906040528051906020012090509392505050565b60008281526008602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b82805462000426906200077f565b90600052602060002090601f0160209004810192826200044a576000855562000495565b82601f106200046557805160ff191683800117855562000495565b8280016001018555821562000495579182015b828111156200049557825182559160200191906001019062000478565b50620004a3929150620004a7565b5090565b5b80821115620004a35760008155600101620004a8565b6000620004d5620004cf84620006fd565b620006de565b905082815260208101848484011115620004f257620004f2600080fd5b620004ff8482856200074c565b509392505050565b8051620004128162000818565b8051620004128162000832565b600082601f830112620005375762000537600080fd5b815162000549848260208601620004be565b949350505050565b600060a08284031215620005685762000568600080fd5b6200057460a0620006de565b9050600062000584848462000507565b8252506020620005978484830162000507565b6020830152506040620005ad8482850162000507565b6040830152506060620005c38482850162000507565b6060830152506080620005d98482850162000507565b60808301525092915050565b6000806000806101008587031215620006015762000601600080fd5b60006200060f878762000507565b94505060208501516001600160401b03811115620006305762000630600080fd5b6200063e8782880162000521565b9350506040620006518782880162000514565b9250506060620006648782880162000551565b91505092959194509250565b6200067b816200072d565b82525050565b806200067b565b60a0810162000698828862000681565b620006a7602083018762000681565b620006b6604083018662000681565b620006c5606083018562000681565b620006d4608083018462000670565b9695505050505050565b6000620006ea60405190565b9050620006f88282620007b0565b919050565b60006001600160401b03821115620007195762000719620007f8565b62000724826200080e565b60200192915050565b60006001600160a01b03821662000412565b600062000412826200072d565b60005b83811015620007695781810151838201526020016200074f565b8381111562000779576000848401525b50505050565b6002810460018216806200079457607f821691505b60208210811415620007aa57620007aa620007e2565b50919050565b620007bb826200080e565b81018181106001600160401b0382111715620007db57620007db620007f8565b6040525050565b634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b601f01601f191690565b62000823816200072d565b81146200082f57600080fd5b50565b62000823816200073f565b60805160a05160c05160601c60e0516101005161012051613a336200089060003960006121ca0152600061220c015260006121eb0152600061214f01526000612179015260006121a30152613a336000f3fe60806040526004361061025a5760003560e01c806301ffc9a71461025f5780630513c3e91461029557806306fdde03146102c257806310200519146102e457806313150b481461030657806317fcb39b1461032957806318160ddd146103495780631830e8811461035e5780631f37c1241461037457806320d558aa1461038a57806323af4e171461039d578063248a9ca3146103bf57806326defa73146103df578063289c686b146103ff5780632f2ff15d1461041f5780632f745c591461043f57806336568abe1461045f5780633ad3033e1461047f5780633c72ae701461049f57806341273657146104bf57806342966c68146104df5780634962a158146104ff5780634f558e791461051f5780634f6ccce71461053f5780636352211e1461055f5780636817c76c1461057f57806370a0823114610595578063719d0f2b146105b557806376ad1997146105d5578063776d1a54146105f557806377bed5ed1461060b5780637a0d1646146106385780637ad09dff146106685780637db8cb681461067b57806391223d691461069b57806391d14854146106cb57806394a665e9146106eb57806395d89b411461070b578063992642e514610720578063a217fddf14610740578063b97d6b2314610755578063c1177d191461076b578063c31c9c071461078b578063c86aadb6146107ab578063c87b56dd146107cb578063d544e010146107eb578063d547741f1461080b578063d72b11bd1461082b578063da058ae31461084b578063dda4fa8f1461086b578063ebda43961461088b578063f4a0a528146108ab578063fd48ac83146108cb575b600080fd5b34801561026b57600080fd5b5061027f61027a366004612ef3565b6108eb565b60405161028c919061352d565b60405180910390f35b3480156102a157600080fd5b506102b56102b0366004612e9f565b6108fc565b60405161028c91906134e6565b3480156102ce57600080fd5b506102d7610926565b60405161028c91906135ff565b3480156102f057600080fd5b506102f96109b8565b60405161028c919061351c565b34801561031257600080fd5b5061031c60145481565b60405161028c919061353b565b34801561033557600080fd5b50600a546102b5906001600160a01b031681565b34801561035557600080fd5b5060065461031c565b34801561036a57600080fd5b5061031c60185481565b34801561038057600080fd5b5061031c60115481565b61031c610398366004612e0b565b610a19565b3480156103a957600080fd5b506103bd6103b8366004612cf7565b610be5565b005b3480156103cb57600080fd5b5061031c6103da366004612e9f565b610c69565b3480156103eb57600080fd5b506103bd6103fa366004612cf7565b610c7e565b34801561040b57600080fd5b506103bd61041a366004612e9f565b610d0f565b34801561042b57600080fd5b506103bd61043a366004612ec0565b610d43565b34801561044b57600080fd5b5061031c61045a366004612dce565b610d64565b34801561046b57600080fd5b506103bd61047a366004612ec0565b610db6565b34801561048b57600080fd5b506103bd61049a366004612f14565b610dec565b3480156104ab57600080fd5b506103bd6104ba366004612e9f565b610e70565b3480156104cb57600080fd5b506103bd6104da366004612cf7565b610ea4565b3480156104eb57600080fd5b506103bd6104fa366004612e9f565b610f28565b34801561050b57600080fd5b506103bd61051a366004612e9f565b610f5a565b34801561052b57600080fd5b5061027f61053a366004612e9f565b610f8e565b34801561054b57600080fd5b5061031c61055a366004612e9f565b610f99565b34801561056b57600080fd5b506102b561057a366004612e9f565b610fe7565b34801561058b57600080fd5b5061031c60175481565b3480156105a157600080fd5b5061031c6105b0366004612cf7565b61101c565b3480156105c157600080fd5b5061031c6105d0366004612cf7565b611060565b3480156105e157600080fd5b506103bd6105f0366004612cf7565b611160565b34801561060157600080fd5b5061031c60125481565b34801561061757600080fd5b5060165461062b906001600160a01b031681565b60405161028c91906135f1565b34801561064457600080fd5b5061027f610653366004612cf7565b600d6020526000908152604090205460ff1681565b61031c610676366004612d39565b6111bd565b34801561068757600080fd5b506103bd610696366004612e9f565b611260565b3480156106a757600080fd5b5061027f6106b6366004612cf7565b60196020526000908152604090205460ff1681565b3480156106d757600080fd5b5061027f6106e6366004612ec0565b611294565b3480156106f757600080fd5b506103bd610706366004612cf7565b6112bf565b34801561071757600080fd5b506102d761142c565b34801561072c57600080fd5b50600b546102b5906001600160a01b031681565b34801561074c57600080fd5b5061031c600081565b34801561076157600080fd5b5061031c60135481565b34801561077757600080fd5b5061031c610786366004612e9f565b61143b565b34801561079757600080fd5b506009546102b5906001600160a01b031681565b3480156107b757600080fd5b506103bd6107c6366004612cf7565b6114cf565b3480156107d757600080fd5b506102d76107e6366004612e9f565b61157b565b3480156107f757600080fd5b506103bd610806366004612cf7565b6115e1565b34801561081757600080fd5b506103bd610826366004612ec0565b611670565b34801561083757600080fd5b50600f546102b5906001600160a01b031681565b34801561085757600080fd5b506103bd610866366004612cf7565b61168c565b34801561087757600080fd5b506103bd610886366004612cf7565b611710565b34801561089757600080fd5b50600c546102b5906001600160a01b031681565b3480156108b757600080fd5b506103bd6108c6366004612e9f565b611794565b3480156108d757600080fd5b506103bd6108e6366004612e9f565b6117c8565b60006108f6826117fc565b92915050565b600e818154811061090c57600080fd5b6000918252602090912001546001600160a01b0316905081565b60606000805461093590613895565b80601f016020809104026020016040519081016040528092919081815260200182805461096190613895565b80156109ae5780601f10610983576101008083540402835291602001916109ae565b820191906000526020600020905b81548152906001019060200180831161099157829003601f168201915b5050505050905090565b6060600e8054806020026020016040519081016040528092919081815260200182805480156109ae57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116109f2575050505050905090565b60006002601a541415610a475760405162461bcd60e51b8152600401610a3e90613700565b60405180910390fd5b6002601a556016546040516331a9108f60e11b81526000916001600160a01b031690636352211e90610a7d908a9060040161353b565b60206040518083038186803b158015610a9557600080fd5b505afa158015610aa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acd9190612d18565b90506001600160a01b0381163314610afa573360405163060296c760e31b8152600401610a3e91906134e6565b6000610b058261101c565b1115610b2657806040516397ac715160e01b8152600401610a3e91906134e6565b610b72610b34888888611807565b85858080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508b9250611866915050565b610b8488610b7f8a611060565b6118e7565b6000610b8f82611a8d565b90507fba587fc996588eaf73691ecc5a1c4c42228fab71b44f01544686211cb1e68177818989898d601754604051610bcc96959493929190613740565b60405180910390a16001601a5598975050505050505050565b6000610bf081611ab3565b6001600160a01b038216610c175760405163d92e233d60e01b815260040160405180910390fd5b600b546001600160a01b0383811691161415610c465760405163c23f6ccb60e01b815260040160405180910390fd5b50600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60009081526008602052604090206001015490565b6000610c8981611ab3565b6001600160a01b038216610cb05760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03821660009081526019602052604090205460ff1615610cea5760405163f411c32760e01b815260040160405180910390fd5b506001600160a01b03166000908152601960205260409020805460ff19166001179055565b6000610d1a81611ab3565b816011541415610d3d5760405163c23f6ccb60e01b815260040160405180910390fd5b50601155565b610d4c82610c69565b610d5581611ab3565b610d5f8383611abd565b505050565b6000610d6f8361101c565b8210610d8d5760405162461bcd60e51b8152600401610a3e90613650565b506001600160a01b03919091166000908152600460209081526040808320938352929052205490565b6001600160a01b0381163314610dde5760405162461bcd60e51b8152600401610a3e90613710565b610de88282611b43565b5050565b6000610df781611ab3565b6001600160a01b038216610e1e5760405163d92e233d60e01b815260040160405180910390fd5b6016546001600160a01b0383811691161415610e4d5760405163c23f6ccb60e01b815260040160405180910390fd5b50601680546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e7b81611ab3565b816012541415610e9e5760405163c23f6ccb60e01b815260040160405180910390fd5b50601255565b6000610eaf81611ab3565b6001600160a01b038216610ed65760405163d92e233d60e01b815260040160405180910390fd5b6009546001600160a01b0383811691161415610f055760405163c23f6ccb60e01b815260040160405180910390fd5b50600980546001600160a01b0319166001600160a01b0392909216919091179055565b610f323382611baa565b610f4e5760405162461bcd60e51b8152600401610a3e90613690565b610f5781611bcd565b50565b6000610f6581611ab3565b816018541415610f885760405163c23f6ccb60e01b815260040160405180910390fd5b50601855565b60006108f682611c67565b6000610fa460065490565b8210610fc25760405162461bcd60e51b8152600401610a3e906136f0565b60068281548110610fd557610fd561398c565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806108f65760405162461bcd60e51b8152600401610a3e906136c0565b60006001600160a01b0382166110445760405162461bcd60e51b8152600401610a3e90613680565b506001600160a01b031660009081526003602052604090205490565b600060175460001480156110745750601854155b1561108157506000919050565b600c546001600160a01b0383811691161480156110b657506001600160a01b0382166000908152600d602052604090205460ff165b80156110c457506000601854115b156110d157505060185490565b600b546001600160a01b03838116911614801561110657506001600160a01b0382166000908152600d602052604090205460ff165b1561111357505060175490565b6001600160a01b0382166000908152600d602052604090205460ff1615611140576108f682601754611c84565b81604051630ac29ab760e31b8152600401610a3e91906134e6565b919050565b600061116b81611ab3565b600c546001600160a01b038381169116141561119a5760405163c23f6ccb60e01b815260040160405180910390fd5b50600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60165460405163294cdf0d60e01b815260009182916001600160a01b039091169063294cdf0d906111f2908a906004016134e6565b60206040518083038186803b15801561120a57600080fd5b505afa15801561121e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112429190612f35565b9050611252888288888888610a19565b9150505b9695505050505050565b600061126b81611ab3565b81601454141561128e5760405163c23f6ccb60e01b815260040160405180910390fd5b50601455565b60009182526008602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60006112ca81611ab3565b6001600160a01b0382166000908152600d602052604090205460ff1661130557816040516318317bd560e01b8152600401610a3e91906134e6565b6001600160a01b0382166000908152600d60205260408120805460ff191690555b600e54811015610d5f57826001600160a01b0316600e828154811061134d5761134d61398c565b6000918252602090912001546001600160a01b0316141561141a57600e805461137890600190613814565b815481106113885761138861398c565b600091825260209091200154600e80546001600160a01b0390921691839081106113b4576113b461398c565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600e8054806113f3576113f3613976565b600082815260209020810160001990810180546001600160a01b0319169055019055505050565b80611424816138ef565b915050611326565b60606001805461093590613895565b60008061144783610fe7565b60165460405163294cdf0d60e01b81529192506001600160a01b03169063294cdf0d906114789084906004016134e6565b60206040518083038186803b15801561149057600080fd5b505afa1580156114a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c89190612f35565b9392505050565b60006114da81611ab3565b6001600160a01b0382166000908152600d602052604090205460ff16156115145760405163f411c32760e01b815260040160405180910390fd5b506001600160a01b03166000818152600d60205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b606061158682611d23565b6000611590611d48565b905060008151116115b057604051806020016040528060008152506114c8565b806115ba84611d57565b6040516020016115cb92919061342d565b6040516020818303038152906040529392505050565b60006115ec81611ab3565b6001600160a01b0382166116135760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03821660009081526019602052604090205460ff1661164e57816040516324b1f80560e21b8152600401610a3e91906134e6565b506001600160a01b03166000908152601960205260409020805460ff19169055565b61167982610c69565b61168281611ab3565b610d5f8383611b43565b600061169781611ab3565b6001600160a01b0382166116be5760405163d92e233d60e01b815260040160405180910390fd5b600a546001600160a01b03838116911614156116ed5760405163c23f6ccb60e01b815260040160405180910390fd5b50600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600061171b81611ab3565b6001600160a01b0382166117425760405163d92e233d60e01b815260040160405180910390fd5b600f546001600160a01b03838116911614156117715760405163c23f6ccb60e01b815260040160405180910390fd5b50600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600061179f81611ab3565b8160175414156117c25760405163c23f6ccb60e01b815260040160405180910390fd5b50601755565b60006117d381611ab3565b8160135414156117f65760405163c23f6ccb60e01b815260040160405180910390fd5b50601355565b60006108f682611e54565b600061185e7fbf4c764a640e301e74685ff05395cceaed1d80e171501b6b6ffb339acfef6f18858585604051602001611843949392919061358b565b60405160208183030381529060405280519060200120611e79565b949350505050565b60006118728484611e8c565b9050816001600160a01b0316816001600160a01b0316146118a657604051638baa579f60e01b815260040160405180910390fd5b6001600160a01b03811660009081526019602052604090205460ff166118e15780604051634a0bfec160e01b8152600401610a3e91906134e6565b50505050565b806118f0575050565b6001600160a01b0382166000908152600d602052604090205460ff1661192b5781604051630ac29ab760e31b8152600401610a3e91906134e6565b6001600160a01b038216611a71578034101561195c578060405163091a6d0f60e01b8152600401610a3e919061353b565b600f546040516000916001600160a01b031690839061197a9061348c565b60006040518083038185875af1925050503d80600081146119b7576040519150601f19603f3d011682016040523d82523d6000602084013e6119bc565b606091505b50509050806119de576040516312171d8360e31b815260040160405180910390fd5b81341115610d5f5760006119f23484611eb0565b9050336001600160a01b031681604051611a0b9061348c565b60006040518083038185875af1925050503d8060008114611a48576040519150601f19603f3d011682016040523d82523d6000602084013e611a4d565b606091505b505080925050816118e157604051633c31275160e21b815260040160405180910390fd5b600f54610de8906001600160a01b038481169133911684611ebc565b600080611a9960155490565b9050611aa9601580546001019055565b6108f68382611f14565b610f578133611ff0565b611ac78282611294565b610de85760008281526008602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611aff3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611b4d8282611294565b15610de85760008281526008602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600080611bb683610fe7565b6001600160a01b0385811691161491505092915050565b6000611bd882610fe7565b9050611be681600084612054565b6001600160a01b0381166000908152600360205260408120805460019290611c0f908490613814565b909155505060008281526002602052604080822080546001600160a01b03191690555183916001600160a01b038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59190a35050565b6000908152600260205260409020546001600160a01b0316151590565b6001600160a01b0382166000908152600d602052604081205460ff161580611cb95750600b546001600160a01b038481169116145b15611cd9578260405163961c9a4f60e01b8152600401610a3e91906134e6565b6001600160a01b038316611d0b57600a54600b54611d04916001600160a01b0390811691168461205f565b90506108f6565b600b54611d049084906001600160a01b03168461205f565b611d2c81611c67565b610f575760405162461bcd60e51b8152600401610a3e906136c0565b60606010805461093590613895565b606081611d7b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611da55780611d8f816138ef565b9150611d9e9050600a836137e1565b9150611d7f565b6000816001600160401b03811115611dbf57611dbf6139a2565b6040519080825280601f01601f191660200182016040528015611de9576020820181803683370190505b5090505b841561185e57611dfe600183613814565b9150611e0b600a8661390a565b611e169060306137c9565b60f81b818381518110611e2b57611e2b61398c565b60200101906001600160f81b031916908160001a905350611e4d600a866137e1565b9450611ded565b60006001600160e01b03198216637965db0b60e01b14806108f657506108f68261211d565b60006108f6611e86612142565b83612235565b6000806000611e9b8585612268565b91509150611ea8816122ae565b509392505050565b60006114c88284613814565b6118e1846323b872dd60e01b858585604051602401611edd939291906134f4565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612393565b6001600160a01b038216611f3a5760405162461bcd60e51b8152600401610a3e90613640565b611f4381611c67565b15611f605760405162461bcd60e51b8152600401610a3e906136b0565b611f6c60008383612054565b6001600160a01b0382166000908152600360205260408120805460019290611f959084906137c9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038616908117909155905183927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688591a35050565b611ffa8282611294565b610de857612012816001600160a01b03166014612422565b61201d836020612422565b60405160200161202e929190613494565b60408051601f198184030181529082905262461bcd60e51b8252610a3e916004016135ff565b610d5f83838361258d565b600060608061206e8686612645565b6009546040516307c0329d60e21b81529192506001600160a01b031690631f00ca74906120a19087908590600401613720565b60006040518083038186803b1580156120b957600080fd5b505afa1580156120cd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526120f59190810190612e44565b91508160008151811061210a5761210a61398c565b6020026020010151925050509392505050565b60006001600160e01b0319821663780e9d6360e01b14806108f657506108f6826127d7565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561219b57507f000000000000000000000000000000000000000000000000000000000000000046145b156121c557507f000000000000000000000000000000000000000000000000000000000000000090565b6122307f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612827565b905090565b6000828260405160200161224a92919061345b565b60405160208183030381529060405280519060200120905092915050565b60008082516041141561229f5760208301516040840151606085015160001a61229387828585612861565b945094505050506122a7565b506000905060025b9250929050565b60008160048111156122c2576122c261394a565b14156122cb5750565b60018160048111156122df576122df61394a565b14156122fd5760405162461bcd60e51b8152600401610a3e90613610565b60028160048111156123115761231161394a565b141561232f5760405162461bcd60e51b8152600401610a3e90613630565b60038160048111156123435761234361394a565b14156123615760405162461bcd60e51b8152600401610a3e90613660565b60048160048111156123755761237561394a565b1415610f575760405162461bcd60e51b8152600401610a3e906136a0565b60006123e8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166129379092919063ffffffff16565b805190915015610d5f57808060200190518101906124069190612e7e565b610d5f5760405162461bcd60e51b8152600401610a3e906136e0565b606060006124318360026137f5565b61243c9060026137c9565b6001600160401b03811115612453576124536139a2565b6040519080825280601f01601f19166020018201604052801561247d576020820181803683370190505b509050600360fc1b816000815181106124985761249861398c565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106124c7576124c761398c565b60200101906001600160f81b031916908160001a90535060006124eb8460026137f5565b6124f69060016137c9565b90505b600181111561256e576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061252a5761252a61398c565b1a60f81b8282815181106125405761254061398c565b60200101906001600160f81b031916908160001a90535060049490941c936125678161387e565b90506124f9565b5083156114c85760405162461bcd60e51b8152600401610a3e90613620565b6001600160a01b0383166125e8576125e381600680546000838152600760205260408120829055600182018355919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0155565b61260b565b816001600160a01b0316836001600160a01b03161461260b5761260b8382612946565b6001600160a01b03821661262257610d5f816129e3565b826001600160a01b0316826001600160a01b031614610d5f57610d5f8282612a92565b600a546060906001600160a01b03848116911614806126715750600a546001600160a01b038381169116145b1561273b5760408051600280825260608201835260009260208301908036833701905050600a549091506001600160a01b038581169116146126b357836126c0565b600a546001600160a01b03165b816000815181106126d3576126d361398c565b6001600160a01b039283166020918202929092010152600a548482169116146126fc5782612709565b600a546001600160a01b03165b8160018151811061271c5761271c61398c565b6001600160a01b039092166020928302919091019091015290506108f6565b604080516003808252608082019092526000916020820160608036833701905050905083816000815181106127725761277261398c565b6001600160a01b039283166020918202929092010152600a548251911690829060019081106127a3576127a361398c565b60200260200101906001600160a01b031690816001600160a01b031681525050828160028151811061271c5761271c61398c565b60006001600160e01b031982166313f2a32f60e01b148061280857506001600160e01b03198216635b5e139f60e01b145b806108f657506301ffc9a760e01b6001600160e01b03198316146108f6565b60008383834630604051602001612842959493929190613549565b6040516020818303038152906040528051906020012090509392505050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b0383111561288e575060009050600361292e565b8460ff16601b141580156128a657508460ff16601c14155b156128b7575060009050600461292e565b6000600187878787604051600081526020016040526040516128dc94939291906135c9565b6020604051602081039080840390855afa1580156128fe573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166129275760006001925092505061292e565b9150600090505b94509492505050565b606061185e8484600085612ad6565b600060016129538461101c565b61295d9190613814565b6000838152600560205260409020549091508082146129b0576001600160a01b03841660009081526004602090815260408083208584528252808320548484528184208190558352600590915290208190555b5060009182526005602090815260408084208490556001600160a01b039094168352600481528383209183525290812055565b6006546000906129f590600190613814565b60008381526007602052604081205460068054939450909284908110612a1d57612a1d61398c565b906000526020600020015490508060068381548110612a3e57612a3e61398c565b6000918252602080832090910192909255828152600790915260408082208490558582528120556006805480612a7657612a76613976565b6001900381819060005260206000200160009055905550505050565b6000612a9d8361101c565b6001600160a01b039093166000908152600460209081526040808320868452825280832085905593825260059052919091209190915550565b606082471015612af85760405162461bcd60e51b8152600401610a3e90613670565b6001600160a01b0385163b612b1f5760405162461bcd60e51b8152600401610a3e906136d0565b600080866001600160a01b03168587604051612b3b9190613421565b60006040518083038185875af1925050503d8060008114612b78576040519150601f19603f3d011682016040523d82523d6000602084013e612b7d565b606091505b5091509150612b8d828286612b98565b979650505050505050565b60608315612ba75750816114c8565b825115612bb75782518084602001fd5b8160405162461bcd60e51b8152600401610a3e91906135ff565b6000612be4612bdf846137a6565b61378f565b90508083825260208201905082856020860282011115612c0657612c06600080fd5b60005b85811015612c325781612c1c8882612cec565b8452506020928301929190910190600101612c09565b5050509392505050565b80356108f6816139c2565b80516108f6816139c2565b600082601f830112612c6657612c66600080fd5b815161185e848260208601612bd1565b80516108f6816139d6565b80356108f6816139de565b80356108f6816139e4565b60008083601f840112612cac57612cac600080fd5b5081356001600160401b03811115612cc657612cc6600080fd5b6020830191508360018202830111156122a7576122a7600080fd5b80356108f6816139f4565b80516108f6816139de565b600060208284031215612d0c57612d0c600080fd5b600061185e8484612c3c565b600060208284031215612d2d57612d2d600080fd5b600061185e8484612c47565b60008060008060008060a08789031215612d5557612d55600080fd5b6000612d618989612c3c565b9650506020612d7289828a01612c3c565b9550506040612d8389828a01612c3c565b9450506060612d9489828a01612c81565b93505060808701356001600160401b03811115612db357612db3600080fd5b612dbf89828a01612c97565b92509250509295509295509295565b60008060408385031215612de457612de4600080fd5b6000612df08585612c3c565b9250506020612e0185828601612c81565b9150509250929050565b60008060008060008060a08789031215612e2757612e27600080fd5b6000612e338989612c3c565b9650506020612d7289828a01612c81565b600060208284031215612e5957612e59600080fd5b81516001600160401b03811115612e7257612e72600080fd5b61185e84828501612c52565b600060208284031215612e9357612e93600080fd5b600061185e8484612c76565b600060208284031215612eb457612eb4600080fd5b600061185e8484612c81565b60008060408385031215612ed657612ed6600080fd5b6000612ee28585612c81565b9250506020612e0185828601612c3c565b600060208284031215612f0857612f08600080fd5b600061185e8484612c8c565b600060208284031215612f2957612f29600080fd5b600061185e8484612ce1565b600060208284031215612f4a57612f4a600080fd5b600061185e8484612cec565b6000612f628383612f6a565b505060200190565b612f738161382b565b82525050565b6000612f83825190565b80845260209384019383018060005b83811015612fb7578151612fa68882612f56565b975060208301925050600101612f92565b509495945050505050565b801515612f73565b80612f73565b6000612fda825190565b612fe8818560208601613852565b9290920192915050565b612f7381613847565b6000613005825190565b80845260208401935061301c818560208601613852565b613025816139b8565b9093019392505050565b601881526000602082017745434453413a20696e76616c6964207369676e617475726560401b815291505b5060200190565b60208082527f537472696e67733a20686578206c656e67746820696e73756666696369656e749101908152600061305a565b601f81526000602082017f45434453413a20696e76616c6964207369676e6174757265206c656e677468008152915061305a565b601d81526000602082017f5342543a206d696e7420746f20746865207a65726f20616464726573730000008152915061305a565b602881526000602082017f534254456e756d657261626c653a206f776e657220696e646578206f7574206f8152676620626f756e647360c01b602082015291505b5060400190565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202773272076616c815261756560f01b6020820152915061313c565b602681526000602082017f416464726573733a20696e73756666696369656e742062616c616e636520666f8152651c8818d85b1b60d21b6020820152915061313c565b602681526000602082017f5342543a2061646472657373207a65726f206973206e6f7420612076616c69648152651037bbb732b960d11b6020820152915061313c565b601e81526000602082017f5342543a2063616c6c6572206973206e6f7420746f6b656e206f776e657200008152915061305a565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202776272076616c815261756560f01b6020820152915061313c565b601981526000602082017814d0950e881d1bdad95b88185b1c9958591e481b5a5b9d1959603a1b8152915061305a565b601581526000602082017414d0950e881a5b9d985b1a59081d1bdad95b881251605a1b8152915061305a565b601d81526000602082017f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000008152915061305a565b602a81526000602082017f5361666545524332303a204552433230206f7065726174696f6e20646964206e8152691bdd081cdd58d8d9595960b21b6020820152915061313c565b602981526000602082017f534254456e756d657261626c653a20676c6f62616c20696e646578206f7574208152686f6620626f756e647360b81b6020820152915061313c565b601f81526000602082017f5265656e7472616e637947756172643a207265656e7472616e742063616c6c008152915061305a565b602f81526000602082017f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636581526e103937b632b9903337b91039b2b63360891b6020820152915061313c565b60ff8116612f73565b60006114c88284612fd0565b60006134398285612fd0565b91506134458284612fd0565b64173539b7b760d91b815291506005820161185e565b61190160f01b815260020160006134728285612fca565b6020820191506134828284612fca565b5060200192915050565b6000816108f6565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260170160006134c08285612fd0565b7001034b99036b4b9b9b4b733903937b6329607d1b8152601101915061185e8284612fd0565b602081016108f68284612f6a565b606081016135028286612f6a565b61350f6020830185612f6a565b61185e6040830184612fca565b602080825281016114c88184612f79565b602081016108f68284612fc2565b602081016108f68284612fca565b60a081016135578288612fca565b6135646020830187612fca565b6135716040830186612fca565b61357e6060830185612fca565b6112566080830184612f6a565b608081016135998287612fca565b6135a66020830186612fca565b6135b36040830185612f6a565b6135c06060830184612fca565b95945050505050565b608081016135d78287612fca565b6135e46020830186613418565b6135b36040830185612fca565b602081016108f68284612ff2565b602080825281016114c88184612ffb565b602080825281016108f68161302f565b602080825281016108f681613061565b602080825281016108f681613093565b602080825281016108f6816130c7565b602080825281016108f6816130fb565b602080825281016108f681613143565b602080825281016108f681613182565b602080825281016108f6816131c5565b602080825281016108f681613208565b602080825281016108f68161323c565b602080825281016108f68161327b565b602080825281016108f6816132ab565b602080825281016108f6816132d7565b602080825281016108f68161330b565b602080825281016108f681613352565b602080825281016108f681613398565b602080825281016108f6816133cc565b6040810161372e8285612fca565b818103602083015261185e8184612f79565b60c0810161374e8289612fca565b61375b6020830188612fca565b6137686040830187612f6a565b6137756060830186612fca565b6137826080830185612f6a565b612b8d60a0830184612fca565b600061379a60405190565b905061115b82826138c2565b60006001600160401b038211156137bf576137bf6139a2565b5060209081020190565b600082198211156137dc576137dc61391e565b500190565b6000826137f0576137f0613934565b500490565b600081600019048311821515161561380f5761380f61391e565b500290565b6000828210156138265761382661391e565b500390565b60006001600160a01b0382166108f6565b60006108f68261382b565b60006108f68261383c565b60005b8381101561386d578181015183820152602001613855565b838111156118e15750506000910152565b60008161388d5761388d61391e565b506000190190565b6002810460018216806138a957607f821691505b602082108114156138bc576138bc613960565b50919050565b6138cb826139b8565b81018181106001600160401b03821117156138e8576138e86139a2565b6040525050565b60006000198214156139035761390361391e565b5060010190565b60008261391957613919613934565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b601f01601f191690565b6139cb8161382b565b8114610f5757600080fd5b8015156139cb565b806139cb565b6001600160e01b031981166139cb565b6139cb8161383c56fea26469706673582212205d75f245126247f98e1949a7e942ff76920fe57bb56f73e2e6575ed51cbc45b564736f6c63430008070033000000000000000000000000bb4125c48e8c69b0f06e0c635dfcd0aa250fcbf900000000000000000000000000000000000000000000000000000000000001000000000000000000000000008903d8d4f4c06814d7ecb42b1258e2209d53a7d40000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ccfa6a842151f53e18a5d56edfd0177fa8c8d7f5000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f6d657461646174612e6d6173612e66696e616e63652f76312e302f6372656469742d73636f72652f00000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025a5760003560e01c806301ffc9a71461025f5780630513c3e91461029557806306fdde03146102c257806310200519146102e457806313150b481461030657806317fcb39b1461032957806318160ddd146103495780631830e8811461035e5780631f37c1241461037457806320d558aa1461038a57806323af4e171461039d578063248a9ca3146103bf57806326defa73146103df578063289c686b146103ff5780632f2ff15d1461041f5780632f745c591461043f57806336568abe1461045f5780633ad3033e1461047f5780633c72ae701461049f57806341273657146104bf57806342966c68146104df5780634962a158146104ff5780634f558e791461051f5780634f6ccce71461053f5780636352211e1461055f5780636817c76c1461057f57806370a0823114610595578063719d0f2b146105b557806376ad1997146105d5578063776d1a54146105f557806377bed5ed1461060b5780637a0d1646146106385780637ad09dff146106685780637db8cb681461067b57806391223d691461069b57806391d14854146106cb57806394a665e9146106eb57806395d89b411461070b578063992642e514610720578063a217fddf14610740578063b97d6b2314610755578063c1177d191461076b578063c31c9c071461078b578063c86aadb6146107ab578063c87b56dd146107cb578063d544e010146107eb578063d547741f1461080b578063d72b11bd1461082b578063da058ae31461084b578063dda4fa8f1461086b578063ebda43961461088b578063f4a0a528146108ab578063fd48ac83146108cb575b600080fd5b34801561026b57600080fd5b5061027f61027a366004612ef3565b6108eb565b60405161028c919061352d565b60405180910390f35b3480156102a157600080fd5b506102b56102b0366004612e9f565b6108fc565b60405161028c91906134e6565b3480156102ce57600080fd5b506102d7610926565b60405161028c91906135ff565b3480156102f057600080fd5b506102f96109b8565b60405161028c919061351c565b34801561031257600080fd5b5061031c60145481565b60405161028c919061353b565b34801561033557600080fd5b50600a546102b5906001600160a01b031681565b34801561035557600080fd5b5060065461031c565b34801561036a57600080fd5b5061031c60185481565b34801561038057600080fd5b5061031c60115481565b61031c610398366004612e0b565b610a19565b3480156103a957600080fd5b506103bd6103b8366004612cf7565b610be5565b005b3480156103cb57600080fd5b5061031c6103da366004612e9f565b610c69565b3480156103eb57600080fd5b506103bd6103fa366004612cf7565b610c7e565b34801561040b57600080fd5b506103bd61041a366004612e9f565b610d0f565b34801561042b57600080fd5b506103bd61043a366004612ec0565b610d43565b34801561044b57600080fd5b5061031c61045a366004612dce565b610d64565b34801561046b57600080fd5b506103bd61047a366004612ec0565b610db6565b34801561048b57600080fd5b506103bd61049a366004612f14565b610dec565b3480156104ab57600080fd5b506103bd6104ba366004612e9f565b610e70565b3480156104cb57600080fd5b506103bd6104da366004612cf7565b610ea4565b3480156104eb57600080fd5b506103bd6104fa366004612e9f565b610f28565b34801561050b57600080fd5b506103bd61051a366004612e9f565b610f5a565b34801561052b57600080fd5b5061027f61053a366004612e9f565b610f8e565b34801561054b57600080fd5b5061031c61055a366004612e9f565b610f99565b34801561056b57600080fd5b506102b561057a366004612e9f565b610fe7565b34801561058b57600080fd5b5061031c60175481565b3480156105a157600080fd5b5061031c6105b0366004612cf7565b61101c565b3480156105c157600080fd5b5061031c6105d0366004612cf7565b611060565b3480156105e157600080fd5b506103bd6105f0366004612cf7565b611160565b34801561060157600080fd5b5061031c60125481565b34801561061757600080fd5b5060165461062b906001600160a01b031681565b60405161028c91906135f1565b34801561064457600080fd5b5061027f610653366004612cf7565b600d6020526000908152604090205460ff1681565b61031c610676366004612d39565b6111bd565b34801561068757600080fd5b506103bd610696366004612e9f565b611260565b3480156106a757600080fd5b5061027f6106b6366004612cf7565b60196020526000908152604090205460ff1681565b3480156106d757600080fd5b5061027f6106e6366004612ec0565b611294565b3480156106f757600080fd5b506103bd610706366004612cf7565b6112bf565b34801561071757600080fd5b506102d761142c565b34801561072c57600080fd5b50600b546102b5906001600160a01b031681565b34801561074c57600080fd5b5061031c600081565b34801561076157600080fd5b5061031c60135481565b34801561077757600080fd5b5061031c610786366004612e9f565b61143b565b34801561079757600080fd5b506009546102b5906001600160a01b031681565b3480156107b757600080fd5b506103bd6107c6366004612cf7565b6114cf565b3480156107d757600080fd5b506102d76107e6366004612e9f565b61157b565b3480156107f757600080fd5b506103bd610806366004612cf7565b6115e1565b34801561081757600080fd5b506103bd610826366004612ec0565b611670565b34801561083757600080fd5b50600f546102b5906001600160a01b031681565b34801561085757600080fd5b506103bd610866366004612cf7565b61168c565b34801561087757600080fd5b506103bd610886366004612cf7565b611710565b34801561089757600080fd5b50600c546102b5906001600160a01b031681565b3480156108b757600080fd5b506103bd6108c6366004612e9f565b611794565b3480156108d757600080fd5b506103bd6108e6366004612e9f565b6117c8565b60006108f6826117fc565b92915050565b600e818154811061090c57600080fd5b6000918252602090912001546001600160a01b0316905081565b60606000805461093590613895565b80601f016020809104026020016040519081016040528092919081815260200182805461096190613895565b80156109ae5780601f10610983576101008083540402835291602001916109ae565b820191906000526020600020905b81548152906001019060200180831161099157829003601f168201915b5050505050905090565b6060600e8054806020026020016040519081016040528092919081815260200182805480156109ae57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116109f2575050505050905090565b60006002601a541415610a475760405162461bcd60e51b8152600401610a3e90613700565b60405180910390fd5b6002601a556016546040516331a9108f60e11b81526000916001600160a01b031690636352211e90610a7d908a9060040161353b565b60206040518083038186803b158015610a9557600080fd5b505afa158015610aa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acd9190612d18565b90506001600160a01b0381163314610afa573360405163060296c760e31b8152600401610a3e91906134e6565b6000610b058261101c565b1115610b2657806040516397ac715160e01b8152600401610a3e91906134e6565b610b72610b34888888611807565b85858080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508b9250611866915050565b610b8488610b7f8a611060565b6118e7565b6000610b8f82611a8d565b90507fba587fc996588eaf73691ecc5a1c4c42228fab71b44f01544686211cb1e68177818989898d601754604051610bcc96959493929190613740565b60405180910390a16001601a5598975050505050505050565b6000610bf081611ab3565b6001600160a01b038216610c175760405163d92e233d60e01b815260040160405180910390fd5b600b546001600160a01b0383811691161415610c465760405163c23f6ccb60e01b815260040160405180910390fd5b50600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60009081526008602052604090206001015490565b6000610c8981611ab3565b6001600160a01b038216610cb05760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03821660009081526019602052604090205460ff1615610cea5760405163f411c32760e01b815260040160405180910390fd5b506001600160a01b03166000908152601960205260409020805460ff19166001179055565b6000610d1a81611ab3565b816011541415610d3d5760405163c23f6ccb60e01b815260040160405180910390fd5b50601155565b610d4c82610c69565b610d5581611ab3565b610d5f8383611abd565b505050565b6000610d6f8361101c565b8210610d8d5760405162461bcd60e51b8152600401610a3e90613650565b506001600160a01b03919091166000908152600460209081526040808320938352929052205490565b6001600160a01b0381163314610dde5760405162461bcd60e51b8152600401610a3e90613710565b610de88282611b43565b5050565b6000610df781611ab3565b6001600160a01b038216610e1e5760405163d92e233d60e01b815260040160405180910390fd5b6016546001600160a01b0383811691161415610e4d5760405163c23f6ccb60e01b815260040160405180910390fd5b50601680546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e7b81611ab3565b816012541415610e9e5760405163c23f6ccb60e01b815260040160405180910390fd5b50601255565b6000610eaf81611ab3565b6001600160a01b038216610ed65760405163d92e233d60e01b815260040160405180910390fd5b6009546001600160a01b0383811691161415610f055760405163c23f6ccb60e01b815260040160405180910390fd5b50600980546001600160a01b0319166001600160a01b0392909216919091179055565b610f323382611baa565b610f4e5760405162461bcd60e51b8152600401610a3e90613690565b610f5781611bcd565b50565b6000610f6581611ab3565b816018541415610f885760405163c23f6ccb60e01b815260040160405180910390fd5b50601855565b60006108f682611c67565b6000610fa460065490565b8210610fc25760405162461bcd60e51b8152600401610a3e906136f0565b60068281548110610fd557610fd561398c565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806108f65760405162461bcd60e51b8152600401610a3e906136c0565b60006001600160a01b0382166110445760405162461bcd60e51b8152600401610a3e90613680565b506001600160a01b031660009081526003602052604090205490565b600060175460001480156110745750601854155b1561108157506000919050565b600c546001600160a01b0383811691161480156110b657506001600160a01b0382166000908152600d602052604090205460ff165b80156110c457506000601854115b156110d157505060185490565b600b546001600160a01b03838116911614801561110657506001600160a01b0382166000908152600d602052604090205460ff165b1561111357505060175490565b6001600160a01b0382166000908152600d602052604090205460ff1615611140576108f682601754611c84565b81604051630ac29ab760e31b8152600401610a3e91906134e6565b919050565b600061116b81611ab3565b600c546001600160a01b038381169116141561119a5760405163c23f6ccb60e01b815260040160405180910390fd5b50600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60165460405163294cdf0d60e01b815260009182916001600160a01b039091169063294cdf0d906111f2908a906004016134e6565b60206040518083038186803b15801561120a57600080fd5b505afa15801561121e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112429190612f35565b9050611252888288888888610a19565b9150505b9695505050505050565b600061126b81611ab3565b81601454141561128e5760405163c23f6ccb60e01b815260040160405180910390fd5b50601455565b60009182526008602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60006112ca81611ab3565b6001600160a01b0382166000908152600d602052604090205460ff1661130557816040516318317bd560e01b8152600401610a3e91906134e6565b6001600160a01b0382166000908152600d60205260408120805460ff191690555b600e54811015610d5f57826001600160a01b0316600e828154811061134d5761134d61398c565b6000918252602090912001546001600160a01b0316141561141a57600e805461137890600190613814565b815481106113885761138861398c565b600091825260209091200154600e80546001600160a01b0390921691839081106113b4576113b461398c565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600e8054806113f3576113f3613976565b600082815260209020810160001990810180546001600160a01b0319169055019055505050565b80611424816138ef565b915050611326565b60606001805461093590613895565b60008061144783610fe7565b60165460405163294cdf0d60e01b81529192506001600160a01b03169063294cdf0d906114789084906004016134e6565b60206040518083038186803b15801561149057600080fd5b505afa1580156114a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c89190612f35565b9392505050565b60006114da81611ab3565b6001600160a01b0382166000908152600d602052604090205460ff16156115145760405163f411c32760e01b815260040160405180910390fd5b506001600160a01b03166000818152600d60205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b606061158682611d23565b6000611590611d48565b905060008151116115b057604051806020016040528060008152506114c8565b806115ba84611d57565b6040516020016115cb92919061342d565b6040516020818303038152906040529392505050565b60006115ec81611ab3565b6001600160a01b0382166116135760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03821660009081526019602052604090205460ff1661164e57816040516324b1f80560e21b8152600401610a3e91906134e6565b506001600160a01b03166000908152601960205260409020805460ff19169055565b61167982610c69565b61168281611ab3565b610d5f8383611b43565b600061169781611ab3565b6001600160a01b0382166116be5760405163d92e233d60e01b815260040160405180910390fd5b600a546001600160a01b03838116911614156116ed5760405163c23f6ccb60e01b815260040160405180910390fd5b50600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600061171b81611ab3565b6001600160a01b0382166117425760405163d92e233d60e01b815260040160405180910390fd5b600f546001600160a01b03838116911614156117715760405163c23f6ccb60e01b815260040160405180910390fd5b50600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600061179f81611ab3565b8160175414156117c25760405163c23f6ccb60e01b815260040160405180910390fd5b50601755565b60006117d381611ab3565b8160135414156117f65760405163c23f6ccb60e01b815260040160405180910390fd5b50601355565b60006108f682611e54565b600061185e7fbf4c764a640e301e74685ff05395cceaed1d80e171501b6b6ffb339acfef6f18858585604051602001611843949392919061358b565b60405160208183030381529060405280519060200120611e79565b949350505050565b60006118728484611e8c565b9050816001600160a01b0316816001600160a01b0316146118a657604051638baa579f60e01b815260040160405180910390fd5b6001600160a01b03811660009081526019602052604090205460ff166118e15780604051634a0bfec160e01b8152600401610a3e91906134e6565b50505050565b806118f0575050565b6001600160a01b0382166000908152600d602052604090205460ff1661192b5781604051630ac29ab760e31b8152600401610a3e91906134e6565b6001600160a01b038216611a71578034101561195c578060405163091a6d0f60e01b8152600401610a3e919061353b565b600f546040516000916001600160a01b031690839061197a9061348c565b60006040518083038185875af1925050503d80600081146119b7576040519150601f19603f3d011682016040523d82523d6000602084013e6119bc565b606091505b50509050806119de576040516312171d8360e31b815260040160405180910390fd5b81341115610d5f5760006119f23484611eb0565b9050336001600160a01b031681604051611a0b9061348c565b60006040518083038185875af1925050503d8060008114611a48576040519150601f19603f3d011682016040523d82523d6000602084013e611a4d565b606091505b505080925050816118e157604051633c31275160e21b815260040160405180910390fd5b600f54610de8906001600160a01b038481169133911684611ebc565b600080611a9960155490565b9050611aa9601580546001019055565b6108f68382611f14565b610f578133611ff0565b611ac78282611294565b610de85760008281526008602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611aff3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611b4d8282611294565b15610de85760008281526008602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600080611bb683610fe7565b6001600160a01b0385811691161491505092915050565b6000611bd882610fe7565b9050611be681600084612054565b6001600160a01b0381166000908152600360205260408120805460019290611c0f908490613814565b909155505060008281526002602052604080822080546001600160a01b03191690555183916001600160a01b038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59190a35050565b6000908152600260205260409020546001600160a01b0316151590565b6001600160a01b0382166000908152600d602052604081205460ff161580611cb95750600b546001600160a01b038481169116145b15611cd9578260405163961c9a4f60e01b8152600401610a3e91906134e6565b6001600160a01b038316611d0b57600a54600b54611d04916001600160a01b0390811691168461205f565b90506108f6565b600b54611d049084906001600160a01b03168461205f565b611d2c81611c67565b610f575760405162461bcd60e51b8152600401610a3e906136c0565b60606010805461093590613895565b606081611d7b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611da55780611d8f816138ef565b9150611d9e9050600a836137e1565b9150611d7f565b6000816001600160401b03811115611dbf57611dbf6139a2565b6040519080825280601f01601f191660200182016040528015611de9576020820181803683370190505b5090505b841561185e57611dfe600183613814565b9150611e0b600a8661390a565b611e169060306137c9565b60f81b818381518110611e2b57611e2b61398c565b60200101906001600160f81b031916908160001a905350611e4d600a866137e1565b9450611ded565b60006001600160e01b03198216637965db0b60e01b14806108f657506108f68261211d565b60006108f6611e86612142565b83612235565b6000806000611e9b8585612268565b91509150611ea8816122ae565b509392505050565b60006114c88284613814565b6118e1846323b872dd60e01b858585604051602401611edd939291906134f4565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612393565b6001600160a01b038216611f3a5760405162461bcd60e51b8152600401610a3e90613640565b611f4381611c67565b15611f605760405162461bcd60e51b8152600401610a3e906136b0565b611f6c60008383612054565b6001600160a01b0382166000908152600360205260408120805460019290611f959084906137c9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038616908117909155905183927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688591a35050565b611ffa8282611294565b610de857612012816001600160a01b03166014612422565b61201d836020612422565b60405160200161202e929190613494565b60408051601f198184030181529082905262461bcd60e51b8252610a3e916004016135ff565b610d5f83838361258d565b600060608061206e8686612645565b6009546040516307c0329d60e21b81529192506001600160a01b031690631f00ca74906120a19087908590600401613720565b60006040518083038186803b1580156120b957600080fd5b505afa1580156120cd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526120f59190810190612e44565b91508160008151811061210a5761210a61398c565b6020026020010151925050509392505050565b60006001600160e01b0319821663780e9d6360e01b14806108f657506108f6826127d7565b6000306001600160a01b037f0000000000000000000000004d236e55e54ed960887659d046c60f377cca58f81614801561219b57507f000000000000000000000000000000000000000000000000000000000000000146145b156121c557507f0033c8024e634409252dde3ca6ea6b73413b5b1c03a094f96132cbc08b455acd90565b6122307f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f6e6c0fb66186b04686c2274122446bf5a3c724415f3268b18dc2d8542f5196cd7f06c015bd22b4c69690933c1058878ebdfef31f9aaae40bbe86d8a09fe1b2972c612827565b905090565b6000828260405160200161224a92919061345b565b60405160208183030381529060405280519060200120905092915050565b60008082516041141561229f5760208301516040840151606085015160001a61229387828585612861565b945094505050506122a7565b506000905060025b9250929050565b60008160048111156122c2576122c261394a565b14156122cb5750565b60018160048111156122df576122df61394a565b14156122fd5760405162461bcd60e51b8152600401610a3e90613610565b60028160048111156123115761231161394a565b141561232f5760405162461bcd60e51b8152600401610a3e90613630565b60038160048111156123435761234361394a565b14156123615760405162461bcd60e51b8152600401610a3e90613660565b60048160048111156123755761237561394a565b1415610f575760405162461bcd60e51b8152600401610a3e906136a0565b60006123e8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166129379092919063ffffffff16565b805190915015610d5f57808060200190518101906124069190612e7e565b610d5f5760405162461bcd60e51b8152600401610a3e906136e0565b606060006124318360026137f5565b61243c9060026137c9565b6001600160401b03811115612453576124536139a2565b6040519080825280601f01601f19166020018201604052801561247d576020820181803683370190505b509050600360fc1b816000815181106124985761249861398c565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106124c7576124c761398c565b60200101906001600160f81b031916908160001a90535060006124eb8460026137f5565b6124f69060016137c9565b90505b600181111561256e576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061252a5761252a61398c565b1a60f81b8282815181106125405761254061398c565b60200101906001600160f81b031916908160001a90535060049490941c936125678161387e565b90506124f9565b5083156114c85760405162461bcd60e51b8152600401610a3e90613620565b6001600160a01b0383166125e8576125e381600680546000838152600760205260408120829055600182018355919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0155565b61260b565b816001600160a01b0316836001600160a01b03161461260b5761260b8382612946565b6001600160a01b03821661262257610d5f816129e3565b826001600160a01b0316826001600160a01b031614610d5f57610d5f8282612a92565b600a546060906001600160a01b03848116911614806126715750600a546001600160a01b038381169116145b1561273b5760408051600280825260608201835260009260208301908036833701905050600a549091506001600160a01b038581169116146126b357836126c0565b600a546001600160a01b03165b816000815181106126d3576126d361398c565b6001600160a01b039283166020918202929092010152600a548482169116146126fc5782612709565b600a546001600160a01b03165b8160018151811061271c5761271c61398c565b6001600160a01b039092166020928302919091019091015290506108f6565b604080516003808252608082019092526000916020820160608036833701905050905083816000815181106127725761277261398c565b6001600160a01b039283166020918202929092010152600a548251911690829060019081106127a3576127a361398c565b60200260200101906001600160a01b031690816001600160a01b031681525050828160028151811061271c5761271c61398c565b60006001600160e01b031982166313f2a32f60e01b148061280857506001600160e01b03198216635b5e139f60e01b145b806108f657506301ffc9a760e01b6001600160e01b03198316146108f6565b60008383834630604051602001612842959493929190613549565b6040516020818303038152906040528051906020012090509392505050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b0383111561288e575060009050600361292e565b8460ff16601b141580156128a657508460ff16601c14155b156128b7575060009050600461292e565b6000600187878787604051600081526020016040526040516128dc94939291906135c9565b6020604051602081039080840390855afa1580156128fe573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166129275760006001925092505061292e565b9150600090505b94509492505050565b606061185e8484600085612ad6565b600060016129538461101c565b61295d9190613814565b6000838152600560205260409020549091508082146129b0576001600160a01b03841660009081526004602090815260408083208584528252808320548484528184208190558352600590915290208190555b5060009182526005602090815260408084208490556001600160a01b039094168352600481528383209183525290812055565b6006546000906129f590600190613814565b60008381526007602052604081205460068054939450909284908110612a1d57612a1d61398c565b906000526020600020015490508060068381548110612a3e57612a3e61398c565b6000918252602080832090910192909255828152600790915260408082208490558582528120556006805480612a7657612a76613976565b6001900381819060005260206000200160009055905550505050565b6000612a9d8361101c565b6001600160a01b039093166000908152600460209081526040808320868452825280832085905593825260059052919091209190915550565b606082471015612af85760405162461bcd60e51b8152600401610a3e90613670565b6001600160a01b0385163b612b1f5760405162461bcd60e51b8152600401610a3e906136d0565b600080866001600160a01b03168587604051612b3b9190613421565b60006040518083038185875af1925050503d8060008114612b78576040519150601f19603f3d011682016040523d82523d6000602084013e612b7d565b606091505b5091509150612b8d828286612b98565b979650505050505050565b60608315612ba75750816114c8565b825115612bb75782518084602001fd5b8160405162461bcd60e51b8152600401610a3e91906135ff565b6000612be4612bdf846137a6565b61378f565b90508083825260208201905082856020860282011115612c0657612c06600080fd5b60005b85811015612c325781612c1c8882612cec565b8452506020928301929190910190600101612c09565b5050509392505050565b80356108f6816139c2565b80516108f6816139c2565b600082601f830112612c6657612c66600080fd5b815161185e848260208601612bd1565b80516108f6816139d6565b80356108f6816139de565b80356108f6816139e4565b60008083601f840112612cac57612cac600080fd5b5081356001600160401b03811115612cc657612cc6600080fd5b6020830191508360018202830111156122a7576122a7600080fd5b80356108f6816139f4565b80516108f6816139de565b600060208284031215612d0c57612d0c600080fd5b600061185e8484612c3c565b600060208284031215612d2d57612d2d600080fd5b600061185e8484612c47565b60008060008060008060a08789031215612d5557612d55600080fd5b6000612d618989612c3c565b9650506020612d7289828a01612c3c565b9550506040612d8389828a01612c3c565b9450506060612d9489828a01612c81565b93505060808701356001600160401b03811115612db357612db3600080fd5b612dbf89828a01612c97565b92509250509295509295509295565b60008060408385031215612de457612de4600080fd5b6000612df08585612c3c565b9250506020612e0185828601612c81565b9150509250929050565b60008060008060008060a08789031215612e2757612e27600080fd5b6000612e338989612c3c565b9650506020612d7289828a01612c81565b600060208284031215612e5957612e59600080fd5b81516001600160401b03811115612e7257612e72600080fd5b61185e84828501612c52565b600060208284031215612e9357612e93600080fd5b600061185e8484612c76565b600060208284031215612eb457612eb4600080fd5b600061185e8484612c81565b60008060408385031215612ed657612ed6600080fd5b6000612ee28585612c81565b9250506020612e0185828601612c3c565b600060208284031215612f0857612f08600080fd5b600061185e8484612c8c565b600060208284031215612f2957612f29600080fd5b600061185e8484612ce1565b600060208284031215612f4a57612f4a600080fd5b600061185e8484612cec565b6000612f628383612f6a565b505060200190565b612f738161382b565b82525050565b6000612f83825190565b80845260209384019383018060005b83811015612fb7578151612fa68882612f56565b975060208301925050600101612f92565b509495945050505050565b801515612f73565b80612f73565b6000612fda825190565b612fe8818560208601613852565b9290920192915050565b612f7381613847565b6000613005825190565b80845260208401935061301c818560208601613852565b613025816139b8565b9093019392505050565b601881526000602082017745434453413a20696e76616c6964207369676e617475726560401b815291505b5060200190565b60208082527f537472696e67733a20686578206c656e67746820696e73756666696369656e749101908152600061305a565b601f81526000602082017f45434453413a20696e76616c6964207369676e6174757265206c656e677468008152915061305a565b601d81526000602082017f5342543a206d696e7420746f20746865207a65726f20616464726573730000008152915061305a565b602881526000602082017f534254456e756d657261626c653a206f776e657220696e646578206f7574206f8152676620626f756e647360c01b602082015291505b5060400190565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202773272076616c815261756560f01b6020820152915061313c565b602681526000602082017f416464726573733a20696e73756666696369656e742062616c616e636520666f8152651c8818d85b1b60d21b6020820152915061313c565b602681526000602082017f5342543a2061646472657373207a65726f206973206e6f7420612076616c69648152651037bbb732b960d11b6020820152915061313c565b601e81526000602082017f5342543a2063616c6c6572206973206e6f7420746f6b656e206f776e657200008152915061305a565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202776272076616c815261756560f01b6020820152915061313c565b601981526000602082017814d0950e881d1bdad95b88185b1c9958591e481b5a5b9d1959603a1b8152915061305a565b601581526000602082017414d0950e881a5b9d985b1a59081d1bdad95b881251605a1b8152915061305a565b601d81526000602082017f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000008152915061305a565b602a81526000602082017f5361666545524332303a204552433230206f7065726174696f6e20646964206e8152691bdd081cdd58d8d9595960b21b6020820152915061313c565b602981526000602082017f534254456e756d657261626c653a20676c6f62616c20696e646578206f7574208152686f6620626f756e647360b81b6020820152915061313c565b601f81526000602082017f5265656e7472616e637947756172643a207265656e7472616e742063616c6c008152915061305a565b602f81526000602082017f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636581526e103937b632b9903337b91039b2b63360891b6020820152915061313c565b60ff8116612f73565b60006114c88284612fd0565b60006134398285612fd0565b91506134458284612fd0565b64173539b7b760d91b815291506005820161185e565b61190160f01b815260020160006134728285612fca565b6020820191506134828284612fca565b5060200192915050565b6000816108f6565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260170160006134c08285612fd0565b7001034b99036b4b9b9b4b733903937b6329607d1b8152601101915061185e8284612fd0565b602081016108f68284612f6a565b606081016135028286612f6a565b61350f6020830185612f6a565b61185e6040830184612fca565b602080825281016114c88184612f79565b602081016108f68284612fc2565b602081016108f68284612fca565b60a081016135578288612fca565b6135646020830187612fca565b6135716040830186612fca565b61357e6060830185612fca565b6112566080830184612f6a565b608081016135998287612fca565b6135a66020830186612fca565b6135b36040830185612f6a565b6135c06060830184612fca565b95945050505050565b608081016135d78287612fca565b6135e46020830186613418565b6135b36040830185612fca565b602081016108f68284612ff2565b602080825281016114c88184612ffb565b602080825281016108f68161302f565b602080825281016108f681613061565b602080825281016108f681613093565b602080825281016108f6816130c7565b602080825281016108f6816130fb565b602080825281016108f681613143565b602080825281016108f681613182565b602080825281016108f6816131c5565b602080825281016108f681613208565b602080825281016108f68161323c565b602080825281016108f68161327b565b602080825281016108f6816132ab565b602080825281016108f6816132d7565b602080825281016108f68161330b565b602080825281016108f681613352565b602080825281016108f681613398565b602080825281016108f6816133cc565b6040810161372e8285612fca565b818103602083015261185e8184612f79565b60c0810161374e8289612fca565b61375b6020830188612fca565b6137686040830187612f6a565b6137756060830186612fca565b6137826080830185612f6a565b612b8d60a0830184612fca565b600061379a60405190565b905061115b82826138c2565b60006001600160401b038211156137bf576137bf6139a2565b5060209081020190565b600082198211156137dc576137dc61391e565b500190565b6000826137f0576137f0613934565b500490565b600081600019048311821515161561380f5761380f61391e565b500290565b6000828210156138265761382661391e565b500390565b60006001600160a01b0382166108f6565b60006108f68261382b565b60006108f68261383c565b60005b8381101561386d578181015183820152602001613855565b838111156118e15750506000910152565b60008161388d5761388d61391e565b506000190190565b6002810460018216806138a957607f821691505b602082108114156138bc576138bc613960565b50919050565b6138cb826139b8565b81018181106001600160401b03821117156138e8576138e86139a2565b6040525050565b60006000198214156139035761390361391e565b5060010190565b60008261391957613919613934565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b601f01601f191690565b6139cb8161382b565b8114610f5757600080fd5b8015156139cb565b806139cb565b6001600160e01b031981166139cb565b6139cb8161383c56fea26469706673582212205d75f245126247f98e1949a7e942ff76920fe57bb56f73e2e6575ed51cbc45b564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000bb4125c48e8c69b0f06e0c635dfcd0aa250fcbf900000000000000000000000000000000000000000000000000000000000001000000000000000000000000008903d8d4f4c06814d7ecb42b1258e2209d53a7d40000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ccfa6a842151f53e18a5d56edfd0177fa8c8d7f5000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f6d657461646174612e6d6173612e66696e616e63652f76312e302f6372656469742d73636f72652f00000000000000000000000000000000
-----Decoded View---------------
Arg [0] : admin (address): 0xBb4125C48e8c69b0F06E0c635dfCd0Aa250fcbF9
Arg [1] : baseTokenURI (string): https://metadata.masa.finance/v1.0/credit-score/
Arg [2] : soulboundIdentity (address): 0x8903D8D4F4c06814D7ecb42b1258E2209d53A7d4
Arg [3] : paymentParams (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000bb4125c48e8c69b0f06e0c635dfcd0aa250fcbf9
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000008903d8d4f4c06814d7ecb42b1258e2209d53a7d4
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [5] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000ccfa6a842151f53e18a5d56edfd0177fa8c8d7f5
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000030
Arg [9] : 68747470733a2f2f6d657461646174612e6d6173612e66696e616e63652f7631
Arg [10] : 2e302f6372656469742d73636f72652f00000000000000000000000000000000
Loading...
Loading
Loading...
Loading
OVERVIEW
Soulbound token that represents a credit score.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ 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.