ETH Price: $3,587.83 (+0.25%)

Contract

0xa4c8d221d8BB851f83aadd0223a8900A6921A349
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer Ownersh...108422962020-09-11 18:49:201543 days ago1599850160IN
Set: Controller
0 ETH0.002532482
Remove Resource108311932020-09-10 2:03:461545 days ago1599703426IN
Set: Controller
0 ETH0.00270684103
Initialize108305112020-09-09 23:29:451545 days ago1599694185IN
Set: Controller
0 ETH0.0269519694

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xF1B12A7b...48Fd3c329
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Controller

Compiler Version
v0.6.10+commit.00c0fcaf

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-08
*/

/**
 *Submitted for verification at Etherscan.io on 2020-09-06
*/

// Dependency file: @openzeppelin/contracts/GSN/Context.sol



// pragma solidity ^0.6.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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// Dependency file: contracts/lib/AddressArrayUtils.sol

/*
    Copyright 2020 Set Labs Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.


*/

// pragma solidity 0.6.10;

/**
 * @title AddressArrayUtils
 * @author Set Protocol
 *
 * Utility functions to handle Address Arrays
 */
library AddressArrayUtils {

    /**
     * Finds the index of the first occurrence of the given element.
     * @param A The input array to search
     * @param a The value to find
     * @return Returns (index and isIn) for the first occurrence starting from index 0
     */
    function indexOf(address[] memory A, address a) internal pure returns (uint256, bool) {
        uint256 length = A.length;
        for (uint256 i = 0; i < length; i++) {
            if (A[i] == a) {
                return (i, true);
            }
        }
        return (uint256(-1), false);
    }

    /**
    * Returns true if the value is present in the list. Uses indexOf internally.
    * @param A The input array to search
    * @param a The value to find
    * @return Returns isIn for the first occurrence starting from index 0
    */
    function contains(address[] memory A, address a) internal pure returns (bool) {
        (, bool isIn) = indexOf(A, a);
        return isIn;
    }

    /**
    * Returns true if there are 2 elements that are the same in an array
    * @param A The input array to search
    * @return Returns boolean for the first occurrence of a duplicate
    */
    function hasDuplicate(address[] memory A) internal pure returns(bool) {
        require(A.length > 0, "A is empty");

        for (uint256 i = 0; i < A.length - 1; i++) {
            address current = A[i];
            for (uint256 j = i + 1; j < A.length; j++) {
                if (current == A[j]) {
                    return true;
                }
            }
        }
        return false;
    }

    /**
     * @param A The input array to search
     * @param a The address to remove     
     * @return Returns the array with the object removed.
     */
    function remove(address[] memory A, address a)
        internal
        pure
        returns (address[] memory)
    {
        (uint256 index, bool isIn) = indexOf(A, a);
        if (!isIn) {
            revert("Address not in array.");
        } else {
            (address[] memory _A,) = pop(A, index);
            return _A;
        }
    }

    /**
    * Removes specified index from array
    * @param A The input array to search
    * @param index The index to remove
    * @return Returns the new array and the removed entry
    */
    function pop(address[] memory A, uint256 index)
        internal
        pure
        returns (address[] memory, address)
    {
        uint256 length = A.length;
        require(index < A.length, "Index must be < A length");
        address[] memory newAddresses = new address[](length - 1);
        for (uint256 i = 0; i < index; i++) {
            newAddresses[i] = A[i];
        }
        for (uint256 j = index + 1; j < length; j++) {
            newAddresses[j - 1] = A[j];
        }
        return (newAddresses, A[index]);
    }
}
// Dependency file: @openzeppelin/contracts/access/Ownable.sol



// pragma solidity ^0.6.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol



// pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

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

/*
    Copyright 2020 Set Labs Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.


*/

pragma solidity 0.6.10;

// import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
// import { AddressArrayUtils } from "../lib/AddressArrayUtils.sol";


/**
 * @title Controller
 * @author Set Protocol
 *
 * Contract that houses state for approvals and system contracts such as added Sets,
 * modules, factories, resources (like price oracles), and protocol fee configurations.
 */
