Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deploy Address | 14154957 | 1106 days ago | IN | 0 ETH | 0.05910722 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14154957 | 1106 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
TerminalDirectory
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "./interfaces/ITerminal.sol"; import "./interfaces/ITerminalDirectory.sol"; import "./interfaces/IProjects.sol"; import "./abstract/Operatable.sol"; import "./libraries/Operations.sol"; import "./DirectPaymentAddress.sol"; /** @notice Allows project owners to deploy proxy contracts that can pay them when receiving funds directly. */ contract TerminalDirectory is ITerminalDirectory, Operatable { // --- private stored properties --- // // A list of contracts for each project ID that can receive funds directly. mapping(uint256 => IDirectPaymentAddress[]) private _addressesOf; // --- public immutable stored properties --- // /// @notice The Projects contract which mints ERC-721's that represent project ownership and transfers. IProjects public immutable override projects; // --- public stored properties --- // /// @notice For each project ID, the juicebox terminal that the direct payment addresses are proxies for. mapping(uint256 => ITerminal) public override terminalOf; /// @notice For each address, the address that will be used as the beneficiary of direct payments made. mapping(address => address) public override beneficiaryOf; /// @notice For each address, the preference of whether ticket will be auto claimed as ERC20s when a payment is made. mapping(address => bool) public override unstakedTicketsPreferenceOf; // --- external views --- // /** @notice A list of all direct payment addresses for the specified project ID. @param _projectId The ID of the project to get direct payment addresses for. @return A list of direct payment addresses for the specified project ID. */ function addressesOf(uint256 _projectId) external view override returns (IDirectPaymentAddress[] memory) { return _addressesOf[_projectId]; } // --- external transactions --- // /** @param _projects A Projects contract which mints ERC-721's that represent project ownership and transfers. @param _operatorStore A contract storing operator assignments. */ constructor(IProjects _projects, IOperatorStore _operatorStore) Operatable(_operatorStore) { projects = _projects; } /** @notice Allows anyone to deploy a new direct payment address for a project. @param _projectId The ID of the project to deploy a direct payment address for. @param _memo The note to use for payments made through the new direct payment address. */ function deployAddress(uint256 _projectId, string calldata _memo) external override { require( _projectId > 0, "TerminalDirectory::deployAddress: ZERO_PROJECT" ); // Deploy the contract and push it to the list. _addressesOf[_projectId].push( new DirectPaymentAddress(this, _projectId, _memo) ); emit DeployAddress(_projectId, _memo, msg.sender); } /** @notice Update the juicebox terminal that payments to direct payment addresses will be forwarded for the specified project ID. @param _projectId The ID of the project to set a new terminal for. @param _terminal The new terminal to set. */ function setTerminal(uint256 _projectId, ITerminal _terminal) external override { // Get a reference to the current terminal being used. ITerminal _currentTerminal = terminalOf[_projectId]; address _projectOwner = projects.ownerOf(_projectId); // Either: // - case 1: the current terminal hasn't been set yet and the msg sender is either the projects contract or the terminal being set. // - case 2: the current terminal must not yet be set, or the current terminal is setting a new terminal. // - case 3: the msg sender is the owner or operator and either the current terminal hasn't been set, or the current terminal allows migration to the terminal being set. require( // case 1. (_currentTerminal == ITerminal(address(0)) && (msg.sender == address(projects) || msg.sender == address(_terminal))) || // case 2. msg.sender == address(_currentTerminal) || // case 3. ((msg.sender == _projectOwner || operatorStore.hasPermission( msg.sender, _projectOwner, _projectId, Operations.SetTerminal )) && (_currentTerminal == ITerminal(address(0)) || _currentTerminal.migrationIsAllowed(_terminal))), "TerminalDirectory::setTerminal: UNAUTHORIZED" ); // The project must exist. require( projects.exists(_projectId), "TerminalDirectory::setTerminal: NOT_FOUND" ); // Can't set the zero address. require( _terminal != ITerminal(address(0)), "TerminalDirectory::setTerminal: ZERO_ADDRESS" ); // If the terminal is already set, nothing to do. if (_currentTerminal == _terminal) return; // Set the new terminal. terminalOf[_projectId] = _terminal; emit SetTerminal(_projectId, _terminal, msg.sender); } /** @notice Allows any address to pre set the beneficiary of their payments to any direct payment address, and to pre set whether to prefer to unstake tickets into ERC20's when making a payment. @param _beneficiary The beneficiary to set. @param _preferUnstakedTickets The preference to set. */ function setPayerPreferences( address _beneficiary, bool _preferUnstakedTickets ) external override { beneficiaryOf[msg.sender] = _beneficiary; unstakedTicketsPreferenceOf[msg.sender] = _preferUnstakedTickets; emit SetPayerPreferences( msg.sender, _beneficiary, _preferUnstakedTickets ); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "./ITerminalDirectory.sol"; interface ITerminal { event Pay( uint256 indexed fundingCycleId, uint256 indexed projectId, address indexed beneficiary, uint256 amount, string note, address caller ); event AddToBalance( uint256 indexed projectId, uint256 value, address caller ); event AllowMigration(ITerminal allowed); event Migrate( uint256 indexed projectId, ITerminal indexed to, uint256 _amount, address caller ); function terminalDirectory() external view returns (ITerminalDirectory); function migrationIsAllowed(ITerminal _terminal) external view returns (bool); function pay( uint256 _projectId, address _beneficiary, string calldata _memo, bool _preferUnstakedTickets ) external payable returns (uint256 fundingCycleId); function addToBalance(uint256 _projectId) external payable; function allowMigration(ITerminal _contract) external; function migrate(uint256 _projectId, ITerminal _to) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "./IDirectPaymentAddress.sol"; import "./ITerminal.sol"; import "./IProjects.sol"; import "./IProjects.sol"; interface ITerminalDirectory { event DeployAddress( uint256 indexed projectId, string memo, address indexed caller ); event SetTerminal( uint256 indexed projectId, ITerminal indexed terminal, address caller ); event SetPayerPreferences( address indexed account, address beneficiary, bool preferUnstakedTickets ); function projects() external view returns (IProjects); function terminalOf(uint256 _projectId) external view returns (ITerminal); function beneficiaryOf(address _account) external returns (address); function unstakedTicketsPreferenceOf(address _account) external returns (bool); function addressesOf(uint256 _projectId) external view returns (IDirectPaymentAddress[] memory); function deployAddress(uint256 _projectId, string calldata _memo) external; function setTerminal(uint256 _projectId, ITerminal _terminal) external; function setPayerPreferences( address _beneficiary, bool _preferUnstakedTickets ) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./ITerminal.sol"; import "./IOperatorStore.sol"; interface IProjects is IERC721 { event Create( uint256 indexed projectId, address indexed owner, bytes32 indexed handle, string uri, ITerminal terminal, address caller ); event SetHandle( uint256 indexed projectId, bytes32 indexed handle, address caller ); event SetUri(uint256 indexed projectId, string uri, address caller); event TransferHandle( uint256 indexed projectId, address indexed to, bytes32 indexed handle, bytes32 newHandle, address caller ); event ClaimHandle( address indexed account, uint256 indexed projectId, bytes32 indexed handle, address caller ); event ChallengeHandle( bytes32 indexed handle, uint256 challengeExpiry, address caller ); event RenewHandle( bytes32 indexed handle, uint256 indexed projectId, address caller ); function count() external view returns (uint256); function uriOf(uint256 _projectId) external view returns (string memory); function handleOf(uint256 _projectId) external returns (bytes32 handle); function projectFor(bytes32 _handle) external returns (uint256 projectId); function transferAddressFor(bytes32 _handle) external returns (address receiver); function challengeExpiryOf(bytes32 _handle) external returns (uint256); function exists(uint256 _projectId) external view returns (bool); function create( address _owner, bytes32 _handle, string calldata _uri, ITerminal _terminal ) external returns (uint256 id); function setHandle(uint256 _projectId, bytes32 _handle) external; function setUri(uint256 _projectId, string calldata _uri) external; function transferHandle( uint256 _projectId, address _to, bytes32 _newHandle ) external returns (bytes32 _handle); function claimHandle( bytes32 _handle, address _for, uint256 _projectId ) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "./../interfaces/IOperatable.sol"; abstract contract Operatable is IOperatable { modifier requirePermission( address _account, uint256 _domain, uint256 _index ) { require( msg.sender == _account || operatorStore.hasPermission( msg.sender, _account, _domain, _index ), "Operatable: UNAUTHORIZED" ); _; } modifier requirePermissionAllowingWildcardDomain( address _account, uint256 _domain, uint256 _index ) { require( msg.sender == _account || operatorStore.hasPermission( msg.sender, _account, _domain, _index ) || operatorStore.hasPermission(msg.sender, _account, 0, _index), "Operatable: UNAUTHORIZED" ); _; } modifier requirePermissionAcceptingAlternateAddress( address _account, uint256 _domain, uint256 _index, address _alternate ) { require( msg.sender == _account || operatorStore.hasPermission( msg.sender, _account, _domain, _index ) || msg.sender == _alternate, "Operatable: UNAUTHORIZED" ); _; } /// @notice A contract storing operator assignments. IOperatorStore public immutable override operatorStore; /** @param _operatorStore A contract storing operator assignments. */ constructor(IOperatorStore _operatorStore) { operatorStore = _operatorStore; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; library Operations { uint256 public constant Configure = 1; uint256 public constant PrintPreminedTickets = 2; uint256 public constant Redeem = 3; uint256 public constant Migrate = 4; uint256 public constant SetHandle = 5; uint256 public constant SetUri = 6; uint256 public constant ClaimHandle = 7; uint256 public constant RenewHandle = 8; uint256 public constant Issue = 9; uint256 public constant Stake = 10; uint256 public constant Unstake = 11; uint256 public constant Transfer = 12; uint256 public constant Lock = 13; uint256 public constant SetPayoutMods = 14; uint256 public constant SetTicketMods = 15; uint256 public constant SetTerminal = 16; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "./interfaces/IDirectPaymentAddress.sol"; import "./interfaces/ITerminalDirectory.sol"; /** @notice A contract that can receive funds directly and forward to a project's current terminal. */ contract DirectPaymentAddress is IDirectPaymentAddress { // --- public immutable stored properties --- // /// @notice The directory to use when resolving which terminal to send the payment to. ITerminalDirectory public immutable override terminalDirectory; /// @notice The ID of the project to pay when this contract receives funds. uint256 public immutable override projectId; // --- public stored properties --- // /// @notice The memo to use when this contract forwards a payment to a terminal. string public override memo; // --- external transactions --- // /** @param _terminalDirectory A directory of a project's current Juicebox terminal to receive payments in. @param _projectId The ID of the project to pay when this contract receives funds. @param _memo The memo to use when this contract forwards a payment to a terminal. */ constructor( ITerminalDirectory _terminalDirectory, uint256 _projectId, string memory _memo ) { terminalDirectory = _terminalDirectory; projectId = _projectId; memo = _memo; } // Receive funds and make a payment to the project's current terminal. receive() external payable { // Check to see if the sender has configured a beneficiary. address _storedBeneficiary = terminalDirectory.beneficiaryOf( msg.sender ); // If no beneficiary is configured, use the sender's address. address _beneficiary = _storedBeneficiary != address(0) ? _storedBeneficiary : msg.sender; bool _preferUnstakedTickets = terminalDirectory .unstakedTicketsPreferenceOf(msg.sender); terminalDirectory.terminalOf(projectId).pay{value: msg.value}( projectId, _beneficiary, memo, _preferUnstakedTickets ); emit Forward( msg.sender, projectId, _beneficiary, msg.value, memo, _preferUnstakedTickets ); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "./ITerminalDirectory.sol"; import "./ITerminal.sol"; interface IDirectPaymentAddress { event Forward( address indexed payer, uint256 indexed projectId, address beneficiary, uint256 value, string memo, bool preferUnstakedTickets ); function terminalDirectory() external returns (ITerminalDirectory); function projectId() external returns (uint256); function memo() external returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; interface IOperatorStore { event SetOperator( address indexed operator, address indexed account, uint256 indexed domain, uint256[] permissionIndexes, uint256 packed ); function permissionsOf( address _operator, address _account, uint256 _domain ) external view returns (uint256); function hasPermission( address _operator, address _account, uint256 _domain, uint256 _permissionIndex ) external view returns (bool); function hasPermissions( address _operator, address _account, uint256 _domain, uint256[] calldata _permissionIndexes ) external view returns (bool); function setOperator( address _operator, uint256 _domain, uint256[] calldata _permissionIndexes ) external; function setOperators( address[] calldata _operators, uint256[] calldata _domains, uint256[][] calldata _permissionIndexes ) external; }
// SPDX-License-Identifier: MIT 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 pragma solidity 0.8.6; import "./IOperatorStore.sol"; interface IOperatable { function operatorStore() external view returns (IOperatorStore); }
{ "optimizer": { "enabled": true, "runs": 10000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IProjects","name":"_projects","type":"address"},{"internalType":"contract IOperatorStore","name":"_operatorStore","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"projectId","type":"uint256"},{"indexed":false,"internalType":"string","name":"memo","type":"string"},{"indexed":true,"internalType":"address","name":"caller","type":"address"}],"name":"DeployAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"bool","name":"preferUnstakedTickets","type":"bool"}],"name":"SetPayerPreferences","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"projectId","type":"uint256"},{"indexed":true,"internalType":"contract ITerminal","name":"terminal","type":"address"},{"indexed":false,"internalType":"address","name":"caller","type":"address"}],"name":"SetTerminal","type":"event"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"}],"name":"addressesOf","outputs":[{"internalType":"contract IDirectPaymentAddress[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"beneficiaryOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"string","name":"_memo","type":"string"}],"name":"deployAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operatorStore","outputs":[{"internalType":"contract IOperatorStore","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projects","outputs":[{"internalType":"contract IProjects","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"bool","name":"_preferUnstakedTickets","type":"bool"}],"name":"setPayerPreferences","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_projectId","type":"uint256"},{"internalType":"contract ITerminal","name":"_terminal","type":"address"}],"name":"setTerminal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"terminalOf","outputs":[{"internalType":"contract ITerminal","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"unstakedTicketsPreferenceOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c060405234801561001057600080fd5b50604051611a3b380380611a3b83398101604081905261002f9161004e565b6001600160601b0319606091821b811660805291901b1660a0526100a0565b6000806040838503121561006157600080fd5b825161006c81610088565b602084015190925061007d81610088565b809150509250929050565b6001600160a01b038116811461009d57600080fd5b50565b60805160601c60a05160601c6119546100e7600039600081816101490152818161049e01528181610556015261083e0152600081816101d8015261063901526119546000f3fe60806040523480156200001157600080fd5b5060043610620000b05760003560e01c80639dcbf9d6116200007f578063ad007d631162000062578063ad007d6314620001d2578063b9e5559514620001fa578063ba7bffd3146200021157600080fd5b80639dcbf9d614620001845780639fc9ea4714620001bb57600080fd5b80634cbcdc2314620000b55780634fe0eced14620000e45780638b79543c14620001435780639725b532146200016b575b600080fd5b620000cc620000c636600462000c40565b6200024a565b604051620000db919062000d4c565b60405180910390f35b6200011d620000f536600462000c40565b60016020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001620000db565b6200011d7f000000000000000000000000000000000000000000000000000000000000000081565b620001826200017c36600462000c82565b620002c3565b005b620001aa6200019536600462000b9b565b60036020526000908152604090205460ff1681565b6040519015158152602001620000db565b62000182620001cc36600462000c5a565b62000446565b6200011d7f000000000000000000000000000000000000000000000000000000000000000081565b620001826200020b36600462000be2565b62000aca565b6200011d6200022236600462000b9b565b60026020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60008181526020818152604091829020805483518184028101840190945280845260609392830182828015620002b757602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff1681526001909101906020018083116200028b575b50505050509050919050565b6000831162000359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5465726d696e616c4469726563746f72793a3a6465706c6f794164647265737360448201527f3a205a45524f5f50524f4a45435400000000000000000000000000000000000060648201526084015b60405180910390fd5b600080848152602001908152602001600020308484846040516200037d9062000b8d565b6200038c949392919062000da8565b604051809103906000f080158015620003a9573d6000803e3d6000fd5b5081546001810183556000928352602090922090910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055604051339084907f625d3e8b3b4cdc244ab1e77733463c3700b7dfa192308bc40ef5d3df6e1a6f7f9062000439908690869062000dea565b60405180910390a3505050565b6000828152600160205260408082205490517f6352211e0000000000000000000000000000000000000000000000000000000081526004810185905273ffffffffffffffffffffffffffffffffffffffff91821692917f00000000000000000000000000000000000000000000000000000000000000001690636352211e9060240160206040518083038186803b158015620004e157600080fd5b505afa158015620004f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200051c919062000bc2565b905073ffffffffffffffffffffffffffffffffffffffff82161580156200059857503373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614806200059857503373ffffffffffffffffffffffffffffffffffffffff8416145b80620005b957503373ffffffffffffffffffffffffffffffffffffffff8316145b806200078157503373ffffffffffffffffffffffffffffffffffffffff82161480620006b757506040517fc161c93f00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff828116602483015260448201869052601060648301527f0000000000000000000000000000000000000000000000000000000000000000169063c161c93f9060840160206040518083038186803b1580156200067c57600080fd5b505afa15801562000691573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006b7919062000c20565b801562000781575073ffffffffffffffffffffffffffffffffffffffff821615806200078157506040517fb9f1109100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015283169063b9f110919060240160206040518083038186803b1580156200074657600080fd5b505afa1580156200075b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000781919062000c20565b6200080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f5465726d696e616c4469726563746f72793a3a7365745465726d696e616c3a2060448201527f554e415554484f52495a45440000000000000000000000000000000000000000606482015260840162000350565b6040517f4f558e79000000000000000000000000000000000000000000000000000000008152600481018590527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690634f558e799060240160206040518083038186803b1580156200089657600080fd5b505afa158015620008ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008d1919062000c20565b6200095f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5465726d696e616c4469726563746f72793a3a7365745465726d696e616c3a2060448201527f4e4f545f464f554e440000000000000000000000000000000000000000000000606482015260840162000350565b73ffffffffffffffffffffffffffffffffffffffff831662000a04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f5465726d696e616c4469726563746f72793a3a7365745465726d696e616c3a2060448201527f5a45524f5f414444524553530000000000000000000000000000000000000000606482015260840162000350565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a3f5750505050565b60008481526001602090815260409182902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8716908117909155915133815286917f6780b115550b4a9f66ac0fa6f3eed2769911165bc5d87ad966769dbbbfae1dbe910160405180910390a350505050565b33600081815260026020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8816908117909155600383529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168615159081179091558151938452918301919091527f01405a9170fb91f1304461ab04a052c0f33349b97b4df28754a10c681041ff99910160405180910390a25050565b610ae18062000e3e83390190565b60006020828403121562000bae57600080fd5b813562000bbb8162000e08565b9392505050565b60006020828403121562000bd557600080fd5b815162000bbb8162000e08565b6000806040838503121562000bf657600080fd5b823562000c038162000e08565b9150602083013562000c158162000e2e565b809150509250929050565b60006020828403121562000c3357600080fd5b815162000bbb8162000e2e565b60006020828403121562000c5357600080fd5b5035919050565b6000806040838503121562000c6e57600080fd5b82359150602083013562000c158162000e08565b60008060006040848603121562000c9857600080fd5b83359250602084013567ffffffffffffffff8082111562000cb857600080fd5b818601915086601f83011262000ccd57600080fd5b81358181111562000cdd57600080fd5b87602082850101111562000cf057600080fd5b6020830194508093505050509250925092565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b6020808252825182820181905260009190848201906040850190845b8181101562000d9c57835173ffffffffffffffffffffffffffffffffffffffff168352928401929184019160010162000d68565b50909695505050505050565b73ffffffffffffffffffffffffffffffffffffffff8516815283602082015260606040820152600062000de060608301848662000d03565b9695505050505050565b60208152600062000e0060208301848662000d03565b949350505050565b73ffffffffffffffffffffffffffffffffffffffff8116811462000e2b57600080fd5b50565b801515811462000e2b57600080fdfe60c06040523480156200001157600080fd5b5060405162000ae138038062000ae1833981016040819052620000349162000110565b6001600160601b0319606084901b1660805260a08290528051620000609060009060208401906200006a565b505050506200026c565b828054620000789062000219565b90600052602060002090601f0160209004810192826200009c5760008555620000e7565b82601f10620000b757805160ff1916838001178555620000e7565b82800160010185558215620000e7579182015b82811115620000e7578251825591602001919060010190620000ca565b50620000f5929150620000f9565b5090565b5b80821115620000f55760008155600101620000fa565b6000806000606084860312156200012657600080fd5b83516001600160a01b03811681146200013e57600080fd5b60208581015160408701519295509350906001600160401b03808211156200016557600080fd5b818701915087601f8301126200017a57600080fd5b8151818111156200018f576200018f62000256565b604051601f8201601f19908116603f01168101908382118183101715620001ba57620001ba62000256565b816040528281528a86848701011115620001d357600080fd5b600093505b82841015620001f75784840186015181850187015292850192620001d8565b82841115620002095760008684830101525b8096505050505050509250925092565b600181811c908216806200022e57607f821691505b602082108114156200025057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a051610823620002be60003960008181610213015281816102e9015281816103800152610410015260008181606e0152818161016f0152818161023c015261047901526108236000f3fe6080604052600436106100385760003560e01c80633fafa127146103fe57806358c3b870146104455780636abcf8e31461046757600080fd5b366103f9576040517fba7bffd30000000000000000000000000000000000000000000000000000000081523360048201526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063ba7bffd390602401602060405180830381600087803b1580156100c757600080fd5b505af11580156100db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100ff919061054e565b9050600073ffffffffffffffffffffffffffffffffffffffff82166101245733610126565b815b6040517f9dcbf9d600000000000000000000000000000000000000000000000000000000815233600482015290915060009073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690639dcbf9d690602401602060405180830381600087803b1580156101b357600080fd5b505af11580156101c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101eb9190610572565b6040517f4fe0eced0000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000060048201529091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690634fe0eced9060240160206040518083038186803b15801561029357600080fd5b505afa1580156102a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102cb919061054e565b73ffffffffffffffffffffffffffffffffffffffff166302c8986f347f0000000000000000000000000000000000000000000000000000000000000000856000866040518663ffffffff1660e01b815260040161032b949392919061073f565b6020604051808303818588803b15801561034457600080fd5b505af1158015610358573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061037d9190610594565b507f00000000000000000000000000000000000000000000000000000000000000003373ffffffffffffffffffffffffffffffffffffffff167f73c0c8eb2e5343fd4f621dee6cc0dd1f91a240b7a6245465fa884753efd7cab384346000866040516103ec9493929190610684565b60405180910390a3505050005b600080fd5b34801561040a57600080fd5b506104327f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020015b60405180910390f35b34801561045157600080fd5b5061045a6104c0565b60405161043c91906106cc565b34801561047357600080fd5b5061049b7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161043c565b600080546104cd90610774565b80601f01602080910402602001604051908101604052809291908181526020018280546104f990610774565b80156105465780601f1061051b57610100808354040283529160200191610546565b820191906000526020600020905b81548152906001019060200180831161052957829003601f168201915b505050505081565b60006020828403121561056057600080fd5b815161056b816107c8565b9392505050565b60006020828403121561058457600080fd5b8151801515811461056b57600080fd5b6000602082840312156105a657600080fd5b5051919050565b8054600090600181811c90808316806105c757607f831692505b6020808410821415610602577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b8388526020880182801561061d576001811461064c57610677565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00871682528282019750610677565b60008981526020902060005b8781101561067157815484820152908601908401610658565b83019850505b5050505050505092915050565b73ffffffffffffffffffffffffffffffffffffffff851681528360208201526080604082015260006106b960808301856105ad565b9050821515606083015295945050505050565b600060208083528351808285015260005b818110156106f9578581018301518582016040015282016106dd565b8181111561070b576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b84815273ffffffffffffffffffffffffffffffffffffffff841660208201526080604082015260006106b960808301856105ad565b600181811c9082168061078857607f821691505b602082108114156107c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b73ffffffffffffffffffffffffffffffffffffffff811681146107ea57600080fd5b5056fea264697066735822122050bc699f6df05913a353c594c4fa33c49323e72b6faee41508f5cc7ab5532ba564736f6c63430008060033a2646970667358221220fea0be546edbd26e2c6a5d499b8064dcedd5d1bdc23004bf05611b137690284564736f6c634300080600330000000000000000000000009b5a4053ffbb11ca9cd858aaee43cc95ab435418000000000000000000000000ab47304d987390e27ce3bc0fa4fe31e3a98b0db2
Deployed Bytecode
0x60806040523480156200001157600080fd5b5060043610620000b05760003560e01c80639dcbf9d6116200007f578063ad007d631162000062578063ad007d6314620001d2578063b9e5559514620001fa578063ba7bffd3146200021157600080fd5b80639dcbf9d614620001845780639fc9ea4714620001bb57600080fd5b80634cbcdc2314620000b55780634fe0eced14620000e45780638b79543c14620001435780639725b532146200016b575b600080fd5b620000cc620000c636600462000c40565b6200024a565b604051620000db919062000d4c565b60405180910390f35b6200011d620000f536600462000c40565b60016020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001620000db565b6200011d7f0000000000000000000000009b5a4053ffbb11ca9cd858aaee43cc95ab43541881565b620001826200017c36600462000c82565b620002c3565b005b620001aa6200019536600462000b9b565b60036020526000908152604090205460ff1681565b6040519015158152602001620000db565b62000182620001cc36600462000c5a565b62000446565b6200011d7f000000000000000000000000ab47304d987390e27ce3bc0fa4fe31e3a98b0db281565b620001826200020b36600462000be2565b62000aca565b6200011d6200022236600462000b9b565b60026020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60008181526020818152604091829020805483518184028101840190945280845260609392830182828015620002b757602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff1681526001909101906020018083116200028b575b50505050509050919050565b6000831162000359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5465726d696e616c4469726563746f72793a3a6465706c6f794164647265737360448201527f3a205a45524f5f50524f4a45435400000000000000000000000000000000000060648201526084015b60405180910390fd5b600080848152602001908152602001600020308484846040516200037d9062000b8d565b6200038c949392919062000da8565b604051809103906000f080158015620003a9573d6000803e3d6000fd5b5081546001810183556000928352602090922090910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055604051339084907f625d3e8b3b4cdc244ab1e77733463c3700b7dfa192308bc40ef5d3df6e1a6f7f9062000439908690869062000dea565b60405180910390a3505050565b6000828152600160205260408082205490517f6352211e0000000000000000000000000000000000000000000000000000000081526004810185905273ffffffffffffffffffffffffffffffffffffffff91821692917f0000000000000000000000009b5a4053ffbb11ca9cd858aaee43cc95ab4354181690636352211e9060240160206040518083038186803b158015620004e157600080fd5b505afa158015620004f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200051c919062000bc2565b905073ffffffffffffffffffffffffffffffffffffffff82161580156200059857503373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000009b5a4053ffbb11ca9cd858aaee43cc95ab4354181614806200059857503373ffffffffffffffffffffffffffffffffffffffff8416145b80620005b957503373ffffffffffffffffffffffffffffffffffffffff8316145b806200078157503373ffffffffffffffffffffffffffffffffffffffff82161480620006b757506040517fc161c93f00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff828116602483015260448201869052601060648301527f000000000000000000000000ab47304d987390e27ce3bc0fa4fe31e3a98b0db2169063c161c93f9060840160206040518083038186803b1580156200067c57600080fd5b505afa15801562000691573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006b7919062000c20565b801562000781575073ffffffffffffffffffffffffffffffffffffffff821615806200078157506040517fb9f1109100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015283169063b9f110919060240160206040518083038186803b1580156200074657600080fd5b505afa1580156200075b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000781919062000c20565b6200080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f5465726d696e616c4469726563746f72793a3a7365745465726d696e616c3a2060448201527f554e415554484f52495a45440000000000000000000000000000000000000000606482015260840162000350565b6040517f4f558e79000000000000000000000000000000000000000000000000000000008152600481018590527f0000000000000000000000009b5a4053ffbb11ca9cd858aaee43cc95ab43541873ffffffffffffffffffffffffffffffffffffffff1690634f558e799060240160206040518083038186803b1580156200089657600080fd5b505afa158015620008ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008d1919062000c20565b6200095f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5465726d696e616c4469726563746f72793a3a7365745465726d696e616c3a2060448201527f4e4f545f464f554e440000000000000000000000000000000000000000000000606482015260840162000350565b73ffffffffffffffffffffffffffffffffffffffff831662000a04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f5465726d696e616c4469726563746f72793a3a7365745465726d696e616c3a2060448201527f5a45524f5f414444524553530000000000000000000000000000000000000000606482015260840162000350565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a3f5750505050565b60008481526001602090815260409182902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8716908117909155915133815286917f6780b115550b4a9f66ac0fa6f3eed2769911165bc5d87ad966769dbbbfae1dbe910160405180910390a350505050565b33600081815260026020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8816908117909155600383529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168615159081179091558151938452918301919091527f01405a9170fb91f1304461ab04a052c0f33349b97b4df28754a10c681041ff99910160405180910390a25050565b610ae18062000e3e83390190565b60006020828403121562000bae57600080fd5b813562000bbb8162000e08565b9392505050565b60006020828403121562000bd557600080fd5b815162000bbb8162000e08565b6000806040838503121562000bf657600080fd5b823562000c038162000e08565b9150602083013562000c158162000e2e565b809150509250929050565b60006020828403121562000c3357600080fd5b815162000bbb8162000e2e565b60006020828403121562000c5357600080fd5b5035919050565b6000806040838503121562000c6e57600080fd5b82359150602083013562000c158162000e08565b60008060006040848603121562000c9857600080fd5b83359250602084013567ffffffffffffffff8082111562000cb857600080fd5b818601915086601f83011262000ccd57600080fd5b81358181111562000cdd57600080fd5b87602082850101111562000cf057600080fd5b6020830194508093505050509250925092565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b6020808252825182820181905260009190848201906040850190845b8181101562000d9c57835173ffffffffffffffffffffffffffffffffffffffff168352928401929184019160010162000d68565b50909695505050505050565b73ffffffffffffffffffffffffffffffffffffffff8516815283602082015260606040820152600062000de060608301848662000d03565b9695505050505050565b60208152600062000e0060208301848662000d03565b949350505050565b73ffffffffffffffffffffffffffffffffffffffff8116811462000e2b57600080fd5b50565b801515811462000e2b57600080fdfe60c06040523480156200001157600080fd5b5060405162000ae138038062000ae1833981016040819052620000349162000110565b6001600160601b0319606084901b1660805260a08290528051620000609060009060208401906200006a565b505050506200026c565b828054620000789062000219565b90600052602060002090601f0160209004810192826200009c5760008555620000e7565b82601f10620000b757805160ff1916838001178555620000e7565b82800160010185558215620000e7579182015b82811115620000e7578251825591602001919060010190620000ca565b50620000f5929150620000f9565b5090565b5b80821115620000f55760008155600101620000fa565b6000806000606084860312156200012657600080fd5b83516001600160a01b03811681146200013e57600080fd5b60208581015160408701519295509350906001600160401b03808211156200016557600080fd5b818701915087601f8301126200017a57600080fd5b8151818111156200018f576200018f62000256565b604051601f8201601f19908116603f01168101908382118183101715620001ba57620001ba62000256565b816040528281528a86848701011115620001d357600080fd5b600093505b82841015620001f75784840186015181850187015292850192620001d8565b82841115620002095760008684830101525b8096505050505050509250925092565b600181811c908216806200022e57607f821691505b602082108114156200025057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a051610823620002be60003960008181610213015281816102e9015281816103800152610410015260008181606e0152818161016f0152818161023c015261047901526108236000f3fe6080604052600436106100385760003560e01c80633fafa127146103fe57806358c3b870146104455780636abcf8e31461046757600080fd5b366103f9576040517fba7bffd30000000000000000000000000000000000000000000000000000000081523360048201526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063ba7bffd390602401602060405180830381600087803b1580156100c757600080fd5b505af11580156100db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100ff919061054e565b9050600073ffffffffffffffffffffffffffffffffffffffff82166101245733610126565b815b6040517f9dcbf9d600000000000000000000000000000000000000000000000000000000815233600482015290915060009073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690639dcbf9d690602401602060405180830381600087803b1580156101b357600080fd5b505af11580156101c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101eb9190610572565b6040517f4fe0eced0000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000060048201529091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690634fe0eced9060240160206040518083038186803b15801561029357600080fd5b505afa1580156102a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102cb919061054e565b73ffffffffffffffffffffffffffffffffffffffff166302c8986f347f0000000000000000000000000000000000000000000000000000000000000000856000866040518663ffffffff1660e01b815260040161032b949392919061073f565b6020604051808303818588803b15801561034457600080fd5b505af1158015610358573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061037d9190610594565b507f00000000000000000000000000000000000000000000000000000000000000003373ffffffffffffffffffffffffffffffffffffffff167f73c0c8eb2e5343fd4f621dee6cc0dd1f91a240b7a6245465fa884753efd7cab384346000866040516103ec9493929190610684565b60405180910390a3505050005b600080fd5b34801561040a57600080fd5b506104327f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020015b60405180910390f35b34801561045157600080fd5b5061045a6104c0565b60405161043c91906106cc565b34801561047357600080fd5b5061049b7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161043c565b600080546104cd90610774565b80601f01602080910402602001604051908101604052809291908181526020018280546104f990610774565b80156105465780601f1061051b57610100808354040283529160200191610546565b820191906000526020600020905b81548152906001019060200180831161052957829003601f168201915b505050505081565b60006020828403121561056057600080fd5b815161056b816107c8565b9392505050565b60006020828403121561058457600080fd5b8151801515811461056b57600080fd5b6000602082840312156105a657600080fd5b5051919050565b8054600090600181811c90808316806105c757607f831692505b6020808410821415610602577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b8388526020880182801561061d576001811461064c57610677565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00871682528282019750610677565b60008981526020902060005b8781101561067157815484820152908601908401610658565b83019850505b5050505050505092915050565b73ffffffffffffffffffffffffffffffffffffffff851681528360208201526080604082015260006106b960808301856105ad565b9050821515606083015295945050505050565b600060208083528351808285015260005b818110156106f9578581018301518582016040015282016106dd565b8181111561070b576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b84815273ffffffffffffffffffffffffffffffffffffffff841660208201526080604082015260006106b960808301856105ad565b600181811c9082168061078857607f821691505b602082108114156107c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b73ffffffffffffffffffffffffffffffffffffffff811681146107ea57600080fd5b5056fea264697066735822122050bc699f6df05913a353c594c4fa33c49323e72b6faee41508f5cc7ab5532ba564736f6c63430008060033a2646970667358221220fea0be546edbd26e2c6a5d499b8064dcedd5d1bdc23004bf05611b137690284564736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009b5a4053ffbb11ca9cd858aaee43cc95ab435418000000000000000000000000ab47304d987390e27ce3bc0fa4fe31e3a98b0db2
-----Decoded View---------------
Arg [0] : _projects (address): 0x9b5a4053FfBB11cA9cd858AAEE43cc95ab435418
Arg [1] : _operatorStore (address): 0xab47304D987390E27Ce3BC0fA4Fe31E3A98B0db2
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009b5a4053ffbb11ca9cd858aaee43cc95ab435418
Arg [1] : 000000000000000000000000ab47304d987390e27ce3bc0fa4fe31e3a98b0db2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 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.