Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Latest 25 from a total of 23,304 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Submit Feed | 3129587 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129580 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129574 | 11 days ago | IN | 0 ETH | 0.00000012 | ||||
Submit Feed | 3129568 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129558 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129552 | 11 days ago | IN | 0 ETH | 0.00000012 | ||||
Submit Feed | 3129546 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129537 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129532 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129528 | 11 days ago | IN | 0 ETH | 0.00000012 | ||||
Submit Feed | 3129521 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129516 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129511 | 11 days ago | IN | 0 ETH | 0.00000012 | ||||
Submit Feed | 3129502 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129495 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129489 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129479 | 11 days ago | IN | 0 ETH | 0.00000012 | ||||
Submit Feed | 3129473 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129467 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129459 | 11 days ago | IN | 0 ETH | 0.00000012 | ||||
Submit Feed | 3129453 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129447 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129440 | 11 days ago | IN | 0 ETH | 0.00000011 | ||||
Submit Feed | 3129434 | 11 days ago | IN | 0 ETH | 0.00000012 | ||||
Submit Feed | 3129428 | 11 days ago | IN | 0 ETH | 0.00000011 |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x3A6891A6...1810C9b66 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
OpenOracle
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-12-18 */ // File: @openzeppelin/contracts/utils/Errors.sol // OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol) pragma solidity ^0.8.20; /** * @dev Collection of common custom errors used in multiple contracts * * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. * It is recommended to avoid relying on the error API for critical functionality. * * _Available since v5.1._ */ library Errors { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error InsufficientBalance(uint256 balance, uint256 needed); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedCall(); /** * @dev The deployment failed. */ error FailedDeployment(); /** * @dev A necessary precompile is missing. */ error MissingPrecompile(address); } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert Errors.InsufficientBalance(address(this).balance, amount); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert Errors.FailedCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {Errors.FailedCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert Errors.InsufficientBalance(address(this).balance, value); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case * of an unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {Errors.FailedCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly ("memory-safe") { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert Errors.FailedCall(); } } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: OpenOracle/OpenOracle.sol pragma solidity ^0.8.20; pragma abicoder v2; contract OpenOracle is Ownable { // using Openzeppelin contracts for SafeMath and Address using SafeMath for uint256; using Address for address; // number of signers uint256 public signerLength; // addresses of the signers address[] public signers; // threshold which has to be reached uint256 public signerThreshold; // struct to keep the values for each individual round struct feedRoundStruct { uint256 value; uint256 timestamp; } // stores historical values of feeds mapping(uint256 => mapping(uint256 => uint256)) private historyFeeds; // indicates if sender is a signer mapping(address => bool) public isSigner; // mapping to store the actual submitted values per FeedId, per round number mapping(uint256 => mapping(uint256 => mapping(address => feedRoundStruct))) private feedRoundNumberToStructMapping; struct oracleStruct { string feedName; uint256 feedDecimals; uint256 feedTimeslot; uint256 latestPrice; uint256 latestPriceUpdate; } oracleStruct[] private feedList; event contractSetup(address[] signers, uint256 signerThreshold); event feedAdded(string name, string description, uint256 decimal, uint256 timeslot, uint256 feedId); event feedSigned(uint256 feedId, uint256 roundId, uint256 value, uint256 timestamp, address signer); event newThreshold(uint256 value); event newSigner(address signer); event signerRemoved(address signer); // only Signer modifier modifier onlySigner { _onlySigner(); _; } // only Signer view function _onlySigner() private view { require(isSigner[msg.sender], "Only a signer can perform this action"); } constructor() Ownable(msg.sender) {} function initialize(address[] memory signers_, uint256 signerThreshold_) onlyOwner external { require(signerThreshold_ != 0, "Threshold cant be 0"); require(signerThreshold_ <= signers_.length, "Threshold cant be more then signer count"); signerThreshold = signerThreshold_; signers = signers_; for(uint i=0; i< signers.length; i++) { require(signers[i] != address(0), "Not zero address"); isSigner[signers[i]] = true; } signerLength = signers_.length; emit contractSetup(signers_, signerThreshold); } //---------------------------helper functions--------------------------- /** * @dev implementation of a quicksort algorithm * * @param arr the array to be sorted * @param left the left outer bound element to start the sort * @param right the right outer bound element to stop the sort */ function quickSort(uint[] memory arr, int left, int right) private pure { int i = left; int j = right; if (i == j) return; uint pivot = arr[uint(left + (right - left) / 2)]; while (i <= j) { while (arr[uint(i)] < pivot) i++; while (pivot < arr[uint(j)]) j--; if (i <= j) { (arr[uint(i)], arr[uint(j)]) = (arr[uint(j)], arr[uint(i)]); i++; j--; } } if (left < j) quickSort(arr, left, j); if (i < right) quickSort(arr, i, right); } /** * @dev sort implementation which calls the quickSort function * * @param data the array to be sorted * @return the sorted array */ function sort(uint[] memory data) private pure returns (uint[] memory) { quickSort(data, int(0), int(data.length - 1)); return data; } //---------------------------view functions --------------------------- function getHistoryFeeds(uint256[] memory feedIDs, uint256[] memory timestamps) external view returns (uint256[] memory) { uint256 feedLen = feedIDs.length; uint256[] memory returnPrices = new uint256[](feedLen); require(feedIDs.length == timestamps.length, "Feeds and Timestamps must match"); for (uint i = 0; i < feedIDs.length; i++) { uint256 roundNumber = timestamps[i] / feedList[feedIDs[i]].feedTimeslot; returnPrices[i] = historyFeeds[feedIDs[i]][roundNumber]; } return (returnPrices); } /** * @dev getFeeds function lets anyone call the oracle to receive data * * @param feedIDs the array of feedIds */ function getFeeds(uint256[] memory feedIDs) external view returns (uint256[] memory, uint256[] memory, uint256[] memory) { uint256 feedLen = feedIDs.length; uint256[] memory returnPrices = new uint256[](feedLen); uint256[] memory returnTimestamps = new uint256[](feedLen); uint256[] memory returnDecimals = new uint256[](feedLen); for (uint i = 0; i < feedIDs.length; i++) { (returnPrices[i] ,returnTimestamps[i], returnDecimals[i]) = getFeed(feedIDs[i]); } return (returnPrices, returnTimestamps, returnDecimals); } /** * @dev getFeed function lets anyone call the oracle to receive data * * @param feedID the array of feedId */ function getFeed(uint256 feedID) public view returns (uint256, uint256, uint256) { uint256 returnPrice; uint256 returnTimestamp; uint256 returnDecimals; returnPrice = feedList[feedID].latestPrice; returnTimestamp = feedList[feedID].latestPriceUpdate; returnDecimals = feedList[feedID].feedDecimals; return (returnPrice, returnTimestamp, returnDecimals); } /** * @dev getPrice Usecase: function is put the contract to pull dynamic prices. * * example: v.beta * // 1. import * interface OpenOracle { function getPrice(uint256 feedID) external view returns (uint256); } * * // 2. variable * OpenOracle public openoracle; * * // 3. constructor * openoracle = OpenOracle(OO_ADDRESS); // edit: OO_ADDRESS * * // 4. Use (build in your function (payable)) * uint256 price = openoracle.getPrice(FEED_ID); // edit: REQUIRED_FEED_ID * require(msg.value >= price, "Insufficient payment"); * * **Note: This v.beta should not be embedded in a long-term function. + And the function of updating the OO_ADDRESS, FEED_ID should also be added.** * * @param feedID the ID of the feed to fetch the value * @return the latest price value of the feed */ function getPrice(uint256 feedID) external view returns (uint256) { uint256 currentTime = block.timestamp; uint256 latestUpdateTime = feedList[feedID].latestPriceUpdate; // recheck latestPrice & Node! (No more than 5 minutes) require(currentTime - latestUpdateTime <= 300, "Price not available: Feed is outdated & No feed submitted yet"); uint256 returnPrice; returnPrice = feedList[feedID].latestPrice; return returnPrice; } function getCheckPrice(uint256 feedID) external view returns (uint256, uint256) { uint256 returnPrice; uint256 returnTimestamp; returnPrice = feedList[feedID].latestPrice; returnTimestamp = feedList[feedID].latestPriceUpdate; return (returnPrice, returnTimestamp); } function feedLength() external view returns(uint256) { return feedList.length; } function getFeedList(uint256[] memory feedIDs) external view returns(string[] memory, uint256[] memory, uint256[] memory, uint256[] memory, uint256[] memory) { uint256 feedLen = feedIDs.length; string[] memory returnNames = new string[](feedLen); uint256[] memory returnDecimals = new uint256[](feedLen); uint256[] memory returnTimeslot = new uint256[](feedLen); uint256[] memory returnRevenueMode = new uint256[](feedLen); uint256[] memory returnCost = new uint256[](feedLen); for (uint i = 0; i < feedIDs.length; i++) { returnNames[i] = feedList[feedIDs[i]].feedName; returnDecimals[i] = feedList[feedIDs[i]].feedDecimals; returnTimeslot[i] = feedList[feedIDs[i]].feedTimeslot; } return (returnNames, returnDecimals, returnTimeslot, returnRevenueMode, returnCost); } //---------------------------oracle management functions --------------------------- function createNewFeeds(string[] memory names, string[] memory descriptions, uint256[] memory decimals, uint256[] memory timeslots) onlySigner external { require(names.length == descriptions.length, "Length mismatch"); require(descriptions.length == decimals.length, "Length mismatch"); require(decimals.length == timeslots.length, "Length mismatch"); for(uint i = 0; i < names.length; i++) { require(decimals[i] <= 18, "Decimal places too high"); require(timeslots[i] > 0, "Timeslot cannot be 0"); feedList.push(oracleStruct({ feedName: names[i], feedDecimals: decimals[i], feedTimeslot: timeslots[i], latestPrice: 0, latestPriceUpdate: 0 })); emit feedAdded(names[i], descriptions[i], decimals[i], timeslots[i], feedList.length - 1); } } /** * @dev submitFeed function lets a signer submit as many feeds as they want to * * @param values the array of values * @param feedIDs the array of feedIds */ function submitFeed(uint256[] memory feedIDs, uint256[] memory values) onlySigner external { require(values.length == feedIDs.length, "Value length and feedID length do not match"); // process feeds for (uint i = 0; i < values.length; i++) { // get current round number for feed uint256 roundNumber = block.timestamp / feedList[feedIDs[i]].feedTimeslot; // check if the signer already pushed an update for the given period if (feedRoundNumberToStructMapping[feedIDs[i]][roundNumber][msg.sender].timestamp != 0) { delete feedRoundNumberToStructMapping[feedIDs[i]][roundNumber][msg.sender]; } // feed - number and push value feedRoundNumberToStructMapping[feedIDs[i]][roundNumber][msg.sender] = feedRoundStruct({ value: values[i], timestamp: block.timestamp }); emit feedSigned(feedIDs[i], roundNumber, values[i], block.timestamp, msg.sender); // check if threshold was met uint256 signedFeedsLen; uint256[] memory prices = new uint256[](signers.length); uint256 k; for (uint j = 0; j < signers.length; j++) { if (feedRoundNumberToStructMapping[feedIDs[i]][roundNumber][signers[j]].timestamp != 0) { signedFeedsLen++; prices[k++] = feedRoundNumberToStructMapping[feedIDs[i]][roundNumber][signers[j]].value; } } // Change the list size of the array in place assembly { mstore(prices, k) } // if threshold is met process price if (signedFeedsLen >= signerThreshold) { uint[] memory sorted = sort(prices); uint returnPrice; // uneven so we can take the middle if (sorted.length % 2 == 1) { uint sizer = (sorted.length + 1) / 2; returnPrice = sorted[sizer-1]; // take average of the 2 most inner numbers } else { uint size1 = (sorted.length) / 2; returnPrice = (sorted[size1-1]+sorted[size1])/2; } // process the struct for storing if (block.timestamp / feedList[feedIDs[i]].feedTimeslot > feedList[feedIDs[i]].latestPriceUpdate / feedList[feedIDs[i]].feedTimeslot) { historyFeeds[feedIDs[i]][feedList[feedIDs[i]].latestPriceUpdate / feedList[feedIDs[i]].feedTimeslot] = feedList[feedIDs[i]].latestPrice; } feedList[feedIDs[i]].latestPriceUpdate = block.timestamp; feedList[feedIDs[i]].latestPrice = returnPrice; } } } function updateThreshold(uint256 newThresholdValue) onlyOwner external { require(newThresholdValue != 0, "Threshold cant be 0"); require(newThresholdValue <= signerLength, "Threshold cant be bigger then length of signers"); signerThreshold = newThresholdValue; emit newThreshold(newThresholdValue); } function addSigners(address newSignerValue) onlyOwner external { for (uint i=0; i < signers.length; i++) { if (signers[i] == newSignerValue) { revert("Signer already exists"); } } signers.push(newSignerValue); signerLength++; isSigner[newSignerValue] = true; emit newSigner(newSignerValue); } function removeSigner(address toRemove) onlyOwner external { require(isSigner[toRemove], "Address to remove has to be a signer"); require(signers.length -1 >= signerThreshold, "Less signers than threshold"); for (uint i = 0; i < signers.length; i++) { if (signers[i] == toRemove) { delete signers[i]; signerLength --; isSigner[toRemove] = false; emit signerRemoved(toRemove); } } } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"signers","type":"address[]"},{"indexed":false,"internalType":"uint256","name":"signerThreshold","type":"uint256"}],"name":"contractSetup","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"description","type":"string"},{"indexed":false,"internalType":"uint256","name":"decimal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timeslot","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feedId","type":"uint256"}],"name":"feedAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feedId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"roundId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"feedSigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"newSigner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"newThreshold","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"signerRemoved","type":"event"},{"inputs":[{"internalType":"address","name":"newSignerValue","type":"address"}],"name":"addSigners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"names","type":"string[]"},{"internalType":"string[]","name":"descriptions","type":"string[]"},{"internalType":"uint256[]","name":"decimals","type":"uint256[]"},{"internalType":"uint256[]","name":"timeslots","type":"uint256[]"}],"name":"createNewFeeds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feedLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"feedID","type":"uint256"}],"name":"getCheckPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"feedID","type":"uint256"}],"name":"getFeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"feedIDs","type":"uint256[]"}],"name":"getFeedList","outputs":[{"internalType":"string[]","name":"","type":"string[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"feedIDs","type":"uint256[]"}],"name":"getFeeds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"feedIDs","type":"uint256[]"},{"internalType":"uint256[]","name":"timestamps","type":"uint256[]"}],"name":"getHistoryFeeds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"feedID","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"signers_","type":"address[]"},{"internalType":"uint256","name":"signerThreshold_","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isSigner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toRemove","type":"address"}],"name":"removeSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"signerThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"signers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"feedIDs","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"submitFeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThresholdValue","type":"uint256"}],"name":"updateThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610127575f3560e01c8063a4a4f390116100a9578063d7d7442f1161006e578063d7d7442f146102a5578063e460a30c146102b8578063e7572230146102cb578063ecb76d90146102de578063f2fde38b1461030c575f80fd5b8063a4a4f3901461021d578063b0c35e1914610226578063c75b6ba514610246578063ced51e1714610259578063d69d117c14610281575f80fd5b806360b5bb3f116100ef57806360b5bb3f146101ad578063715018a6146101c05780637df73e27146101c85780637f509004146101fa5780638da5cb5b1461020d575f80fd5b806306ac8ad81461012b5780630e316ab7146101425780632079fb9a1461015757806330c942e0146101825780634a45ea5c1461018b575b5f80fd5b6007545b6040519081526020015b60405180910390f35b610155610150366004611e2a565b61031f565b005b61016a610165366004611e4a565b6104de565b6040516001600160a01b039091168152602001610139565b61012f60015481565b61019e610199366004611f31565b610506565b60405161013993929190611fa4565b6101556101bb366004611fe6565b610679565b610155610857565b6101ea6101d6366004611e2a565b60056020525f908152604090205460ff1681565b6040519015158152602001610139565b610155610208366004612085565b61086a565b5f546001600160a01b031661016a565b61012f60035481565b610239610234366004612085565b610f88565b60405161013991906120e8565b6101556102543660046121d6565b6110fc565b61026c610267366004611e4a565b6113c5565b60408051928352602083019190915201610139565b61029461028f366004611f31565b611420565b6040516101399594939291906122b9565b6101556102b3366004611e4a565b611748565b6101556102c6366004611e2a565b61183b565b61012f6102d9366004611e4a565b61197e565b6102f16102ec366004611e4a565b611a5c565b60408051938452602084019290925290820152606001610139565b61015561031a366004611e2a565b611ae0565b610327611b1d565b6001600160a01b0381165f9081526005602052604090205460ff1661039f5760405162461bcd60e51b8152602060048201526024808201527f4164647265737320746f2072656d6f76652068617320746f206265206120736960448201526333b732b960e11b60648201526084015b60405180910390fd5b6003546002546103b190600190612382565b10156103ff5760405162461bcd60e51b815260206004820152601b60248201527f4c657373207369676e657273207468616e207468726573686f6c6400000000006044820152606401610396565b5f5b6002548110156104da57816001600160a01b03166002828154811061042857610428612395565b5f918252602090912001546001600160a01b0316036104d2576002818154811061045457610454612395565b5f918252602082200180546001600160a01b03191690556001805491610479836123a9565b90915550506001600160a01b0382165f81815260056020908152604091829020805460ff1916905590519182527ffa15964370ccf7acface74df78a85aa4857e703226c446d3e24a69663dc302e7910160405180910390a15b600101610401565b5050565b600281815481106104ed575f80fd5b5f918252602090912001546001600160a01b0316905081565b60608060605f845190505f816001600160401b0381111561052957610529611e61565b604051908082528060200260200182016040528015610552578160200160208202803683370190505b5090505f826001600160401b0381111561056e5761056e611e61565b604051908082528060200260200182016040528015610597578160200160208202803683370190505b5090505f836001600160401b038111156105b3576105b3611e61565b6040519080825280602002602001820160405280156105dc578160200160208202803683370190505b5090505f5b885181101561066a5761060c8982815181106105ff576105ff612395565b6020026020010151611a5c565b86848151811061061e5761061e612395565b6020026020010186858151811061063757610637612395565b6020026020010186868151811061065057610650612395565b6020908102919091010192909252919052526001016105e1565b50919790965090945092505050565b610681611b1d565b805f036106c65760405162461bcd60e51b815260206004820152601360248201527205468726573686f6c642063616e74206265203606c1b6044820152606401610396565b81518111156107285760405162461bcd60e51b815260206004820152602860248201527f5468726573686f6c642063616e74206265206d6f7265207468656e207369676e604482015267195c8818dbdd5b9d60c21b6064820152608401610396565b60038190558151610740906002906020850190611da1565b505f5b600254811015610811575f6001600160a01b03166002828154811061076a5761076a612395565b5f918252602090912001546001600160a01b0316036107be5760405162461bcd60e51b815260206004820152601060248201526f4e6f74207a65726f206164647265737360801b6044820152606401610396565b600160055f600284815481106107d6576107d6612395565b5f918252602080832091909101546001600160a01b031683528201929092526040019020805460ff1916911515919091179055600101610743565b5081516001556003546040517fb5cfc0828e96f5e147c1971a16fae73314633afbff47193332c5a5fc6101753f9161084b918591906123be565b60405180910390a15050565b61085f611b1d565b6108685f611b49565b565b610872611b98565b81518151146108d75760405162461bcd60e51b815260206004820152602b60248201527f56616c7565206c656e67746820616e6420666565644944206c656e677468206460448201526a0de40dcdee840dac2e8c6d60ab1b6064820152608401610396565b5f5b8151811015610f83575f60078483815181106108f7576108f7612395565b60200260200101518154811061090f5761090f612395565b905f5260205f209060050201600201544261092a9190612427565b905060065f85848151811061094157610941612395565b60209081029190910181015182528181019290925260409081015f9081208482528352818120338252909252902060010154156109c35760065f85848151811061098d5761098d612395565b60209081029190910181015182528181019290925260409081015f90812084825283528181203382529092528120818155600101555b60405180604001604052808484815181106109e0576109e0612395565b602002602001015181526020014281525060065f868581518110610a0657610a06612395565b60209081029190910181015182528181019290925260409081015f90812085825283528181203382528352208251815591015160019091015583517fba4832b2bf8c9586edd5026f5bf3a5b8a69b0b29dea651d15bfda0cddf0e954890859084908110610a7557610a75612395565b602002602001015182858581518110610a9057610a90612395565b602090810291909101810151604080519485529184019290925282015242606082015233608082015260a00160405180910390a16002545f9081906001600160401b03811115610ae257610ae2611e61565b604051908082528060200260200182016040528015610b0b578160200160208202803683370190505b5090505f805b600254811015610c445760065f898881518110610b3057610b30612395565b602002602001015181526020019081526020015f205f8681526020019081526020015f205f60028381548110610b6857610b68612395565b5f9182526020808320909101546001600160a01b0316835282019290925260400190206001015415610c3c5783610b9e8161243a565b94505060065f898881518110610bb657610bb6612395565b602002602001015181526020019081526020015f205f8681526020019081526020015f205f60028381548110610bee57610bee612395565b5f9182526020808320909101546001600160a01b031683528201929092526040019020548383610c1d8161243a565b945081518110610c2f57610c2f612395565b6020026020010181815250505b600101610b11565b508082526003548310610f73575f610c5b83611c04565b90505f60028251610c6c9190612452565b600103610cbc575f600283516001610c849190612465565b610c8e9190612427565b905082610c9c600183612382565b81518110610cac57610cac612395565b6020026020010151915050610d27565b5f60028351610ccb9190612427565b90506002838281518110610ce157610ce1612395565b602002602001015184600184610cf79190612382565b81518110610d0757610d07612395565b6020026020010151610d199190612465565b610d239190612427565b9150505b6007898881518110610d3b57610d3b612395565b602002602001015181548110610d5357610d53612395565b905f5260205f2090600502016002015460078a8981518110610d7757610d77612395565b602002602001015181548110610d8f57610d8f612395565b905f5260205f20906005020160040154610da99190612427565b60078a8981518110610dbd57610dbd612395565b602002602001015181548110610dd557610dd5612395565b905f5260205f2090600502016002015442610df09190612427565b1115610ef0576007898881518110610e0a57610e0a612395565b602002602001015181548110610e2257610e22612395565b905f5260205f2090600502016003015460045f8b8a81518110610e4757610e47612395565b602002602001015181526020019081526020015f205f60078c8b81518110610e7157610e71612395565b602002602001015181548110610e8957610e89612395565b905f5260205f2090600502016002015460078d8c81518110610ead57610ead612395565b602002602001015181548110610ec557610ec5612395565b905f5260205f20906005020160040154610edf9190612427565b815260208101919091526040015f20555b4260078a8981518110610f0557610f05612395565b602002602001015181548110610f1d57610f1d612395565b905f5260205f209060050201600401819055508060078a8981518110610f4557610f45612395565b602002602001015181548110610f5d57610f5d612395565b905f5260205f2090600502016003018190555050505b5050600190920191506108d99050565b505050565b81516060905f816001600160401b03811115610fa657610fa6611e61565b604051908082528060200260200182016040528015610fcf578160200160208202803683370190505b50905083518551146110235760405162461bcd60e51b815260206004820152601f60248201527f466565647320616e642054696d657374616d7073206d757374206d61746368006044820152606401610396565b5f5b85518110156110f1575f600787838151811061104357611043612395565b60200260200101518154811061105b5761105b612395565b905f5260205f2090600502016002015486838151811061107d5761107d612395565b602002602001015161108f9190612427565b905060045f8884815181106110a6576110a6612395565b602002602001015181526020019081526020015f205f8281526020019081526020015f20548383815181106110dd576110dd612395565b602090810291909101015250600101611025565b509150505b92915050565b611104611b98565b82518451146111255760405162461bcd60e51b815260040161039690612478565b81518351146111465760405162461bcd60e51b815260040161039690612478565b80518251146111675760405162461bcd60e51b815260040161039690612478565b5f5b84518110156113be57601283828151811061118657611186612395565b602002602001015111156111dc5760405162461bcd60e51b815260206004820152601760248201527f446563696d616c20706c6163657320746f6f20686967680000000000000000006044820152606401610396565b5f8282815181106111ef576111ef612395565b60200260200101511161123b5760405162461bcd60e51b8152602060048201526014602482015273054696d65736c6f742063616e6e6f7420626520360641b6044820152606401610396565b60076040518060a0016040528087848151811061125a5761125a612395565b6020026020010151815260200185848151811061127957611279612395565b6020026020010151815260200184848151811061129857611298612395565b60209081029190910181015182525f82820181905260409092018290528354600181018555938252902081519192600502019081906112d7908261251d565b506020820151816001015560408201518160020155606082015181600301556080820151816004015550507f67663c65005d0caaee03511a1d411e2cb316bf04d1d2771e39434891c89a7d8685828151811061133557611335612395565b602002602001015185838151811061134f5761134f612395565b602002602001015185848151811061136957611369612395565b602002602001015185858151811061138357611383612395565b6020026020010151600160078054905061139d9190612382565b6040516113ae9594939291906125d7565b60405180910390a1600101611169565b5050505050565b5f805f80600785815481106113dc576113dc612395565b905f5260205f2090600502016003015491506007858154811061140157611401612395565b905f5260205f2090600502016004015490508181935093505050915091565b60608060608060605f865190505f816001600160401b0381111561144657611446611e61565b60405190808252806020026020018201604052801561147957816020015b60608152602001906001900390816114645790505b5090505f826001600160401b0381111561149557611495611e61565b6040519080825280602002602001820160405280156114be578160200160208202803683370190505b5090505f836001600160401b038111156114da576114da611e61565b604051908082528060200260200182016040528015611503578160200160208202803683370190505b5090505f846001600160401b0381111561151f5761151f611e61565b604051908082528060200260200182016040528015611548578160200160208202803683370190505b5090505f856001600160401b0381111561156457611564611e61565b60405190808252806020026020018201604052801561158d578160200160208202803683370190505b5090505f5b8c518110156117345760078d82815181106115af576115af612395565b6020026020010151815481106115c7576115c7612395565b905f5260205f2090600502015f0180546115e0906124a1565b80601f016020809104026020016040519081016040528092919081815260200182805461160c906124a1565b80156116575780601f1061162e57610100808354040283529160200191611657565b820191905f5260205f20905b81548152906001019060200180831161163a57829003601f168201915b505050505086828151811061166e5761166e612395565b602002602001018190525060078d828151811061168d5761168d612395565b6020026020010151815481106116a5576116a5612395565b905f5260205f209060050201600101548582815181106116c7576116c7612395565b60200260200101818152505060078d82815181106116e7576116e7612395565b6020026020010151815481106116ff576116ff612395565b905f5260205f2090600502016002015484828151811061172157611721612395565b6020908102919091010152600101611592565b50939b929a50909850965090945092505050565b611750611b1d565b805f036117955760405162461bcd60e51b815260206004820152601360248201527205468726573686f6c642063616e74206265203606c1b6044820152606401610396565b6001548111156117ff5760405162461bcd60e51b815260206004820152602f60248201527f5468726573686f6c642063616e7420626520626967676572207468656e206c6560448201526e6e677468206f66207369676e65727360881b6064820152608401610396565b60038190556040518181527fd88532aad776d079efe3ac298f9e21dc4ef893e240d8c13107298e7c4f6eb8b8906020015b60405180910390a150565b611843611b1d565b5f5b6002548110156118cd57816001600160a01b03166002828154811061186c5761186c612395565b5f918252602090912001546001600160a01b0316036118c55760405162461bcd60e51b81526020600482015260156024820152745369676e657220616c72656164792065786973747360581b6044820152606401610396565b600101611845565b5060028054600180820183555f9283527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90910180546001600160a01b0319166001600160a01b0385161790558054916119268361243a565b90915550506001600160a01b0381165f81815260056020908152604091829020805460ff1916600117905590519182527f3dc2a8437aef0e8d2839b5e75d0d93e6c7f43b3acf5d2ef2db79beb54cb47b3d9101611830565b5f804290505f6007848154811061199757611997612395565b905f5260205f20906005020160040154905061012c81836119b89190612382565b1115611a2c5760405162461bcd60e51b815260206004820152603d60248201527f5072696365206e6f7420617661696c61626c653a2046656564206973206f757460448201527f64617465642026204e6f2066656564207375626d6974746564207965740000006064820152608401610396565b5f60078581548110611a4057611a40612395565b5f91825260209091206003600590920201015495945050505050565b5f805f805f8060078781548110611a7557611a75612395565b905f5260205f20906005020160030154925060078781548110611a9a57611a9a612395565b905f5260205f20906005020160040154915060078781548110611abf57611abf612395565b5f918252602090912060059091020160010154929791965091945092505050565b611ae8611b1d565b6001600160a01b038116611b1157604051631e4fbdf760e01b81525f6004820152602401610396565b611b1a81611b49565b50565b5f546001600160a01b031633146108685760405163118cdaa760e01b8152336004820152602401610396565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b335f9081526005602052604090205460ff166108685760405162461bcd60e51b815260206004820152602560248201527f4f6e6c792061207369676e65722063616e20706572666f726d2074686973206160448201526431ba34b7b760d91b6064820152608401610396565b6060611c1e825f60018551611c199190612382565b611c22565b5090565b8181808203611c32575050505050565b5f856002611c408787612619565b611c4a919061263f565b611c54908761266b565b81518110611c6457611c64612395565b602002602001015190505b818313611d73575b80868481518110611c8a57611c8a612395565b60200260200101511015611caa5782611ca281612692565b935050611c77565b858281518110611cbc57611cbc612395565b6020026020010151811015611cdd5781611cd5816126a9565b925050611caa565b818313611d6e57858281518110611cf657611cf6612395565b6020026020010151868481518110611d1057611d10612395565b6020026020010151878581518110611d2a57611d2a612395565b60200260200101888581518110611d4357611d43612395565b60209081029190910101919091525282611d5c81612692565b9350508180611d6a906126a9565b9250505b611c6f565b81851215611d8657611d86868684611c22565b83831215611d9957611d99868486611c22565b505050505050565b828054828255905f5260205f20908101928215611df4579160200282015b82811115611df457825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190611dbf565b50611c1e9291505b80821115611c1e575f8155600101611dfc565b80356001600160a01b0381168114611e25575f80fd5b919050565b5f60208284031215611e3a575f80fd5b611e4382611e0f565b9392505050565b5f60208284031215611e5a575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715611e9d57611e9d611e61565b604052919050565b5f6001600160401b03821115611ebd57611ebd611e61565b5060051b60200190565b5f82601f830112611ed6575f80fd5b8135611ee9611ee482611ea5565b611e75565b8082825260208201915060208360051b860101925085831115611f0a575f80fd5b602085015b83811015611f27578035835260209283019201611f0f565b5095945050505050565b5f60208284031215611f41575f80fd5b81356001600160401b03811115611f56575f80fd5b611f6284828501611ec7565b949350505050565b5f8151808452602084019350602083015f5b82811015611f9a578151865260209586019590910190600101611f7c565b5093949350505050565b606081525f611fb66060830186611f6a565b8281036020840152611fc88186611f6a565b90508281036040840152611fdc8185611f6a565b9695505050505050565b5f8060408385031215611ff7575f80fd5b82356001600160401b0381111561200c575f80fd5b8301601f8101851361201c575f80fd5b803561202a611ee482611ea5565b8082825260208201915060208360051b85010192508783111561204b575f80fd5b6020840193505b828410156120745761206384611e0f565b825260209384019390910190612052565b976020969096013596505050505050565b5f8060408385031215612096575f80fd5b82356001600160401b038111156120ab575f80fd5b6120b785828601611ec7565b92505060208301356001600160401b038111156120d2575f80fd5b6120de85828601611ec7565b9150509250929050565b602081525f611e436020830184611f6a565b5f82601f830112612109575f80fd5b8135612117611ee482611ea5565b8082825260208201915060208360051b860101925085831115612138575f80fd5b602085015b83811015611f275780356001600160401b0381111561215a575f80fd5b8601603f8101881361216a575f80fd5b60208101356001600160401b0381111561218657612186611e61565b612199601f8201601f1916602001611e75565b8181526040838301018a10156121ad575f80fd5b816040840160208301375f6020838301015280865250505060208301925060208101905061213d565b5f805f80608085870312156121e9575f80fd5b84356001600160401b038111156121fe575f80fd5b61220a878288016120fa565b94505060208501356001600160401b03811115612225575f80fd5b612231878288016120fa565b93505060408501356001600160401b0381111561224c575f80fd5b61225887828801611ec7565b92505060608501356001600160401b03811115612273575f80fd5b61227f87828801611ec7565b91505092959194509250565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b5f60a0820160a0835280885180835260c08501915060c08160051b860101925060208a015f5b828110156123105760bf198786030184526122fb85835161228b565b945060209384019391909101906001016122df565b5050505082810360208401526123268188611f6a565b9050828103604084015261233a8187611f6a565b9050828103606084015261234e8186611f6a565b905082810360808401526123628185611f6a565b98975050505050505050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156110f6576110f661236e565b634e487b7160e01b5f52603260045260245ffd5b5f816123b7576123b761236e565b505f190190565b604080825283519082018190525f9060208501906060840190835b818110156124005783516001600160a01b03168352602093840193909201916001016123d9565b5050602093909301939093525092915050565b634e487b7160e01b5f52601260045260245ffd5b5f8261243557612435612413565b500490565b5f6001820161244b5761244b61236e565b5060010190565b5f8261246057612460612413565b500690565b808201808211156110f6576110f661236e565b6020808252600f908201526e098cadccee8d040dad2e6dac2e8c6d608b1b604082015260600190565b600181811c908216806124b557607f821691505b6020821081036124d357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610f8357805f5260205f20601f840160051c810160208510156124fe5750805b601f840160051c820191505b818110156113be575f815560010161250a565b81516001600160401b0381111561253657612536611e61565b61254a8161254484546124a1565b846124d9565b6020601f82116001811461257c575f83156125655750848201515b5f19600385901b1c1916600184901b1784556113be565b5f84815260208120601f198516915b828110156125ab578785015182556020948501946001909201910161258b565b50848210156125c857868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60a081525f6125e960a083018861228b565b82810360208401526125fb818861228b565b60408401969096525050606081019290925260809091015292915050565b8181035f8312801583831316838312821617156126385761263861236e565b5092915050565b5f8261264d5761264d612413565b600160ff1b82145f19841416156126665761266661236e565b500590565b8082018281125f83128015821682158216171561268a5761268a61236e565b505092915050565b5f6001600160ff1b01820161244b5761244b61236e565b5f600160ff1b82016123b7576123b761236e56fea2646970667358221220c8ffdcfc97d82dace484c6ba2734a53bba93d2a0675a47578368f0df1386769c64736f6c634300081a0033
Deployed Bytecode Sourcemap
18355:13982:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25924:94;25995:8;:15;25924:94;;;160:25:1;;;148:2;133:18;25924:94:0;;;;;;;;31814:518;;;;;;:::i;:::-;;:::i;:::-;;18617:24;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;960:32:1;;;942:51;;930:2;915:18;18617:24:0;796:203:1;18548:27:0;;;;;;22971:603;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;20232:612::-;;;;;;:::i;:::-;;:::i;17424:103::-;;;:::i;19041:40::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4972:14:1;;4965:22;4947:41;;4935:2;4920:18;19041:40:0;4807:187:1;28153:2898:0;;;;;;:::i;:::-;;:::i;16749:87::-;16795:7;16822:6;-1:-1:-1;;;;;16822:6:0;16749:87;;18692:30;;;;;;22234:588;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27025:929::-;;;;;;:::i;:::-;;:::i;25594:322::-;;;;;;:::i;:::-;;:::i;:::-;;;;8481:25:1;;;8537:2;8522:18;;8515:34;;;;8454:18;25594:322:0;8307:248:1;26026:899:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;31059:343::-;;;;;;:::i;:::-;;:::i;31410:396::-;;;;;;:::i;:::-;;:::i;25085:501::-;;;;;;:::i;:::-;;:::i;23720:429::-;;;;;;:::i;:::-;;:::i;:::-;;;;10644:25:1;;;10700:2;10685:18;;10678:34;;;;10728:18;;;10721:34;10632:2;10617:18;23720:429:0;10442:319:1;17682:220:0;;;;;;:::i;:::-;;:::i;31814:518::-;16635:13;:11;:13::i;:::-;-1:-1:-1;;;;;31892:18:0;::::1;;::::0;;;:8:::1;:18;::::0;;;;;::::1;;31884:67;;;::::0;-1:-1:-1;;;31884:67:0;;10968:2:1;31884:67:0::1;::::0;::::1;10950:21:1::0;11007:2;10987:18;;;10980:30;11046:34;11026:18;;;11019:62;-1:-1:-1;;;11097:18:1;;;11090:34;11141:19;;31884:67:0::1;;;;;;;;;31991:15;::::0;31970:7:::1;:14:::0;:17:::1;::::0;31986:1:::1;::::0;31970:17:::1;:::i;:::-;:36;;31962:76;;;::::0;-1:-1:-1;;;31962:76:0;;11638:2:1;31962:76:0::1;::::0;::::1;11620:21:1::0;11677:2;11657:18;;;11650:30;11716:29;11696:18;;;11689:57;11763:18;;31962:76:0::1;11436:351:1::0;31962:76:0::1;32056:6;32051:274;32072:7;:14:::0;32068:18;::::1;32051:274;;;32126:8;-1:-1:-1::0;;;;;32112:22:0::1;:7;32120:1;32112:10;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32112:10:0::1;:22:::0;32108:206:::1;;32162:7;32170:1;32162:10;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;::::1;32155:17:::0;;-1:-1:-1;;;;;;32155:17:0::1;::::0;;;32191:15;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;32225:18:0;::::1;32246:5;32225:18:::0;;;:8:::1;:18;::::0;;;;;;;;:26;;-1:-1:-1;;32225:26:0::1;::::0;;32275:23;;942:51:1;;;32275:23:0::1;::::0;915:18:1;32275:23:0::1;;;;;;;32108:206;32088:3;;32051:274;;;;31814:518:::0;:::o;18617:24::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18617:24:0;;-1:-1:-1;18617:24:0;:::o;22971:603::-;23038:16;23056;23074;23105:15;23123:7;:14;23105:32;;23148:29;23194:7;-1:-1:-1;;;;;23180:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23180:22:0;;23148:54;;23213:33;23263:7;-1:-1:-1;;;;;23249:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23249:22:0;;23213:58;;23282:31;23330:7;-1:-1:-1;;;;;23316:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23316:22:0;;23282:56;;23356:6;23351:148;23372:7;:14;23368:1;:18;23351:148;;;23468:19;23476:7;23484:1;23476:10;;;;;;;;:::i;:::-;;;;;;;23468:7;:19::i;:::-;23409:12;23422:1;23409:15;;;;;;;;:::i;:::-;;;;;;23426:16;23443:1;23426:19;;;;;;;;:::i;:::-;;;;;;23447:14;23462:1;23447:17;;;;;;;;:::i;:::-;;;;;;;;;;23408:79;;;;;;;;23388:3;;23351:148;;;-1:-1:-1;23519:12:0;;23533:16;;-1:-1:-1;23519:12:0;;-1:-1:-1;22971:603:0;-1:-1:-1;;;22971:603:0:o;20232:612::-;16635:13;:11;:13::i;:::-;20343:16:::1;20363:1;20343:21:::0;20335:53:::1;;;::::0;-1:-1:-1;;;20335:53:0;;12267:2:1;20335:53:0::1;::::0;::::1;12249:21:1::0;12306:2;12286:18;;;12279:30;-1:-1:-1;;;12325:18:1;;;12318:49;12384:18;;20335:53:0::1;12065:343:1::0;20335:53:0::1;20427:8;:15;20407:16;:35;;20399:88;;;::::0;-1:-1:-1;;;20399:88:0;;12615:2:1;20399:88:0::1;::::0;::::1;12597:21:1::0;12654:2;12634:18;;;12627:30;12693:34;12673:18;;;12666:62;-1:-1:-1;;;12744:18:1;;;12737:38;12792:19;;20399:88:0::1;12413:404:1::0;20399:88:0::1;20500:15;:34:::0;;;20545:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;20580:6;20576:160;20593:7;:14:::0;20590:17;::::1;20576:160;;;20659:1;-1:-1:-1::0;;;;;20637:24:0::1;:7;20645:1;20637:10;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;20637:10:0::1;:24:::0;20629:53:::1;;;::::0;-1:-1:-1;;;20629:53:0;;13024:2:1;20629:53:0::1;::::0;::::1;13006:21:1::0;13063:2;13043:18;;;13036:30;-1:-1:-1;;;13082:18:1;;;13075:46;13138:18;;20629:53:0::1;12822:340:1::0;20629:53:0::1;20720:4;20697:8;:20;20706:7;20714:1;20706:10;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;::::0;-1:-1:-1;;;;;20706:10:0::1;20697:20:::0;;;::::1;::::0;;;;;;;;:27;;-1:-1:-1;;20697:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;20609:3:0::1;20576:160;;;-1:-1:-1::0;20763:15:0;;20748:12:::1;:30:::0;20820:15:::1;::::0;20796:40:::1;::::0;::::1;::::0;::::1;::::0;20763:8;;20820:15;20796:40:::1;:::i;:::-;;;;;;;;20232:612:::0;;:::o;17424:103::-;16635:13;:11;:13::i;:::-;17489:30:::1;17516:1;17489:18;:30::i;:::-;17424:103::o:0;28153:2898::-;19989:13;:11;:13::i;:::-;28280:7:::1;:14;28263:6;:13;:31;28255:87;;;::::0;-1:-1:-1;;;28255:87:0;;14090:2:1;28255:87:0::1;::::0;::::1;14072:21:1::0;14129:2;14109:18;;;14102:30;14168:34;14148:18;;;14141:62;-1:-1:-1;;;14219:18:1;;;14212:41;14270:19;;28255:87:0::1;13888:407:1::0;28255:87:0::1;28386:6;28381:2663;28402:6;:13;28398:1;:17;28381:2663;;;28487:19;28527:8;28536:7;28544:1;28536:10;;;;;;;;:::i;:::-;;;;;;;28527:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;28509:15;:51;;;;:::i;:::-;28487:73;;28663:30;:42;28694:7;28702:1;28694:10;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;28663:42;;;;::::1;::::0;;;;;;;;-1:-1:-1;28663:42:0;;;:55;;;;;;;;28719:10:::1;28663:67:::0;;;;;;;:77:::1;;::::0;:82;28659:197:::1;;28773:30;:42;28804:7;28812:1;28804:10;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;28773:42;;;;::::1;::::0;;;;;;;;-1:-1:-1;28773:42:0;;;:55;;;;;;;;28829:10:::1;28773:67:::0;;;;;;;28766:74;;;::::1;;::::0;28659:197:::1;28987:104;;;;;;;;29025:6;29032:1;29025:9;;;;;;;;:::i;:::-;;;;;;;28987:104;;;;29060:15;28987:104;;::::0;28917:30:::1;:42;28948:7;28956:1;28948:10;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;28917:42;;;;::::1;::::0;;;;;;;;-1:-1:-1;28917:42:0;;;:55;;;;;;;;28973:10:::1;28917:67:::0;;;;;:174;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;29124:10;;29113:75:::1;::::0;29124:7;;29132:1;;29124:10;::::1;;;;;:::i;:::-;;;;;;;29136:11;29149:6;29156:1;29149:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;29113:75:::1;::::0;;14816:25:1;;;14857:18;;;14850:34;;;;14900:18;;14893:34;29160:15:0::1;14958:2:1::0;14943:18;;14936:34;29177:10:0::1;15001:3:1::0;14986:19;;14979:61;14803:3;14788:19;29113:75:0::1;;;;;;;29325:7;:14:::0;29248:22:::1;::::0;;;-1:-1:-1;;;;;29311:29:0;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;29311:29:0::1;-1:-1:-1::0;29285:55:0;-1:-1:-1;29355:9:0::1;::::0;29381:333:::1;29402:7;:14:::0;29398:18;::::1;29381:333;;;29446:30;:42;29477:7;29485:1;29477:10;;;;;;;;:::i;:::-;;;;;;;29446:42;;;;;;;;;;;:55;29489:11;29446:55;;;;;;;;;;;:67;29502:7;29510:1;29502:10;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;29502:10:0::1;29446:67:::0;;;::::1;::::0;;;;;;;;29502:10;29446:77:::1;::::0;:82;29442:257:::1;;29553:16:::0;::::1;::::0;::::1;:::i;:::-;;;;29606:30;:42;29637:7;29645:1;29637:10;;;;;;;;:::i;:::-;;;;;;;29606:42;;;;;;;;;;;:55;29649:11;29606:55;;;;;;;;;;;:67;29662:7;29670:1;29662:10;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;29662:10:0::1;29606:67:::0;;;::::1;::::0;;;;;;;;:73;29592:6;29599:3;::::1;::::0;::::1;:::i;:::-;;;29592:11;;;;;;;;:::i;:::-;;;;;;:87;;;::::0;::::1;29442:257;29418:3;;29381:333;;;;29832:1;29824:6;29817:17;29937:15;;29919:14;:33;29915:1118;;29975:20;29998:12;30003:6;29998:4;:12::i;:::-;29975:35;;30029:16;30139:1;30123:6;:13;:17;;;;:::i;:::-;30144:1;30123:22:::0;30119:376:::1;;30170:10;30205:1;30184:6;:13;30200:1;30184:17;;;;:::i;:::-;30183:23;;;;:::i;:::-;30170:36:::0;-1:-1:-1;30243:6:0;30250:7:::1;30256:1;30170:36:::0;30250:7:::1;:::i;:::-;30243:15;;;;;;;;:::i;:::-;;;;;;;30229:29;;30147:196;30119:376;;;30372:10;30403:1;30386:6;:13;30385:19;;;;:::i;:::-;30372:32;;30474:1;30459:6;30466:5;30459:13;;;;;;;;:::i;:::-;;;;;;;30443:6;30456:1;30450:5;:7;;;;:::i;:::-;30443:15;;;;;;;;:::i;:::-;;;;;;;:29;;;;:::i;:::-;30442:33;;;;:::i;:::-;30427:48;;30349:146;30119:376;30665:8;30674:7;30682:1;30674:10;;;;;;;;:::i;:::-;;;;;;;30665:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;30624:8;30633:7;30641:1;30633:10;;;;;;;;:::i;:::-;;;;;;;30624:20;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;:74;;;;:::i;:::-;30588:8;30597:7;30605:1;30597:10;;;;;;;;:::i;:::-;;;;;;;30588:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;30570:15;:51;;;;:::i;:::-;:128;30566:312;;;30826:8;30835:7;30843:1;30835:10;;;;;;;;:::i;:::-;;;;;;;30826:20;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;;30723:12;:24;30736:7;30744:1;30736:10;;;;;;;;:::i;:::-;;;;;;;30723:24;;;;;;;;;;;:100;30789:8;30798:7;30806:1;30798:10;;;;;;;;:::i;:::-;;;;;;;30789:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;30748:8;30757:7;30765:1;30757:10;;;;;;;;:::i;:::-;;;;;;;30748:20;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;:74;;;;:::i;:::-;30723:100:::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;30723:100:0;:135;30566:312:::1;30937:15;30896:8;30905:7;30913:1;30905:10;;;;;;;;:::i;:::-;;;;;;;30896:20;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;:56;;;;31006:11;30971:8;30980:7;30988:1;30980:10;;;;;;;;:::i;:::-;;;;;;;30971:20;;;;;;;;:::i;:::-;;;;;;;;;;;:32;;:46;;;;29954:1079;;29915:1118;-1:-1:-1::0;;28417:3:0::1;::::0;;::::1;::::0;-1:-1:-1;28381:2663:0::1;::::0;-1:-1:-1;28381:2663:0::1;;;28153:2898:::0;;:::o;22234:588::-;22386:14;;22337:16;;22368:15;22386:14;-1:-1:-1;;;;;22443:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22443:22:0;;22411:54;;22502:10;:17;22484:7;:14;:35;22476:79;;;;-1:-1:-1;;;22476:79:0;;15640:2:1;22476:79:0;;;15622:21:1;15679:2;15659:18;;;15652:30;15718:33;15698:18;;;15691:61;15769:18;;22476:79:0;15438:355:1;22476:79:0;22573:6;22568:213;22589:7;:14;22585:1;:18;22568:213;;;22627:19;22665:8;22674:7;22682:1;22674:10;;;;;;;;:::i;:::-;;;;;;;22665:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;22649:10;22660:1;22649:13;;;;;;;;:::i;:::-;;;;;;;:49;;;;:::i;:::-;22627:71;;22732:12;:24;22745:7;22753:1;22745:10;;;;;;;;:::i;:::-;;;;;;;22732:24;;;;;;;;;;;:37;22757:11;22732:37;;;;;;;;;;;;22713:12;22726:1;22713:15;;;;;;;;:::i;:::-;;;;;;;;;;:56;-1:-1:-1;22605:3:0;;22568:213;;;-1:-1:-1;22801:12:0;-1:-1:-1;;22234:588:0;;;;;:::o;27025:929::-;19989:13;:11;:13::i;:::-;27212:12:::1;:19;27196:5;:12;:35;27188:63;;;;-1:-1:-1::0;;;27188:63:0::1;;;;;;;:::i;:::-;27293:8;:15;27270:12;:19;:38;27262:66;;;;-1:-1:-1::0;;;27262:66:0::1;;;;;;;:::i;:::-;27366:9;:16;27347:8;:15;:35;27339:63;;;;-1:-1:-1::0;;;27339:63:0::1;;;;;;;:::i;:::-;27421:6;27417:530;27437:5;:12;27433:1;:16;27417:530;;;27494:2;27479:8;27488:1;27479:11;;;;;;;;:::i;:::-;;;;;;;:17;;27471:53;;;::::0;-1:-1:-1;;;27471:53:0;;16344:2:1;27471:53:0::1;::::0;::::1;16326:21:1::0;16383:2;16363:18;;;16356:30;16422:25;16402:18;;;16395:53;16465:18;;27471:53:0::1;16142:347:1::0;27471:53:0::1;27562:1;27547:9;27557:1;27547:12;;;;;;;;:::i;:::-;;;;;;;:16;27539:49;;;::::0;-1:-1:-1;;;27539:49:0;;16696:2:1;27539:49:0::1;::::0;::::1;16678:21:1::0;16735:2;16715:18;;;16708:30;-1:-1:-1;;;16754:18:1;;;16747:50;16814:18;;27539:49:0::1;16494:344:1::0;27539:49:0::1;27607:8;27621:207;;;;;;;;27659:5;27665:1;27659:8;;;;;;;;:::i;:::-;;;;;;;27621:207;;;;27696:8;27705:1;27696:11;;;;;;;;:::i;:::-;;;;;;;27621:207;;;;27736:9;27746:1;27736:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;27621:207;;27776:1:::1;27621:207:::0;;::::1;::::0;;;;;;;;;;27607:222;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;;;::::0;;;::::1;::::0;;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27851:84;27861:5;27867:1;27861:8;;;;;;;;:::i;:::-;;;;;;;27871:12;27884:1;27871:15;;;;;;;;:::i;:::-;;;;;;;27888:8;27897:1;27888:11;;;;;;;;:::i;:::-;;;;;;;27901:9;27911:1;27901:12;;;;;;;;:::i;:::-;;;;;;;27933:1;27915:8;:15;;;;:19;;;;:::i;:::-;27851:84;;;;;;;;;;:::i;:::-;;;;;;;;27451:3;;27417:530;;;;27025:929:::0;;;;:::o;25594:322::-;25656:7;25665;25687:19;25717:23;25767:8;25776:6;25767:16;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;;25753:42;;25824:8;25833:6;25824:16;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;25806:52;;25879:11;25892:15;25871:37;;;;;;25594:322;;;:::o;26026:899::-;26095:15;26112:16;26130;26148;26166;26197:15;26215:7;:14;26197:32;;26240:27;26283:7;-1:-1:-1;;;;;26270:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26240:51;;26302:31;26350:7;-1:-1:-1;;;;;26336:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26336:22:0;;26302:56;;26369:31;26417:7;-1:-1:-1;;;;;26403:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26403:22:0;;26369:56;;26436:34;26487:7;-1:-1:-1;;;;;26473:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26473:22:0;;26436:59;;26506:27;26550:7;-1:-1:-1;;;;;26536:22:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26536:22:0;;26506:52;;26576:6;26571:251;26592:7;:14;26588:1;:18;26571:251;;;26645:8;26654:7;26662:1;26654:10;;;;;;;;:::i;:::-;;;;;;;26645:20;;;;;;;;:::i;:::-;;;;;;;;;;;:29;;26628:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;26640:1;26628:14;;;;;;;;:::i;:::-;;;;;;:46;;;;26709:8;26718:7;26726:1;26718:10;;;;;;;;:::i;:::-;;;;;;;26709:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;26689:14;26704:1;26689:17;;;;;;;;:::i;:::-;;;;;;:53;;;;;26777:8;26786:7;26794:1;26786:10;;;;;;;;:::i;:::-;;;;;;;26777:20;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;26757:14;26772:1;26757:17;;;;;;;;:::i;:::-;;;;;;;;;;:53;26608:3;;26571:251;;;-1:-1:-1;26842:11:0;;26855:14;;-1:-1:-1;26871:14:0;;-1:-1:-1;26855:14:0;-1:-1:-1;26842:11:0;;-1:-1:-1;26026:899:0;-1:-1:-1;;;26026:899:0:o;31059:343::-;16635:13;:11;:13::i;:::-;31149:17:::1;31170:1;31149:22:::0;31141:54:::1;;;::::0;-1:-1:-1;;;31141:54:0;;12267:2:1;31141:54:0::1;::::0;::::1;12249:21:1::0;12306:2;12286:18;;;12279:30;-1:-1:-1;;;12325:18:1;;;12318:49;12384:18;;31141:54:0::1;12065:343:1::0;31141:54:0::1;31235:12;;31214:17;:33;;31206:93;;;::::0;-1:-1:-1;;;31206:93:0;;20158:2:1;31206:93:0::1;::::0;::::1;20140:21:1::0;20197:2;20177:18;;;20170:30;20236:34;20216:18;;;20209:62;-1:-1:-1;;;20287:18:1;;;20280:45;20342:19;;31206:93:0::1;19956:411:1::0;31206:93:0::1;31312:15;:35:::0;;;31363:31:::1;::::0;160:25:1;;;31363:31:0::1;::::0;148:2:1;133:18;31363:31:0::1;;;;;;;;31059:343:::0;:::o;31410:396::-;16635:13;:11;:13::i;:::-;31489:6:::1;31484:166;31503:7;:14:::0;31499:18;::::1;31484:166;;;31557:14;-1:-1:-1::0;;;;;31543:28:0::1;:7;31551:1;31543:10;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;31543:10:0::1;:28:::0;31539:100:::1;;31592:31;::::0;-1:-1:-1;;;31592:31:0;;20574:2:1;31592:31:0::1;::::0;::::1;20556:21:1::0;20613:2;20593:18;;;20586:30;-1:-1:-1;;;20632:18:1;;;20625:51;20693:18;;31592:31:0::1;20372:345:1::0;31539:100:0::1;31519:3;;31484:166;;;-1:-1:-1::0;31662:7:0::1;:28:::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;31662:28:0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31662:28:0::1;-1:-1:-1::0;;;;;31662:28:0;::::1;;::::0;;31701:14;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;31726:24:0;::::1;;::::0;;;:8:::1;:24;::::0;;;;;;;;:31;;-1:-1:-1;;31726:31:0::1;31753:4;31726:31;::::0;;31773:25;;942:51:1;;;31773:25:0::1;::::0;915:18:1;31773:25:0::1;796:203:1::0;25085:501:0;25142:7;25162:19;25184:15;25162:37;;25210:24;25237:8;25246:6;25237:16;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;25210:61;;25389:3;25369:16;25355:11;:30;;;;:::i;:::-;:37;;25347:111;;;;-1:-1:-1;;;25347:111:0;;20924:2:1;25347:111:0;;;20906:21:1;20963:2;20943:18;;;20936:30;21002:34;20982:18;;;20975:62;21073:31;21053:18;;;21046:59;21122:19;;25347:111:0;20722:425:1;25347:111:0;25475:19;25519:8;25528:6;25519:16;;;;;;;;:::i;:::-;;;;;;;;;:28;:16;;;;;:28;;;25085:501;-1:-1:-1;;;;;25085:501:0:o;23720:429::-;23774:7;23783;23792;23814:19;23844:23;23878:22;23927:8;23936:6;23927:16;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;;23913:42;;23984:8;23993:6;23984:16;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;23966:52;;24046:8;24055:6;24046:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:29;;;24096:11;;24109:15;;-1:-1:-1;24046:29:0;;-1:-1:-1;23720:429:0;-1:-1:-1;;;23720:429:0:o;17682:220::-;16635:13;:11;:13::i;:::-;-1:-1:-1;;;;;17767:22:0;::::1;17763:93;;17813:31;::::0;-1:-1:-1;;;17813:31:0;;17841:1:::1;17813:31;::::0;::::1;942:51:1::0;915:18;;17813:31:0::1;796:203:1::0;17763:93:0::1;17866:28;17885:8;17866:18;:28::i;:::-;17682:220:::0;:::o;16914:166::-;16795:7;16822:6;-1:-1:-1;;;;;16822:6:0;14838:10;16974:23;16970:103;;17021:40;;-1:-1:-1;;;17021:40:0;;14838:10;17021:40;;;942:51:1;915:18;;17021:40:0;796:203:1;18062:191:0;18136:16;18155:6;;-1:-1:-1;;;;;18172:17:0;;;-1:-1:-1;;;;;;18172:17:0;;;;;;18205:40;;18155:6;;;;;;;18205:40;;18136:16;18205:40;18125:128;18062:191;:::o;20055:125::-;20119:10;20110:20;;;;:8;:20;;;;;;;;20102:70;;;;-1:-1:-1;;;20102:70:0;;21354:2:1;20102:70:0;;;21336:21:1;21393:2;21373:18;;;21366:30;21432:34;21412:18;;;21405:62;-1:-1:-1;;;21483:18:1;;;21476:35;21528:19;;20102:70:0;21152:401:1;21990:157:0;22046:13;22072:45;22082:4;22092:1;22114;22100:4;:11;:15;;;;:::i;:::-;22072:9;:45::i;:::-;-1:-1:-1;22135:4:0;21990:157::o;21182:635::-;21273:4;21296:5;21316:6;;;21312:19;;21324:7;;21182:635;;;:::o;21312:19::-;21341:10;21354:3;21387:1;21371:12;21379:4;21371:5;:12;:::i;:::-;21370:18;;;;:::i;:::-;21363:25;;:4;:25;:::i;:::-;21354:36;;;;;;;;:::i;:::-;;;;;;;21341:49;;21401:285;21413:1;21408;:6;21401:285;;21431:32;21453:5;21438:3;21447:1;21438:12;;;;;;;;:::i;:::-;;;;;;;:20;21431:32;;;21460:3;;;;:::i;:::-;;;;21431:32;;;21493:3;21502:1;21493:12;;;;;;;;:::i;:::-;;;;;;;21485:5;:20;21478:32;;;21507:3;;;;:::i;:::-;;;;21478:32;;;21534:1;21529;:6;21525:150;;21588:3;21597:1;21588:12;;;;;;;;:::i;:::-;;;;;;;21602:3;21611:1;21602:12;;;;;;;;:::i;:::-;;;;;;;21557:3;21566:1;21557:12;;;;;;;;:::i;:::-;;;;;;21571:3;21580:1;21571:12;;;;;;;;:::i;:::-;;;;;;;;;;21556:59;;;;;21634:3;;;;:::i;:::-;;;;21656;;;;;:::i;:::-;;;;21525:150;21401:285;;;21707:1;21700:4;:8;21696:50;;;21723:23;21733:3;21738:4;21744:1;21723:9;:23::i;:::-;21765:5;21761:1;:9;21757:52;;;21785:24;21795:3;21800:1;21803:5;21785:9;:24::i;:::-;21254:563;;;21182:635;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:173:1;264:20;;-1:-1:-1;;;;;313:31:1;;303:42;;293:70;;359:1;356;349:12;293:70;196:173;;;:::o;374:186::-;433:6;486:2;474:9;465:7;461:23;457:32;454:52;;;502:1;499;492:12;454:52;525:29;544:9;525:29;:::i;:::-;515:39;374:186;-1:-1:-1;;;374:186:1:o;565:226::-;624:6;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;-1:-1:-1;738:23:1;;565:226;-1:-1:-1;565:226:1:o;1004:127::-;1065:10;1060:3;1056:20;1053:1;1046:31;1096:4;1093:1;1086:15;1120:4;1117:1;1110:15;1136:275;1207:2;1201:9;1272:2;1253:13;;-1:-1:-1;;1249:27:1;1237:40;;-1:-1:-1;;;;;1292:34:1;;1328:22;;;1289:62;1286:88;;;1354:18;;:::i;:::-;1390:2;1383:22;1136:275;;-1:-1:-1;1136:275:1:o;1416:183::-;1476:4;-1:-1:-1;;;;;1501:6:1;1498:30;1495:56;;;1531:18;;:::i;:::-;-1:-1:-1;1576:1:1;1572:14;1588:4;1568:25;;1416:183::o;1604:723::-;1658:5;1711:3;1704:4;1696:6;1692:17;1688:27;1678:55;;1729:1;1726;1719:12;1678:55;1769:6;1756:20;1796:64;1812:47;1852:6;1812:47;:::i;:::-;1796:64;:::i;:::-;1884:3;1908:6;1903:3;1896:19;1940:4;1935:3;1931:14;1924:21;;2001:4;1991:6;1988:1;1984:14;1976:6;1972:27;1968:38;1954:52;;2029:3;2021:6;2018:15;2015:35;;;2046:1;2043;2036:12;2015:35;2082:4;2074:6;2070:17;2096:200;2112:6;2107:3;2104:15;2096:200;;;2204:17;;2234:18;;2281:4;2272:14;;;;2129;2096:200;;;-1:-1:-1;2314:7:1;1604:723;-1:-1:-1;;;;;1604:723:1:o;2332:348::-;2416:6;2469:2;2457:9;2448:7;2444:23;2440:32;2437:52;;;2485:1;2482;2475:12;2437:52;2525:9;2512:23;-1:-1:-1;;;;;2550:6:1;2547:30;2544:50;;;2590:1;2587;2580:12;2544:50;2613:61;2666:7;2657:6;2646:9;2642:22;2613:61;:::i;:::-;2603:71;2332:348;-1:-1:-1;;;;2332:348:1:o;2685:420::-;2738:3;2776:5;2770:12;2803:6;2798:3;2791:19;2835:4;2830:3;2826:14;2819:21;;2874:4;2867:5;2863:16;2897:1;2907:173;2921:6;2918:1;2915:13;2907:173;;;2982:13;;2970:26;;3025:4;3016:14;;;;3053:17;;;;2943:1;2936:9;2907:173;;;-1:-1:-1;3096:3:1;;2685:420;-1:-1:-1;;;;2685:420:1:o;3110:669::-;3445:2;3434:9;3427:21;3408:4;3471:56;3523:2;3512:9;3508:18;3500:6;3471:56;:::i;:::-;3575:9;3567:6;3563:22;3558:2;3547:9;3543:18;3536:50;3609:44;3646:6;3638;3609:44;:::i;:::-;3595:58;;3701:9;3693:6;3689:22;3684:2;3673:9;3669:18;3662:50;3729:44;3766:6;3758;3729:44;:::i;:::-;3721:52;3110:669;-1:-1:-1;;;;;;3110:669:1:o;3784:1018::-;3877:6;3885;3938:2;3926:9;3917:7;3913:23;3909:32;3906:52;;;3954:1;3951;3944:12;3906:52;3994:9;3981:23;-1:-1:-1;;;;;4019:6:1;4016:30;4013:50;;;4059:1;4056;4049:12;4013:50;4082:22;;4135:4;4127:13;;4123:27;-1:-1:-1;4113:55:1;;4164:1;4161;4154:12;4113:55;4204:2;4191:16;4227:64;4243:47;4283:6;4243:47;:::i;4227:64::-;4313:3;4337:6;4332:3;4325:19;4369:4;4364:3;4360:14;4353:21;;4426:4;4416:6;4413:1;4409:14;4405:2;4401:23;4397:34;4383:48;;4454:7;4446:6;4443:19;4440:39;;;4475:1;4472;4465:12;4440:39;4507:4;4503:2;4499:13;4488:24;;4521:152;4537:6;4532:3;4529:15;4521:152;;;4605:23;4624:3;4605:23;:::i;:::-;4593:36;;4658:4;4554:14;;;;4649;;;;4521:152;;;4692:5;4766:4;4751:20;;;;4738:34;;-1:-1:-1;;;;;;3784:1018:1:o;4999:590::-;5117:6;5125;5178:2;5166:9;5157:7;5153:23;5149:32;5146:52;;;5194:1;5191;5184:12;5146:52;5234:9;5221:23;-1:-1:-1;;;;;5259:6:1;5256:30;5253:50;;;5299:1;5296;5289:12;5253:50;5322:61;5375:7;5366:6;5355:9;5351:22;5322:61;:::i;:::-;5312:71;;;5436:2;5425:9;5421:18;5408:32;-1:-1:-1;;;;;5455:8:1;5452:32;5449:52;;;5497:1;5494;5487:12;5449:52;5520:63;5575:7;5564:8;5553:9;5549:24;5520:63;:::i;:::-;5510:73;;;4999:590;;;;;:::o;5594:261::-;5773:2;5762:9;5755:21;5736:4;5793:56;5845:2;5834:9;5830:18;5822:6;5793:56;:::i;5860:1344::-;5913:5;5966:3;5959:4;5951:6;5947:17;5943:27;5933:55;;5984:1;5981;5974:12;5933:55;6024:6;6011:20;6051:64;6067:47;6107:6;6067:47;:::i;6051:64::-;6139:3;6163:6;6158:3;6151:19;6195:4;6190:3;6186:14;6179:21;;6256:4;6246:6;6243:1;6239:14;6231:6;6227:27;6223:38;6209:52;;6284:3;6276:6;6273:15;6270:35;;;6301:1;6298;6291:12;6270:35;6337:4;6329:6;6325:17;6351:822;6367:6;6362:3;6359:15;6351:822;;;6455:3;6442:17;-1:-1:-1;;;;;6478:11:1;6475:35;6472:55;;;6523:1;6520;6513:12;6472:55;6550:24;;6609:2;6601:11;;6597:21;-1:-1:-1;6587:49:1;;6632:1;6629;6622:12;6587:49;6686:4;6682:2;6678:13;6665:27;-1:-1:-1;;;;;6711:8:1;6708:32;6705:58;;;6743:18;;:::i;:::-;6791:61;6840:2;6815:19;;-1:-1:-1;;6811:33:1;6846:4;6807:44;6791:61;:::i;:::-;6865:25;;;6909:39;6917:17;;;6909:39;6906:48;-1:-1:-1;6903:68:1;;;6967:1;6964;6957:12;6903:68;7030:8;7025:2;7021;7017:11;7010:4;7001:7;6997:18;6984:55;7094:1;7087:4;7076:8;7067:7;7063:22;7059:33;7052:44;7121:7;7116:3;7109:20;;;;7158:4;7153:3;7149:14;7142:21;;6393:4;6388:3;6384:14;6377:21;;6351:822;;7209:1093;7415:6;7423;7431;7439;7492:3;7480:9;7471:7;7467:23;7463:33;7460:53;;;7509:1;7506;7499:12;7460:53;7549:9;7536:23;-1:-1:-1;;;;;7574:6:1;7571:30;7568:50;;;7614:1;7611;7604:12;7568:50;7637:60;7689:7;7680:6;7669:9;7665:22;7637:60;:::i;:::-;7627:70;;;7750:2;7739:9;7735:18;7722:32;-1:-1:-1;;;;;7769:8:1;7766:32;7763:52;;;7811:1;7808;7801:12;7763:52;7834:62;7888:7;7877:8;7866:9;7862:24;7834:62;:::i;:::-;7824:72;;;7949:2;7938:9;7934:18;7921:32;-1:-1:-1;;;;;7968:8:1;7965:32;7962:52;;;8010:1;8007;8000:12;7962:52;8033:63;8088:7;8077:8;8066:9;8062:24;8033:63;:::i;:::-;8023:73;;;8149:2;8138:9;8134:18;8121:32;-1:-1:-1;;;;;8168:8:1;8165:32;8162:52;;;8210:1;8207;8200:12;8162:52;8233:63;8288:7;8277:8;8266:9;8262:24;8233:63;:::i;:::-;8223:73;;;7209:1093;;;;;;;:::o;8560:289::-;8602:3;8640:5;8634:12;8667:6;8662:3;8655:19;8723:6;8716:4;8709:5;8705:16;8698:4;8693:3;8689:14;8683:47;8775:1;8768:4;8759:6;8754:3;8750:16;8746:27;8739:38;8838:4;8831:2;8827:7;8822:2;8814:6;8810:15;8806:29;8801:3;8797:39;8793:50;8786:57;;;8560:289;;;;:::o;8854:1583::-;9328:4;9376:3;9365:9;9361:19;9407:3;9396:9;9389:22;9431:6;9466;9460:13;9497:6;9489;9482:22;9535:3;9524:9;9520:19;9513:26;;9598:3;9588:6;9585:1;9581:14;9570:9;9566:30;9562:40;9548:54;;9637:4;9629:6;9625:17;9660:1;9670:260;9684:6;9681:1;9678:13;9670:260;;;9777:3;9773:8;9761:9;9753:6;9749:22;9745:37;9740:3;9733:50;9806:40;9839:6;9830;9824:13;9806:40;:::i;:::-;9796:50;-1:-1:-1;9881:4:1;9906:14;;;;9869:17;;;;;9706:1;9699:9;9670:260;;;9674:3;;;;9980:9;9972:6;9968:22;9961:4;9950:9;9946:20;9939:52;10014:44;10051:6;10043;10014:44;:::i;:::-;10000:58;;10106:9;10098:6;10094:22;10089:2;10078:9;10074:18;10067:50;10140:44;10177:6;10169;10140:44;:::i;:::-;10126:58;;10232:9;10224:6;10220:22;10215:2;10204:9;10200:18;10193:50;10266:44;10303:6;10295;10266:44;:::i;:::-;10252:58;;10359:9;10351:6;10347:22;10341:3;10330:9;10326:19;10319:51;10387:44;10424:6;10416;10387:44;:::i;:::-;10379:52;8854:1583;-1:-1:-1;;;;;;;;8854:1583:1:o;11171:127::-;11232:10;11227:3;11223:20;11220:1;11213:31;11263:4;11260:1;11253:15;11287:4;11284:1;11277:15;11303:128;11370:9;;;11391:11;;;11388:37;;;11405:18;;:::i;11792:127::-;11853:10;11848:3;11844:20;11841:1;11834:31;11884:4;11881:1;11874:15;11908:4;11905:1;11898:15;11924:136;11963:3;11991:5;11981:39;;12000:18;;:::i;:::-;-1:-1:-1;;;12036:18:1;;11924:136::o;13167:716::-;13385:2;13397:21;;;13467:13;;13370:18;;;13489:22;;;13337:4;;13580;13568:17;;;13542:2;13527:18;;;13337:4;13613:199;13627:6;13624:1;13621:13;13613:199;;;13692:13;;-1:-1:-1;;;;;13688:39:1;13676:52;;13757:4;13785:17;;;;13748:14;;;;13724:1;13642:9;13613:199;;;-1:-1:-1;;13863:4:1;13848:20;;;;13841:36;;;;-1:-1:-1;13829:3:1;13167:716;-1:-1:-1;;13167:716:1:o;14300:127::-;14361:10;14356:3;14352:20;14349:1;14342:31;14392:4;14389:1;14382:15;14416:4;14413:1;14406:15;14432:120;14472:1;14498;14488:35;;14503:18;;:::i;:::-;-1:-1:-1;14537:9:1;;14432:120::o;15051:135::-;15090:3;15111:17;;;15108:43;;15131:18;;:::i;:::-;-1:-1:-1;15178:1:1;15167:13;;15051:135::o;15191:112::-;15223:1;15249;15239:35;;15254:18;;:::i;:::-;-1:-1:-1;15288:9:1;;15191:112::o;15308:125::-;15373:9;;;15394:10;;;15391:36;;;15407:18;;:::i;15798:339::-;16000:2;15982:21;;;16039:2;16019:18;;;16012:30;-1:-1:-1;;;16073:2:1;16058:18;;16051:45;16128:2;16113:18;;15798:339::o;16843:380::-;16922:1;16918:12;;;;16965;;;16986:61;;17040:4;17032:6;17028:17;17018:27;;16986:61;17093:2;17085:6;17082:14;17062:18;17059:38;17056:161;;17139:10;17134:3;17130:20;17127:1;17120:31;17174:4;17171:1;17164:15;17202:4;17199:1;17192:15;17056:161;;16843:380;;;:::o;17354:518::-;17456:2;17451:3;17448:11;17445:421;;;17492:5;17489:1;17482:16;17536:4;17533:1;17523:18;17606:2;17594:10;17590:19;17587:1;17583:27;17577:4;17573:38;17642:4;17630:10;17627:20;17624:47;;;-1:-1:-1;17665:4:1;17624:47;17720:2;17715:3;17711:12;17708:1;17704:20;17698:4;17694:31;17684:41;;17775:81;17793:2;17786:5;17783:13;17775:81;;;17852:1;17838:16;;17819:1;17808:13;17775:81;;18048:1299;18174:3;18168:10;-1:-1:-1;;;;;18193:6:1;18190:30;18187:56;;;18223:18;;:::i;:::-;18252:97;18342:6;18302:38;18334:4;18328:11;18302:38;:::i;:::-;18296:4;18252:97;:::i;:::-;18398:4;18429:2;18418:14;;18446:1;18441:649;;;;19134:1;19151:6;19148:89;;;-1:-1:-1;19203:19:1;;;19197:26;19148:89;-1:-1:-1;;18005:1:1;18001:11;;;17997:24;17993:29;17983:40;18029:1;18025:11;;;17980:57;19250:81;;18411:930;;18441:649;17301:1;17294:14;;;17338:4;17325:18;;-1:-1:-1;;18477:20:1;;;18595:222;18609:7;18606:1;18603:14;18595:222;;;18691:19;;;18685:26;18670:42;;18798:4;18783:20;;;;18751:1;18739:14;;;;18625:12;18595:222;;;18599:3;18845:6;18836:7;18833:19;18830:201;;;18906:19;;;18900:26;-1:-1:-1;;18989:1:1;18985:14;;;19001:3;18981:24;18977:37;18973:42;18958:58;18943:74;;18830:201;-1:-1:-1;;;;19077:1:1;19061:14;;;19057:22;19044:36;;-1:-1:-1;18048:1299:1:o;19352:599::-;19633:3;19622:9;19615:22;19596:4;19660:46;19701:3;19690:9;19686:19;19678:6;19660:46;:::i;:::-;19754:9;19746:6;19742:22;19737:2;19726:9;19722:18;19715:50;19782:33;19808:6;19800;19782:33;:::i;:::-;19846:2;19831:18;;19824:34;;;;-1:-1:-1;;19889:2:1;19874:18;;19867:34;;;;19932:3;19917:19;;;19910:35;19774:41;19352:599;-1:-1:-1;;19352:599:1:o;21558:200::-;21624:9;;;21597:4;21652:9;;21680:10;;21692:12;;;21676:29;21715:12;;;21707:21;;21673:56;21670:82;;;21732:18;;:::i;:::-;21670:82;21558:200;;;;:::o;21763:193::-;21802:1;21828;21818:35;;21833:18;;:::i;:::-;-1:-1:-1;;;21869:18:1;;-1:-1:-1;;21889:13:1;;21865:38;21862:64;;;21906:18;;:::i;:::-;-1:-1:-1;21940:10:1;;21763:193::o;21961:216::-;22025:9;;;22053:11;;;22000:3;22083:9;;22111:10;;22107:19;;22136:10;;22128:19;;22104:44;22101:70;;;22151:18;;:::i;:::-;22101:70;;21961:216;;;;:::o;22182:147::-;22220:3;-1:-1:-1;;;;;22241:30:1;;22238:56;;22274:18;;:::i;22334:144::-;22372:3;-1:-1:-1;;;22393:22:1;;22390:48;;22418:18;;:::i
Swarm Source
ipfs://c8ffdcfc97d82dace484c6ba2734a53bba93d2a0675a47578368f0df1386769c
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.