contract Controller is Ownable {
    using AddressArrayUtils for address[];

    /* ============ Events ============ */

    event FactoryAdded(address indexed _factory);
    event FactoryRemoved(address indexed _factory);
    event FeeEdited(address indexed _module, uint256 indexed _feeType, uint256 _feePercentage);
    event FeeRecipientChanged(address _newFeeRecipient);
    event ModuleAdded(address indexed _module);
    event ModuleRemoved(address indexed _module);
    event ResourceAdded(address indexed _resource, uint256 _id);
    event ResourceRemoved(address indexed _resource, uint256 _id);
    event SetAdded(address indexed _setToken, address indexed _factory);
    event SetRemoved(address indexed _setToken);

    /* ============ Modifiers ============ */

    /**
     * Throws if function is called by any address other than a valid factory.
     */
    modifier onlyFactory() {
        require(isFactory[msg.sender], "Only valid factories can call");
        _;
    }

    modifier onlyInitialized() {
        require(isInitialized, "Contract must be initialized.");
        _;
    }

    /* ============ State Variables ============ */

    // List of enabled Sets
    address[] public sets;
    // List of enabled factories of SetTokens
    address[] public factories;
    // List of enabled Modules; Modules extend the functionality of SetTokens
    address[] public modules;
    // List of enabled Resources; Resources provide data, functionality, or
    // permissions that can be drawn upon from Module, SetTokens or factories
    address[] public resources;

    // Mappings to check whether address is valid Set, Factory, Module or Resource
    mapping(address => bool) public isSet;
    mapping(address => bool) public isFactory;
    mapping(address => bool) public isModule;
    mapping(address => bool) public isResource;

    // Mapping of modules to fee types to fee percentage. A module can have multiple feeTypes
    // Fee is denominated in precise unit percentages (100% = 1e18, 1% = 1e16)
    mapping(address => mapping(uint256 => uint256)) public fees;

    // Mapping of resource ID to resource address, which allows contracts to fetch the correct
    // resource while providing an ID
    mapping(uint256 => address) public resourceId;

    // Recipient of protocol fees
    address public feeRecipient;

    // Return true if the controller is initialized
    bool public isInitialized;

    /* ============ Constructor ============ */

    /**
     * Initializes the initial fee recipient on deployment.
     *
     * @param _feeRecipient          Address of the initial protocol fee recipient
     */
    constructor(address _feeRecipient) public {
        feeRecipient = _feeRecipient;
    }

    /* ============ External Functions ============ */

    /**
     * Initializes any predeployed factories, modules, and resources post deployment. Note: This function can
     * only be called by the owner once to batch initialize the initial system contracts.
     *
     * @param _factories             List of factories to add
     * @param _modules               List of modules to add
     * @param _resources             List of resources to add
     * @param _resourceIds           List of resource IDs associated with the resources
     */
    function initialize(
        address[] memory _factories,
        address[] memory _modules,
        address[] memory _resources,
        uint256[] memory _resourceIds
    )
        external
        onlyOwner
    {
        require(!isInitialized, "Controller is already initialized");
        require(_resources.length == _resourceIds.length, "Array lengths do not match.");

        factories = _factories;
        modules = _modules;
        resources = _resources;

        // Loop through and initialize isModule, isFactory, and isResource mapping
        for (uint256 i = 0; i < _factories.length; i++) {
            require(_factories[i] != address(0), "Zero address submitted.");
            isFactory[_factories[i]] = true;
        }
        for (uint256 i = 0; i < _modules.length; i++) {
            require(_modules[i] != address(0), "Zero address submitted.");
            isModule[_modules[i]] = true;
        }

        for (uint256 i = 0; i < _resources.length; i++) {
            require(_resources[i] != address(0), "Zero address submitted.");
            require(resourceId[_resourceIds[i]] == address(0), "Resource ID already exists");
            isResource[_resources[i]] = true;
            resourceId[_resourceIds[i]] = _resources[i];
        }

        // Set to true to only allow initialization once
        isInitialized = true;
    }

    /**
     * PRIVILEGED FACTORY FUNCTION. Adds a newly deployed SetToken as an enabled SetToken.
     *
     * @param _setToken               Address of the SetToken contract to add
     */
    function addSet(address _setToken) external onlyInitialized onlyFactory {
        require(!isSet[_setToken], "Set already exists");

        isSet[_setToken] = true;

        sets.push(_setToken);

        emit SetAdded(_setToken, msg.sender);
    }

    /**
     * PRIVILEGED GOVERNANCE FUNCTION. Allows governance to remove a Set
     *
     * @param _setToken               Address of the SetToken contract to remove
     */
    function removeSet(address _setToken) external onlyInitialized onlyOwner {
        require(isSet[_setToken], "Set does not exist");

        sets = sets.remove(_setToken);

        isSet[_setToken] = false;

        emit SetRemoved(_setToken);
    }

    /**
     * PRIVILEGED GOVERNANCE FUNCTION. Allows governance to add a factory
     *
     * @param _factory               Address of the factory contract to add
     */
    function addFactory(address _factory) external onlyInitialized onlyOwner {
        require(!isFactory[_factory], "Factory already exists");

        isFactory[_factory] = true;

        factories.push(_factory);

        emit FactoryAdded(_factory);
    }

    /**
     * PRIVILEGED GOVERNANCE FUNCTION. Allows governance to remove a factory
     *
     * @param _factory               Address of the factory contract to remove
     */
    function removeFactory(address _factory) external onlyInitialized onlyOwner {
        require(isFactory[_factory], "Factory does not exist");

        factories = factories.remove(_factory);

        isFactory[_factory] = false;

        emit FactoryRemoved(_factory);
    }

    /**
     * PRIVILEGED GOVERNANCE FUNCTION. Allows governance to add a module
     *
     * @param _module               Address of the module contract to add
     */
    function addModule(address _module) external onlyInitialized onlyOwner {
        require(!isModule[_module], "Module already exists");

        isModule[_module] = true;

        modules.push(_module);

        emit ModuleAdded(_module);
    }

    /**
     * PRIVILEGED GOVERNANCE FUNCTION. Allows governance to remove a module
     *
     * @param _module               Address of the module contract to remove
     */
    function removeModule(address _module) external onlyInitialized onlyOwner {
        require(isModule[_module], "Module does not exist");

        modules = modules.remove(_module);

        isModule[_module] = false;

        emit ModuleRemoved(_module);
    }

    /**
     * PRIVILEGED GOVERNANCE FUNCTION. Allows governance to add a resource
     *
     * @param _resource               Address of the resource contract to add
     * @param _id                     New ID of the resource contract
     */
    function addResource(address _resource, uint256 _id) external onlyInitialized onlyOwner {
        require(!isResource[_resource], "Resource already exists");

        require(resourceId[_id] == address(0), "Resource ID already exists");

        isResource[_resource] = true;

        resourceId[_id] = _resource;

        resources.push(_resource);

        emit ResourceAdded(_resource, _id);
    }

    /**
     * PRIVILEGED GOVERNANCE FUNCTION. Allows governance to remove a resource
     *
     * @param _id               ID of the resource contract to remove
     */
    function removeResource(uint256 _id) external onlyInitialized onlyOwner {
        address resourceToRemove = resourceId[_id];

        require(resourceToRemove != address(0), "Resource does not exist");

        resources = resources.remove(resourceToRemove);

        delete resourceId[_id];

        isResource[resourceToRemove] = false;

        emit ResourceRemoved(resourceToRemove, _id);
    }

    /**
     * PRIVILEGED GOVERNANCE FUNCTION. Allows governance to add a fee to a module
     *
     * @param _module               Address of the module contract to add fee to
     * @param _feeType              Type of the fee to add in the module
     * @param _newFeePercentage     Percentage of fee to add in the module (denominated in preciseUnits eg 1% = 1e16)
     */
    function addFee(address _module, uint256 _feeType, uint256 _newFeePercentage) external onlyInitialized onlyOwner {
        require(isModule[_module], "Module does not exist");

        require(fees[_module][_feeType] == 0, "Fee type already exists on module");

        fees[_module][_feeType] = _newFeePercentage;

        emit FeeEdited(_module, _feeType, _newFeePercentage);
    }

    /**
     * PRIVILEGED GOVERNANCE FUNCTION. Allows governance to edit a fee in an existing module
     *
     * @param _module               Address of the module contract to edit fee
     * @param _feeType              Type of the fee to edit in the module
     * @param _newFeePercentage     Percentage of fee to edit in the module (denominated in preciseUnits eg 1% = 1e16)
     */
    function editFee(address _module, uint256 _feeType, uint256 _newFeePercentage) external onlyInitialized onlyOwner {
        require(isModule[_module], "Module does not exist");

        require(fees[_module][_feeType] != 0, "Fee type does not exist on module");

        fees[_module][_feeType] = _newFeePercentage;

        emit FeeEdited(_module, _feeType, _newFeePercentage);
    }

    /**
     * PRIVILEGED GOVERNANCE FUNCTION. Allows governance to edit the protocol fee recipient
     *
     * @param _newFeeRecipient      Address of the new protocol fee recipient
     */
    function editFeeRecipient(address _newFeeRecipient) external onlyInitialized onlyOwner {
        require(_newFeeRecipient != address(0), "Address must not be 0");

        feeRecipient = _newFeeRecipient;

        emit FeeRecipientChanged(_newFeeRecipient);
    }

    /* ============ External Getter Functions ============ */

    function getModuleFee(
        address _moduleAddress,
        uint256 _feeType
    )
        external
        view
        returns (uint256)
    {
        return fees[_moduleAddress][_feeType];
    }

    function getFactories() external view returns (address[] memory) {
        return factories;
    }

    function getModules() external view returns (address[] memory) {
        return modules;
    }

    function getResources() external view returns (address[] memory) {
        return resources;
    }

    function getSets() external view returns (address[] memory) {
        return sets;
    }

    /**
     * Check if a contract address is a module, Set, resource, factory or controller
     *
     * @param  _contractAddress           The contract address to check
     */
    function isSystemContract(address _contractAddress) external view returns (bool) {
        return (
            isSet[_contractAddress] ||
            isModule[_contractAddress] ||
            isResource[_contractAddress] ||
            isFactory[_contractAddress] ||
            _contractAddress == address(this)
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_feeRecipient","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_factory","type":"address"}],"name":"FactoryAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_factory","type":"address"}],"name":"FactoryRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_module","type":"address"},{"indexed":true,"internalType":"uint256","name":"_feeType","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_feePercentage","type":"uint256"}],"name":"FeeEdited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newFeeRecipient","type":"address"}],"name":"FeeRecipientChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_module","type":"address"}],"name":"ModuleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_module","type":"address"}],"name":"ModuleRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_resource","type":"address"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"ResourceAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_resource","type":"address"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"ResourceRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_setToken","type":"address"},{"indexed":true,"internalType":"address","name":"_factory","type":"address"}],"name":"SetAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_setToken","type":"address"}],"name":"SetRemoved","type":"event"},{"inputs":[{"internalType":"address","name":"_factory","type":"address"}],"name":"addFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"},{"internalType":"uint256","name":"_feeType","type":"uint256"},{"internalType":"uint256","name":"_newFeePercentage","type":"uint256"}],"name":"addFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"}],"name":"addModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_resource","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"addResource","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_setToken","type":"address"}],"name":"addSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"},{"internalType":"uint256","name":"_feeType","type":"uint256"},{"internalType":"uint256","name":"_newFeePercentage","type":"uint256"}],"name":"editFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newFeeRecipient","type":"address"}],"name":"editFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"factories","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"fees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFactories","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_moduleAddress","type":"address"},{"internalType":"uint256","name":"_feeType","type":"uint256"}],"name":"getModuleFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getModules","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getResources","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSets","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_factories","type":"address[]"},{"internalType":"address[]","name":"_modules","type":"address[]"},{"internalType":"address[]","name":"_resources","type":"address[]"},{"internalType":"uint256[]","name":"_resourceIds","type":"uint256[]"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFactory","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isModule","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isResource","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"}],"name":"isSystemContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"modules","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_factory","type":"address"}],"name":"removeFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"}],"name":"removeModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"removeResource","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_setToken","type":"address"}],"name":"removeSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"resourceId","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"resources","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"sets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063a3c56615116100ad578063d580ded41161007c578063d580ded4146107b8578063e0b75317146107de578063e765ced61461080a578063f2fde38b14610827578063f36b9a9a1461084d576101fb565b8063a3c566151461055b578063b2494df314610782578063c1cc57b01461078a578063c5bb387b14610792576101fb565b80637e6cbb6a116100e95780637e6cbb6a1461050857806381b2248a146105105780638da5cb5b1461052d578063a063246114610535576101fb565b8063715018a61461047c57806374ebe3ec1461048457806376a5bcf6146104aa578063792aa04f146104dc576101fb565b806329ce1ec511610192578063469048401161016157806346904840146104145780634b37c73f1461041c5780635b227f9b14610442578063672383c41461045f576101fb565b806329ce1ec5146103685780632cf7c5311461038e578063392e53cd146103e657806342f6e389146103ee576101fb565b80631ed86f19116101ce5780631ed86f19146102a5578063207a9485146102cb578063244d6daa146102f1578063263a53621461032a576101fb565b806301b98339146102005780630f04ba671461021f57806313bc6d4b1461025957806319e2c3491461027f575b600080fd5b61021d6004803603602081101561021657600080fd5b503561087f565b005b6102456004803603602081101561023557600080fd5b50356001600160a01b0316610a81565b604080519115158252519081900360200190f35b6102456004803603602081101561026f57600080fd5b50356001600160a01b0316610a96565b61021d6004803603602081101561029557600080fd5b50356001600160a01b0316610b34565b61021d600480360360208110156102bb57600080fd5b50356001600160a01b0316610d03565b610245600480360360208110156102e157600080fd5b50356001600160a01b0316610e99565b61030e6004803603602081101561030757600080fd5b5035610eae565b604080516001600160a01b039092168252519081900360200190f35b6103566004803603604081101561034057600080fd5b506001600160a01b038135169060200135610ed5565b60408051918252519081900360200190f35b61021d6004803603602081101561037e57600080fd5b50356001600160a01b0316610ef2565b610396611089565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156103d25781810151838201526020016103ba565b505050509050019250505060405180910390f35b6102456110ec565b6102456004803603602081101561040457600080fd5b50356001600160a01b03166110fc565b61030e611111565b61021d6004803603602081101561043257600080fd5b50356001600160a01b0316611120565b61030e6004803603602081101561045857600080fd5b50356112f3565b61030e6004803603602081101561047557600080fd5b5035611300565b61021d61130d565b6102456004803603602081101561049a57600080fd5b50356001600160a01b03166113af565b61021d600480360360608110156104c057600080fd5b506001600160a01b0381351690602081013590604001356113c4565b610356600480360360408110156104f257600080fd5b506001600160a01b03813516906020013561158b565b6103966115b3565b61030e6004803603602081101561052657600080fd5b5035611613565b61030e611620565b61021d6004803603602081101561054b57600080fd5b50356001600160a01b031661162f565b61021d6004803603608081101561057157600080fd5b810190602081018135600160201b81111561058b57600080fd5b82018360208201111561059d57600080fd5b803590602001918460208302840111600160201b831117156105be57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561060d57600080fd5b82018360208201111561061f57600080fd5b803590602001918460208302840111600160201b8311171561064057600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561068f57600080fd5b8201836020820111156106a157600080fd5b803590602001918460208302840111600160201b831117156106c257600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561071157600080fd5b82018360208201111561072357600080fd5b803590602001918460208302840111600160201b8311171561074457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611801945050505050565b610396611cb1565b610396611d11565b61021d600480360360208110156107a857600080fd5b50356001600160a01b0316611d71565b61021d600480360360208110156107ce57600080fd5b50356001600160a01b0316611ebc565b61021d600480360360408110156107f457600080fd5b506001600160a01b03813516906020013561205c565b61030e6004803603602081101561082057600080fd5b503561228b565b61021d6004803603602081101561083d57600080fd5b50356001600160a01b03166122a6565b61021d6004803603606081101561086357600080fd5b506001600160a01b03813516906020810135906040013561239e565b600b54600160a01b900460ff166108cb576040805162461bcd60e51b815260206004820152601d602482015260008051602061285c833981519152604482015290519081900360640190fd5b6108d3612507565b6000546001600160a01b03908116911614610923576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b6000818152600a60205260409020546001600160a01b03168061098d576040805162461bcd60e51b815260206004820152601760248201527f5265736f7572636520646f6573206e6f74206578697374000000000000000000604482015290519081900360640190fd5b6109fa8160048054806020026020016040519081016040528092919081815260200182805480156109e757602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116109c9575b505050505061250b90919063ffffffff16565b8051610a0e9160049160209091019061274a565b506000828152600a6020908152604080832080546001600160a01b03191690556001600160a01b0384168084526008835292819020805460ff19169055805185815290517fbc7961276d9fc2a4fe4fc4d817e48d15615364e5df46fa0d8fb45637582ae4f8929181900390910190a25050565b60066020526000908152604090205460ff1681565b6001600160a01b03811660009081526005602052604081205460ff1680610ad557506001600160a01b03821660009081526007602052604090205460ff165b80610af857506001600160a01b03821660009081526008602052604090205460ff165b80610b1b57506001600160a01b03821660009081526006602052604090205460ff165b80610b2e57506001600160a01b03821630145b92915050565b600b54600160a01b900460ff16610b80576040805162461bcd60e51b815260206004820152601d602482015260008051602061285c833981519152604482015290519081900360640190fd5b610b88612507565b6000546001600160a01b03908116911614610bd8576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526005602052604090205460ff16610c3a576040805162461bcd60e51b815260206004820152601260248201527114d95d08191bd95cc81b9bdd08195e1a5cdd60721b604482015290519081900360640190fd5b610ca58160018054806020026020016040519081016040528092919081815260200182805480156109e7576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116109c957505050505061250b90919063ffffffff16565b8051610cb99160019160209091019061274a565b506001600160a01b038116600081815260056020526040808220805460ff19169055517f8e0c505159e335da41fb50766da0ed86ceb6c429d0e6b431e8542cc6c3271b539190a250565b600b54600160a01b900460ff16610d4f576040805162461bcd60e51b815260206004820152601d602482015260008051602061285c833981519152604482015290519081900360640190fd5b610d57612507565b6000546001600160a01b03908116911614610da7576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610e0d576040805162461bcd60e51b81526020600482015260156024820152744d6f64756c6520616c72656164792065786973747360581b604482015290519081900360640190fd5b6001600160a01b038116600081815260076020526040808220805460ff1916600190811790915560038054918201815583527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b03191684179055517fead6a006345da1073a106d5f32372d2d2204f46cb0b4bca8f5ebafcbbed12b8a9190a250565b60086020526000908152604090205460ff1681565b60048181548110610ebb57fe5b6000918252602090912001546001600160a01b0316905081565b600960209081526000928352604080842090915290825290205481565b600b54600160a01b900460ff16610f3e576040805162461bcd60e51b815260206004820152601d602482015260008051602061285c833981519152604482015290519081900360640190fd5b610f46612507565b6000546001600160a01b03908116911614610f96576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff1615610ffd576040805162461bcd60e51b8152602060048201526016602482015275466163746f727920616c72656164792065786973747360501b604482015290519081900360640190fd5b6001600160a01b038116600081815260066020526040808220805460ff1916600190811790915560028054918201815583527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b03191684179055517f6fdc0147105e43e21da80a75b42d0fd464060d5e1a34b0cefbf0b4ccfc2e36a19190a250565b606060018054806020026020016040519081016040528092919081815260200182805480156110e157602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116110c3575b505050505090505b90565b600b54600160a01b900460ff1681565b60076020526000908152604090205460ff1681565b600b546001600160a01b031681565b600b54600160a01b900460ff1661116c576040805162461bcd60e51b815260206004820152601d602482015260008051602061285c833981519152604482015290519081900360640190fd5b611174612507565b6000546001600160a01b039081169116146111c4576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff1661122a576040805162461bcd60e51b8152602060048201526016602482015275119858dd1bdc9e48191bd95cc81b9bdd08195e1a5cdd60521b604482015290519081900360640190fd5b6112958160028054806020026020016040519081016040528092919081815260200182805480156109e7576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116109c957505050505061250b90919063ffffffff16565b80516112a99160029160209091019061274a565b506001600160a01b038116600081815260066020526040808220805460ff19169055517fafa2737b2090fa39c66b7348625f0c03726240f724defbc6216d679506f944419190a250565b60018181548110610ebb57fe5b60028181548110610ebb57fe5b611315612507565b6000546001600160a01b03908116911614611365576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60056020526000908152604090205460ff1681565b600b54600160a01b900460ff16611410576040805162461bcd60e51b815260206004820152601d602482015260008051602061285c833981519152604482015290519081900360640190fd5b611418612507565b6000546001600160a01b03908116911614611468576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b6001600160a01b03831660009081526007602052604090205460ff166114cd576040805162461bcd60e51b8152602060048201526015602482015274135bd91d5b1948191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b6001600160a01b038316600090815260096020908152604080832085845290915290205461152c5760405162461bcd60e51b81526004018080602001828103825260218152602001806127fa6021913960400191505060405180910390fd5b6001600160a01b0383166000818152600960209081526040808320868452825291829020849055815184815291518593927f84d9943a841552627b79770783a3cfd4da8303efc30bd75b65d863bd909926e392908290030190a3505050565b6001600160a01b03919091166000908152600960209081526040808320938352929052205490565b606060028054806020026020016040519081016040528092919081815260200182805480156110e1576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116110c3575050505050905090565b60038181548110610ebb57fe5b6000546001600160a01b031690565b600b54600160a01b900460ff1661167b576040805162461bcd60e51b815260206004820152601d602482015260008051602061285c833981519152604482015290519081900360640190fd5b611683612507565b6000546001600160a01b039081169116146116d3576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611738576040805162461bcd60e51b8152602060048201526015602482015274135bd91d5b1948191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b6117a38160038054806020026020016040519081016040528092919081815260200182805480156109e7576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116109c957505050505061250b90919063ffffffff16565b80516117b79160039160209091019061274a565b506001600160a01b038116600081815260076020526040808220805460ff19169055517f0a1ee69f55c33d8467c69ca59ce2007a737a88603d75392972520bf67cb513b89190a250565b611809612507565b6000546001600160a01b03908116911614611859576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff16156118a25760405162461bcd60e51b815260040180806020018281038252602181526020018061287c6021913960400191505060405180910390fd5b80518251146118f8576040805162461bcd60e51b815260206004820152601b60248201527f4172726179206c656e6774687320646f206e6f74206d617463682e0000000000604482015290519081900360640190fd5b835161190b90600290602087019061274a565b50825161191f90600390602086019061274a565b50815161193390600490602085019061274a565b5060005b8451811015611a015760006001600160a01b031685828151811061195757fe5b60200260200101516001600160a01b031614156119b5576040805162461bcd60e51b81526020600482015260176024820152762d32b9379030b2323932b9b99039bab136b4ba3a32b21760491b604482015290519081900360640190fd5b6001600660008784815181106119c757fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101611937565b5060005b8351811015611acf5760006001600160a01b0316848281518110611a2557fe5b60200260200101516001600160a01b03161415611a83576040805162461bcd60e51b81526020600482015260176024820152762d32b9379030b2323932b9b99039bab136b4ba3a32b21760491b604482015290519081900360640190fd5b600160076000868481518110611a9557fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101611a05565b5060005b8251811015611c975760006001600160a01b0316838281518110611af357fe5b60200260200101516001600160a01b03161415611b51576040805162461bcd60e51b81526020600482015260176024820152762d32b9379030b2323932b9b99039bab136b4ba3a32b21760491b604482015290519081900360640190fd5b60006001600160a01b0316600a6000848481518110611b6c57fe5b6020908102919091018101518252810191909152604001600020546001600160a01b031614611be2576040805162461bcd60e51b815260206004820152601a60248201527f5265736f7572636520494420616c726561647920657869737473000000000000604482015290519081900360640190fd5b600160086000858481518110611bf457fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550828181518110611c3f57fe5b6020026020010151600a6000848481518110611c5757fe5b602090810291909101810151825281019190915260400160002080546001600160a01b0319166001600160a01b0392909216919091179055600101611ad3565b5050600b805460ff60a01b1916600160a01b179055505050565b606060038054806020026020016040519081016040528092919081815260200182805480156110e1576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116110c3575050505050905090565b606060048054806020026020016040519081016040528092919081815260200182805480156110e1576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116110c3575050505050905090565b600b54600160a01b900460ff16611dbd576040805162461bcd60e51b815260206004820152601d602482015260008051602061285c833981519152604482015290519081900360640190fd5b611dc5612507565b6000546001600160a01b03908116911614611e15576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b6001600160a01b038116611e68576040805162461bcd60e51b8152602060048201526015602482015274041646472657373206d757374206e6f74206265203605c1b604482015290519081900360640190fd5b600b80546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f167cccccc6e9b2892a740ec13fc1e51d3de8ea384f25bd87fee7412d588637e29181900360200190a150565b600b54600160a01b900460ff16611f08576040805162461bcd60e51b815260206004820152601d602482015260008051602061285c833981519152604482015290519081900360640190fd5b3360009081526006602052604090205460ff16611f6c576040805162461bcd60e51b815260206004820152601d60248201527f4f6e6c792076616c696420666163746f726965732063616e2063616c6c000000604482015290519081900360640190fd5b6001600160a01b03811660009081526005602052604090205460ff1615611fcf576040805162461bcd60e51b815260206004820152601260248201527153657420616c72656164792065786973747360701b604482015290519081900360640190fd5b6001600160a01b038116600081815260056020526040808220805460ff19166001908117909155805480820182559083527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b03191684179055513392917fdb18a8959c84999e8bddb4624081f905f78eb9d63ec80b48d3daf2d38ae660a291a350565b600b54600160a01b900460ff166120a8576040805162461bcd60e51b815260206004820152601d602482015260008051602061285c833981519152604482015290519081900360640190fd5b6120b0612507565b6000546001600160a01b03908116911614612100576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526008602052604090205460ff161561216e576040805162461bcd60e51b815260206004820152601760248201527f5265736f7572636520616c726561647920657869737473000000000000000000604482015290519081900360640190fd5b6000818152600a60205260409020546001600160a01b0316156121d8576040805162461bcd60e51b815260206004820152601a60248201527f5265736f7572636520494420616c726561647920657869737473000000000000604482015290519081900360640190fd5b6001600160a01b0382166000818152600860209081526040808320805460ff19166001908117909155858452600a835281842080546001600160a01b031990811687179091556004805492830181559094527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180549093168417909255815184815291517f5674036e091d8b4ee7f8e06cc71d41ee33f3fc331821fc0e017c1a091e8c861e9281900390910190a25050565b600a602052600090815260409020546001600160a01b031681565b6122ae612507565b6000546001600160a01b039081169116146122fe576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b6001600160a01b0381166123435760405162461bcd60e51b81526004018080602001828103825260268152602001806127d46026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600b54600160a01b900460ff166123ea576040805162461bcd60e51b815260206004820152601d602482015260008051602061285c833981519152604482015290519081900360640190fd5b6123f2612507565b6000546001600160a01b03908116911614612442576040805162461bcd60e51b8152602060048201819052602482015260008051602061283c833981519152604482015290519081900360640190fd5b6001600160a01b03831660009081526007602052604090205460ff166124a7576040805162461bcd60e51b8152602060048201526015602482015274135bd91d5b1948191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b6001600160a01b03831660009081526009602090815260408083208584529091529020541561152c5760405162461bcd60e51b815260040180806020018281038252602181526020018061281b6021913960400191505060405180910390fd5b3390565b606060008061251a8585612580565b9150915080612568576040805162461bcd60e51b815260206004820152601560248201527420b2323932b9b9903737ba1034b71030b93930bc9760591b604482015290519081900360640190fd5b606061257486846125e6565b509350610b2e92505050565b81516000908190815b818110156125d357846001600160a01b03168682815181106125a757fe5b60200260200101516001600160a01b031614156125cb579250600191506125df9050565b600101612589565b50600019600092509250505b9250929050565b8151606090600090808410612642576040805162461bcd60e51b815260206004820152601860248201527f496e646578206d757374206265203c2041206c656e6774680000000000000000604482015290519081900360640190fd5b60606001820367ffffffffffffffff8111801561265e57600080fd5b50604051908082528060200260200182016040528015612688578160200160208202803683370190505b50905060005b858110156126d6578681815181106126a257fe5b60200260200101518282815181106126b657fe5b6001600160a01b039092166020928302919091019091015260010161268e565b50600185015b82811015612727578681815181106126f057fe5b602002602001015182600183038151811061270757fe5b6001600160a01b03909216602092830291909101909101526001016126dc565b508086868151811061273557fe5b60200260200101519350935050509250929050565b82805482825590600052602060002090810192821561279f579160200282015b8281111561279f57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061276a565b506127ab9291506127af565b5090565b6110e991905b808211156127ab5780546001600160a01b03191681556001016127b556fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373466565207479706520646f6573206e6f74206578697374206f6e206d6f64756c65466565207479706520616c726561647920657869737473206f6e206d6f64756c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572436f6e7472616374206d75737420626520696e697469616c697a65642e000000436f6e74726f6c6c657220697320616c726561647920696e697469616c697a6564a264697066735822122076dcd76a63795ba374819b82b87d9924d0ab346e8fc7ea520950086ae66b295764736f6c634300060a0033

Deployed Bytecode Sourcemap

11070:12053:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19425:411;;;;;;;;;;;;;;;;-1:-1:-1;19425:411:0;;:::i;:::-;;12833:41;;;;;;;;;;;;;;;;-1:-1:-1;12833:41:0;-1:-1:-1;;;;;12833:41:0;;:::i;:::-;;;;;;;;;;;;;;;;;;22782:338;;;;;;;;;;;;;;;;-1:-1:-1;22782:338:0;-1:-1:-1;;;;;22782:338:0;;:::i;16498:257::-;;;;;;;;;;;;;;;;-1:-1:-1;16498:257:0;-1:-1:-1;;;;;16498:257:0;;:::i;17861:251::-;;;;;;;;;;;;;;;;-1:-1:-1;17861:251:0;-1:-1:-1;;;;;17861:251:0;;:::i;12928:42::-;;;;;;;;;;;;;;;;-1:-1:-1;12928:42:0;-1:-1:-1;;;;;12928:42:0;;:::i;12670:26::-;;;;;;;;;;;;;;;;-1:-1:-1;12670:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;12670:26:0;;;;;;;;;;;;;;13154:59;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13154:59:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;16941:263;;;;;;;;;;;;;;;;-1:-1:-1;16941:263:0;-1:-1:-1;;;;;16941:263:0;;:::i;22499:90::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13535:25;;;:::i;12881:40::-;;;;;;;;;;;;;;;;-1:-1:-1;12881:40:0;-1:-1:-1;;;;;12881:40:0;;:::i;13446:27::-;;;:::i;17396:282::-;;;;;;;;;;;;;;;;-1:-1:-1;17396:282:0;-1:-1:-1;;;;;17396:282:0;;:::i;12296:21::-;;;;;;;;;;;;;;;;-1:-1:-1;12296:21:0;;:::i;12371:26::-;;;;;;;;;;;;;;;;-1:-1:-1;12371:26:0;;:::i;6591:148::-;;;:::i;12789:37::-;;;;;;;;;;;;;;;;-1:-1:-1;12789:37:0;-1:-1:-1;;;;;12789:37:0;;:::i;21022:392::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21022:392:0;;;;;;;;;;;;;:::i;21962:209::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21962:209:0;;;;;;;;:::i;22179:100::-;;;:::i;12483:24::-;;;;;;;;;;;;;;;;-1:-1:-1;12483:24:0;;:::i;5949:79::-;;;:::i;18301:268::-;;;;;;;;;;;;;;;;-1:-1:-1;18301:268:0;-1:-1:-1;;;;;18301:268:0;;:::i;14450:1396::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14450:1396:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14450:1396:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14450:1396:0;;;;;;;;-1:-1:-1;14450:1396:0;;-1:-1:-1;;;;;14450:1396:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14450:1396:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14450:1396:0;;;;;;;;-1:-1:-1;14450:1396:0;;-1:-1:-1;;;;;14450:1396:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14450:1396:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14450:1396:0;;;;;;;;-1:-1:-1;14450:1396:0;;-1:-1:-1;;;;;14450:1396:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14450:1396:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14450:1396:0;;-1:-1:-1;14450:1396:0;;-1:-1:-1;;;;;14450:1396:0:i;22287:96::-;;;:::i;22391:100::-;;;:::i;21620:269::-;;;;;;;;;;;;;;;;-1:-1:-1;21620:269:0;-1:-1:-1;;;;;21620:269:0;;:::i;16051:257::-;;;;;;;;;;;;;;;;-1:-1:-1;16051:257:0;-1:-1:-1;;;;;16051:257:0;;:::i;18829:412::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18829:412:0;;;;;;;;:::i;13357:45::-;;;;;;;;;;;;;;;;-1:-1:-1;13357:45:0;;:::i;6894:244::-;;;;;;;;;;;;;;;;-1:-1:-1;6894:244:0;-1:-1:-1;;;;;6894:244:0;;:::i;20228:391::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20228:391:0;;;;;;;;;;;;;:::i;19425:411::-;12137:13;;-1:-1:-1;;;12137:13:0;;;;12129:55;;;;;-1:-1:-1;;;12129:55:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12129:55:0;;;;;;;;;;;;;;;6171:12:::1;:10;:12::i;:::-;6161:6;::::0;-1:-1:-1;;;;;6161:6:0;;::::1;:22:::0;::::1;;6153:67;;;::::0;;-1:-1:-1;;;6153:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;::::1;;19508:24:::2;19535:15:::0;;;:10:::2;:15;::::0;;;;;-1:-1:-1;;;;;19535:15:0::2;19571:30:::0;19563:66:::2;;;::::0;;-1:-1:-1;;;19563:66:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;19654:34;19671:16;19654:9;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;19654:16:0::2;::::0;;;;;::::2;::::0;::::2;;::::0;;::::2;;;;;;;;;;;:34;;;;:::i;:::-;19642:46:::0;;::::2;::::0;:9:::2;::::0;:46:::2;::::0;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;19708:15:0::2;::::0;;;:10:::2;:15;::::0;;;;;;;19701:22;;-1:-1:-1;;;;;;19701:22:0::2;::::0;;-1:-1:-1;;;;;19736:28:0;::::2;::::0;;;:10:::2;:28:::0;;;;;;:36;;-1:-1:-1;;19736:36:0::2;::::0;;19790:38;;;;;;;::::2;::::0;;;;;;;;;::::2;6231:1;19425:411:::0;:::o;12833:41::-;;;;;;;;;;;;;;;:::o;22782:338::-;-1:-1:-1;;;;;22896:23:0;;22857:4;22896:23;;;:5;:23;;;;;;;;;:66;;-1:-1:-1;;;;;;22936:26:0;;;;;;:8;:26;;;;;;;;22896:66;:111;;;-1:-1:-1;;;;;;22979:28:0;;;;;;:10;:28;;;;;;;;22896:111;:155;;;-1:-1:-1;;;;;;23024:27:0;;;;;;:9;:27;;;;;;;;22896:155;:205;;;-1:-1:-1;;;;;;23068:33:0;;23096:4;23068:33;22896:205;22874:238;22782:338;-1:-1:-1;;22782:338:0:o;16498:257::-;12137:13;;-1:-1:-1;;;12137:13:0;;;;12129:55;;;;;-1:-1:-1;;;12129:55:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12129:55:0;;;;;;;;;;;;;;;6171:12:::1;:10;:12::i;:::-;6161:6;::::0;-1:-1:-1;;;;;6161:6:0;;::::1;:22:::0;::::1;;6153:67;;;::::0;;-1:-1:-1;;;6153:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;16590:16:0;::::2;;::::0;;;:5:::2;:16;::::0;;;;;::::2;;16582:47;;;::::0;;-1:-1:-1;;;16582:47:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;16582:47:0;;;;;;;;;;;;;::::2;;16649:22;16661:9;16649:4;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;16649:11:0::2;::::0;;;;;::::2;::::0;::::2;;::::0;;::::2;;;;;;;;;;:22;;;;:::i;:::-;16642:29:::0;;::::2;::::0;:4:::2;::::0;:29:::2;::::0;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;;;;;;16684:16:0;::::2;16703:5;16684:16:::0;;;:5:::2;:16;::::0;;;;;:24;;-1:-1:-1;;16684:24:0::2;::::0;;16726:21;::::2;::::0;16703:5;16726:21:::2;16498:257:::0;:::o;17861:251::-;12137:13;;-1:-1:-1;;;12137:13:0;;;;12129:55;;;;;-1:-1:-1;;;12129:55:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12129:55:0;;;;;;;;;;;;;;;6171:12:::1;:10;:12::i;:::-;6161:6;::::0;-1:-1:-1;;;;;6161:6:0;;::::1;:22:::0;::::1;;6153:67;;;::::0;;-1:-1:-1;;;6153:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;17952:17:0;::::2;;::::0;;;:8:::2;:17;::::0;;;;;::::2;;17951:18;17943:52;;;::::0;;-1:-1:-1;;;17943:52:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;17943:52:0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;18008:17:0;::::2;;::::0;;;:8:::2;:17;::::0;;;;;:24;;-1:-1:-1;;18008:24:0::2;18028:4;18008:24:::0;;::::2;::::0;;;18045:7:::2;:21:::0;;;;::::2;::::0;;;;;::::2;::::0;;-1:-1:-1;;;;;;18045:21:0::2;::::0;::::2;::::0;;18084:20;::::2;::::0;18008:17;18084:20:::2;17861:251:::0;:::o;12928:42::-;;;;;;;;;;;;;;;:::o;12670:26::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12670:26:0;;-1:-1:-1;12670:26:0;:::o;13154:59::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;16941:263::-;12137:13;;-1:-1:-1;;;12137:13:0;;;;12129:55;;;;;-1:-1:-1;;;12129:55:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12129:55:0;;;;;;;;;;;;;;;6171:12:::1;:10;:12::i;:::-;6161:6;::::0;-1:-1:-1;;;;;6161:6:0;;::::1;:22:::0;::::1;;6153:67;;;::::0;;-1:-1:-1;;;6153:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;17034:19:0;::::2;;::::0;;;:9:::2;:19;::::0;;;;;::::2;;17033:20;17025:55;;;::::0;;-1:-1:-1;;;17025:55:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;17025:55:0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;17093:19:0;::::2;;::::0;;;:9:::2;:19;::::0;;;;;:26;;-1:-1:-1;;17093:26:0::2;17115:4;17093:26:::0;;::::2;::::0;;;17132:9:::2;:24:::0;;;;::::2;::::0;;;;;::::2;::::0;;-1:-1:-1;;;;;;17132:24:0::2;::::0;::::2;::::0;;17174:22;::::2;::::0;17093:19;17174:22:::2;16941:263:::0;:::o;22499:90::-;22541:16;22577:4;22570:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22570:11:0;;;;;;;;;;;;;;;;;;;;;;;22499:90;;:::o;13535:25::-;;;-1:-1:-1;;;13535:25:0;;;;;:::o;12881:40::-;;;;;;;;;;;;;;;:::o;13446:27::-;;;-1:-1:-1;;;;;13446:27:0;;:::o;17396:282::-;12137:13;;-1:-1:-1;;;12137:13:0;;;;12129:55;;;;;-1:-1:-1;;;12129:55:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12129:55:0;;;;;;;;;;;;;;;6171:12:::1;:10;:12::i;:::-;6161:6;::::0;-1:-1:-1;;;;;6161:6:0;;::::1;:22:::0;::::1;;6153:67;;;::::0;;-1:-1:-1;;;6153:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;17491:19:0;::::2;;::::0;;;:9:::2;:19;::::0;;;;;::::2;;17483:54;;;::::0;;-1:-1:-1;;;17483:54:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;17483:54:0;;;;;;;;;;;;;::::2;;17562:26;17579:8;17562:9;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;17562:16:0::2;::::0;;;;;::::2;::::0;::::2;;::::0;;::::2;;;;;;;;;;:26;;;;:::i;:::-;17550:38:::0;;::::2;::::0;:9:::2;::::0;:38:::2;::::0;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;;;;;;17601:19:0;::::2;17623:5;17601:19:::0;;;:9:::2;:19;::::0;;;;;:27;;-1:-1:-1;;17601:27:0::2;::::0;;17646:24;::::2;::::0;17623:5;17646:24:::2;17396:282:::0;:::o;12296:21::-;;;;;;;;;;12371:26;;;;;;;;;;6591:148;6171:12;:10;:12::i;:::-;6161:6;;-1:-1:-1;;;;;6161:6:0;;;:22;;;6153:67;;;;;-1:-1:-1;;;6153:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;;;6698:1:::1;6682:6:::0;;6661:40:::1;::::0;-1:-1:-1;;;;;6682:6:0;;::::1;::::0;6661:40:::1;::::0;6698:1;;6661:40:::1;6729:1;6712:19:::0;;-1:-1:-1;;;;;;6712:19:0::1;::::0;;6591:148::o;12789:37::-;;;;;;;;;;;;;;;:::o;21022:392::-;12137:13;;-1:-1:-1;;;12137:13:0;;;;12129:55;;;;;-1:-1:-1;;;12129:55:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12129:55:0;;;;;;;;;;;;;;;6171:12:::1;:10;:12::i;:::-;6161:6;::::0;-1:-1:-1;;;;;6161:6:0;;::::1;:22:::0;::::1;;6153:67;;;::::0;;-1:-1:-1;;;6153:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;21155:17:0;::::2;;::::0;;;:8:::2;:17;::::0;;;;;::::2;;21147:51;;;::::0;;-1:-1:-1;;;21147:51:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;21147:51:0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;21219:13:0;::::2;;::::0;;;:4:::2;:13;::::0;;;;;;;:23;;;;;;;;;21211:74:::2;;;;-1:-1:-1::0;;;21211:74:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;21298:13:0;::::2;;::::0;;;:4:::2;:13;::::0;;;;;;;:23;;;;;;;;;:43;;;21359:47;;;;;;;21312:8;;21298:13;21359:47:::2;::::0;;;;;;;::::2;21022:392:::0;;;:::o;21962:209::-;-1:-1:-1;;;;;22133:20:0;;;;22101:7;22133:20;;;:4;:20;;;;;;;;:30;;;;;;;;;21962:209::o;22179:100::-;22226:16;22262:9;22255:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22255:16:0;;;;;;;;;;;;;;;;;;;;;;22179:100;:::o;12483:24::-;;;;;;;;;;5949:79;5987:7;6014:6;-1:-1:-1;;;;;6014:6:0;5949:79;:::o;18301:268::-;12137:13;;-1:-1:-1;;;12137:13:0;;;;12129:55;;;;;-1:-1:-1;;;12129:55:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12129:55:0;;;;;;;;;;;;;;;6171:12:::1;:10;:12::i;:::-;6161:6;::::0;-1:-1:-1;;;;;6161:6:0;;::::1;:22:::0;::::1;;6153:67;;;::::0;;-1:-1:-1;;;6153:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;18394:17:0;::::2;;::::0;;;:8:::2;:17;::::0;;;;;::::2;;18386:51;;;::::0;;-1:-1:-1;;;18386:51:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;18386:51:0;;;;;;;;;;;;;::::2;;18460:23;18475:7;18460;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;18460:14:0::2;::::0;;;;;::::2;::::0;::::2;;::::0;;::::2;;;;;;;;;;:23;;;;:::i;:::-;18450:33:::0;;::::2;::::0;:7:::2;::::0;:33:::2;::::0;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;;;;;;18496:17:0;::::2;18516:5;18496:17:::0;;;:8:::2;:17;::::0;;;;;:25;;-1:-1:-1;;18496:25:0::2;::::0;;18539:22;::::2;::::0;18516:5;18539:22:::2;18301:268:::0;:::o;14450:1396::-;6171:12;:10;:12::i;:::-;6161:6;;-1:-1:-1;;;;;6161:6:0;;;:22;;;6153:67;;;;;-1:-1:-1;;;6153:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;;;14691:13:::1;::::0;-1:-1:-1;;;14691:13:0;::::1;;;14690:14;14682:60;;;;-1:-1:-1::0;;;14682:60:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14782:12;:19;14761:10;:17;:40;14753:80;;;::::0;;-1:-1:-1;;;14753:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;14846:22:::0;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;14879:18:0;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;14908:22:0;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;15032:9:0::1;15027:184;15051:10;:17;15047:1;:21;15027:184;;;15123:1;-1:-1:-1::0;;;;;15098:27:0::1;:10;15109:1;15098:13;;;;;;;;;;;;;;-1:-1:-1::0;;;;;15098:27:0::1;;;15090:63;;;::::0;;-1:-1:-1;;;15090:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;15090:63:0;;;;;;;;;;;;;::::1;;15195:4;15168:9;:24;15178:10;15189:1;15178:13;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;15168:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;15168:24:0;:31;;-1:-1:-1;;15168:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;15070:3:0::1;15027:184;;;-1:-1:-1::0;15226:9:0::1;15221:177;15245:8;:15;15241:1;:19;15221:177;;;15313:1;-1:-1:-1::0;;;;;15290:25:0::1;:8;15299:1;15290:11;;;;;;;;;;;;;;-1:-1:-1::0;;;;;15290:25:0::1;;;15282:61;;;::::0;;-1:-1:-1;;;15282:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;15282:61:0;;;;;;;;;;;;;::::1;;15382:4;15358:8;:21;15367:8;15376:1;15367:11;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;15358:21:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;15358:21:0;:28;;-1:-1:-1;;15358:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;15262:3:0::1;15221:177;;;-1:-1:-1::0;15415:9:0::1;15410:338;15434:10;:17;15430:1;:21;15410:338;;;15506:1;-1:-1:-1::0;;;;;15481:27:0::1;:10;15492:1;15481:13;;;;;;;;;;;;;;-1:-1:-1::0;;;;;15481:27:0::1;;;15473:63;;;::::0;;-1:-1:-1;;;15473:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;15473:63:0;;;;;;;;;;;;;::::1;;15598:1;-1:-1:-1::0;;;;;15559:41:0::1;:10;:27;15570:12;15583:1;15570:15;;;;;;;;;::::0;;::::1;::::0;;;;;;;15559:27;;;::::1;::::0;;;;;;-1:-1:-1;15559:27:0;;-1:-1:-1;;;;;15559:27:0::1;:41;15551:80;;;::::0;;-1:-1:-1;;;15551:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;15674:4;15646:10;:25;15657:10;15668:1;15657:13;;;;;;;;;;;;;;-1:-1:-1::0;;;;;15646:25:0::1;-1:-1:-1::0;;;;;15646:25:0::1;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;15723:10;15734:1;15723:13;;;;;;;;;;;;;;15693:10;:27;15704:12;15717:1;15704:15;;;;;;;;;::::0;;::::1;::::0;;;;;;;15693:27;;;::::1;::::0;;;;;;-1:-1:-1;15693:27:0;:43;;-1:-1:-1;;;;;;15693:43:0::1;-1:-1:-1::0;;;;;15693:43:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;15453:3:0::1;15410:338;;;-1:-1:-1::0;;15818:13:0::1;:20:::0;;-1:-1:-1;;;;15818:20:0::1;-1:-1:-1::0;;;15818:20:0::1;::::0;;-1:-1:-1;;;14450:1396:0:o;22287:96::-;22332:16;22368:7;22361:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22361:14:0;;;;;;;;;;;;;;;;;;;;;;22287:96;:::o;22391:100::-;22438:16;22474:9;22467:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22467:16:0;;;;;;;;;;;;;;;;;;;;;;22391:100;:::o;21620:269::-;12137:13;;-1:-1:-1;;;12137:13:0;;;;12129:55;;;;;-1:-1:-1;;;12129:55:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12129:55:0;;;;;;;;;;;;;;;6171:12:::1;:10;:12::i;:::-;6161:6;::::0;-1:-1:-1;;;;;6161:6:0;;::::1;:22:::0;::::1;;6153:67;;;::::0;;-1:-1:-1;;;6153:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;21726:30:0;::::2;21718:64;;;::::0;;-1:-1:-1;;;21718:64:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;21718:64:0;;;;;;;;;;;;;::::2;;21795:12;:31:::0;;-1:-1:-1;;;;;21795:31:0;::::2;-1:-1:-1::0;;;;;;21795:31:0;;::::2;::::0;::::2;::::0;;;21844:37:::2;::::0;;;;;;::::2;::::0;;;;::::2;::::0;;::::2;21620:269:::0;:::o;16051:257::-;12137:13;;-1:-1:-1;;;12137:13:0;;;;12129:55;;;;;-1:-1:-1;;;12129:55:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12129:55:0;;;;;;;;;;;;;;;12018:10:::1;12008:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;12000:63;;;::::0;;-1:-1:-1;;;12000:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;16143:16:0;::::2;;::::0;;;:5:::2;:16;::::0;;;;;::::2;;16142:17;16134:48;;;::::0;;-1:-1:-1;;;16134:48:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;16134:48:0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;16195:16:0;::::2;;::::0;;;:5:::2;:16;::::0;;;;;:23;;-1:-1:-1;;16195:23:0::2;16214:4;16195:23:::0;;::::2;::::0;;;16231:20;;;;::::2;::::0;;;;;;::::2;::::0;;-1:-1:-1;;;;;;16231:20:0::2;::::0;::::2;::::0;;16269:31;16289:10:::2;::::0;16195:16;16269:31:::2;::::0;::::2;16051:257:::0;:::o;18829:412::-;12137:13;;-1:-1:-1;;;12137:13:0;;;;12129:55;;;;;-1:-1:-1;;;12129:55:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12129:55:0;;;;;;;;;;;;;;;6171:12:::1;:10;:12::i;:::-;6161:6;::::0;-1:-1:-1;;;;;6161:6:0;;::::1;:22:::0;::::1;;6153:67;;;::::0;;-1:-1:-1;;;6153:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;18937:21:0;::::2;;::::0;;;:10:::2;:21;::::0;;;;;::::2;;18936:22;18928:58;;;::::0;;-1:-1:-1;;;18928:58:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;19034:1;19007:15:::0;;;:10:::2;:15;::::0;;;;;-1:-1:-1;;;;;19007:15:0::2;:29:::0;18999:68:::2;;;::::0;;-1:-1:-1;;;18999:68:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;19080:21:0;::::2;;::::0;;;:10:::2;:21;::::0;;;;;;;:28;;-1:-1:-1;;19080:28:0::2;19104:4;19080:28:::0;;::::2;::::0;;;19121:15;;;:10:::2;:15:::0;;;;;:27;;-1:-1:-1;;;;;;19121:27:0;;::::2;::::0;::::2;::::0;;;19161:9:::2;:25:::0;;;;::::2;::::0;;;;;;::::2;::::0;;;;::::2;::::0;::::2;::::0;;;19204:29;;;;;;;::::2;::::0;;;;;;;;::::2;18829:412:::0;;:::o;13357:45::-;;;;;;;;;;;;-1:-1:-1;;;;;13357:45:0;;:::o;6894:244::-;6171:12;:10;:12::i;:::-;6161:6;;-1:-1:-1;;;;;6161:6:0;;;:22;;;6153:67;;;;;-1:-1:-1;;;6153:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;6983:22:0;::::1;6975:73;;;;-1:-1:-1::0;;;6975:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7085:6;::::0;;7064:38:::1;::::0;-1:-1:-1;;;;;7064:38:0;;::::1;::::0;7085:6;::::1;::::0;7064:38:::1;::::0;::::1;7113:6;:17:::0;;-1:-1:-1;;;;;;7113:17:0::1;-1:-1:-1::0;;;;;7113:17:0;;;::::1;::::0;;;::::1;::::0;;6894:244::o;20228:391::-;12137:13;;-1:-1:-1;;;12137:13:0;;;;12129:55;;;;;-1:-1:-1;;;12129:55:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12129:55:0;;;;;;;;;;;;;;;6171:12:::1;:10;:12::i;:::-;6161:6;::::0;-1:-1:-1;;;;;6161:6:0;;::::1;:22:::0;::::1;;6153:67;;;::::0;;-1:-1:-1;;;6153:67:0;;::::1;;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;;;;;;;;;6153:67:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;20360:17:0;::::2;;::::0;;;:8:::2;:17;::::0;;;;;::::2;;20352:51;;;::::0;;-1:-1:-1;;;20352:51:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;20352:51:0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;20424:13:0;::::2;;::::0;;;:4:::2;:13;::::0;;;;;;;:23;;;;;;;;;:28;20416:74:::2;;;;-1:-1:-1::0;;;20416:74:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;711:106:::0;799:10;711:106;:::o;3689:355::-;3786:16;3821:13;3836:9;3849:13;3857:1;3860;3849:7;:13::i;:::-;3820:42;;;;3878:4;3873:164;;3899:31;;;-1:-1:-1;;;3899:31:0;;;;;;;;;;;;-1:-1:-1;;;3899:31:0;;;;;;;;;;;;;;3873:164;3964:19;3988:13;3992:1;3995:5;3988:3;:13::i;:::-;-1:-1:-1;3963:38:0;-1:-1:-1;4016:9:0;;-1:-1:-1;;;4016:9:0;2175:307;2289:8;;2246:7;;;;;2308:129;2332:6;2328:1;:10;2308:129;;;2372:1;-1:-1:-1;;;;;2364:9:0;:1;2366;2364:4;;;;;;;;;;;;;;-1:-1:-1;;;;;2364:9:0;;2360:66;;;2402:1;-1:-1:-1;2405:4:0;;-1:-1:-1;2394:16:0;;-1:-1:-1;2394:16:0;2360:66;2340:3;;2308:129;;;;-1:-1:-1;;2468:5:0;2447:27;;;;;2175:307;;;;;;:::o;4252:551::-;4410:8;;4350:16;;4368:7;;4437:16;;;4429:53;;;;;-1:-1:-1;;;4429:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4493:29;4548:1;4539:6;:10;4525:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4525:25:0;-1:-1:-1;4493:57:0;-1:-1:-1;4566:9:0;4561:85;4585:5;4581:1;:9;4561:85;;;4630:1;4632;4630:4;;;;;;;;;;;;;;4612:12;4625:1;4612:15;;;;;;;;-1:-1:-1;;;;;4612:22:0;;;:15;;;;;;;;;;;:22;4592:3;;4561:85;;;-1:-1:-1;4681:1:0;4673:9;;4656:98;4688:6;4684:1;:10;4656:98;;;4738:1;4740;4738:4;;;;;;;;;;;;;;4716:12;4733:1;4729;:5;4716:19;;;;;;;;-1:-1:-1;;;;;4716:26:0;;;:19;;;;;;;;;;;:26;4696:3;;4656:98;;;;4772:12;4786:1;4788:5;4786:8;;;;;;;;;;;;;;4764:31;;;;;;4252:551;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://76dcd76a63795ba374819b82b87d9924d0ab346e8fc7ea520950086ae66b2957

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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