Contract Overview
Balance:
0 FTM
FTM Value:
$0.00
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x4888c2bc680831af67dcc1501357da0153d5e481c61ae68c21aff83c83d77528 | 36215018 | 296 days 7 hrs ago | Wizard Finance: Deployer | Contract Creation | 0 FTM |
[ Download CSV Export ]
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Treasury
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2022-04-16 */ // SPDX-License-Identifier: MIT /* >=> >=> >=> >=======> >=> >=> >> >=> >=> >> >=> >> >=> >====>>=> >=> >=> >> >==> >=> >=> >==>>==> >=> >=> >==>>==> >==> >==> >=> >=> >=> >=> >=> >=> >=> >=> >=>>=> >=====> >=> >=> >=> >=> >=> >=> >=> >=> >> >=> >=> >> >=> >=> >=> >=> >=> >=> >=> >> >=> >=> >=> >=> >=> >=> >=> >=> >=> >=> >>===>>=> >> >> >===> >=> >=> >=> >=> >=> >> >=> >=> >=> >=> >=> >=> >=> >=> >=> >=> >> >=> >=> >=> >=======> >==>>>==> >==> >=>>=> >=> >=> >==> >=> >==>>>==> >==> >=> >==> >====> https://wizardfinance.xyz/ */ pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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; } } pragma solidity >=0.6.0 <0.8.0; /** * @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. */ abstract 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 virtual 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; } } pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { 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) { // 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) { 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) { 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @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. 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) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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) { 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) { require(b > 0, errorMessage); return a % b; } } pragma solidity >=0.6.0 <0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } pragma solidity >=0.6.0 <0.8.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); } pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity >=0.6.0 <0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } pragma solidity 0.6.12; contract Operator is Context, Ownable { address private _operator; event OperatorTransferred(address indexed previousOperator, address indexed newOperator); constructor() internal { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); } function operator() public view returns (address) { return _operator; } modifier onlyOperator() { require(_operator == msg.sender, "operator: caller is not the operator"); _; } function isOperator() public view returns (bool) { return _msgSender() == _operator; } function transferOperator(address newOperator_) public onlyOwner { _transferOperator(newOperator_); } function _transferOperator(address newOperator_) internal { require(newOperator_ != address(0), "operator: zero address given for new operator"); emit OperatorTransferred(address(0), newOperator_); _operator = newOperator_; } } pragma solidity 0.6.12; contract ContractGuard { mapping(uint256 => mapping(address => bool)) private _status; function checkSameOriginReentranted() internal view returns (bool) { return _status[block.number][tx.origin]; } function checkSameSenderReentranted() internal view returns (bool) { return _status[block.number][msg.sender]; } modifier onlyOneBlock() { require(!checkSameOriginReentranted(), "ContractGuard: one block, one function"); require(!checkSameSenderReentranted(), "ContractGuard: one block, one function"); _; _status[block.number][tx.origin] = true; _status[block.number][msg.sender] = true; } } pragma solidity ^0.6.0; library Babylonian { function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } // else z = 0 } } pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity 0.6.12; interface IOracle { function update() external; function consult(address _token, uint256 _amountIn) external view returns (uint144 amountOut); function twap(address _token, uint256 _amountIn) external view returns (uint144 _amountOut); } pragma solidity 0.6.12; interface IBoardroom { function balanceOf(address _board) external view returns (uint256); function earned(address _board) external view returns (uint256); function canWithdraw(address _board) external view returns (bool); function canClaimReward(address _board) external view returns (bool); function epoch() external view returns (uint256); function nextEpochPoint() external view returns (uint256); function getWizardPrice() external view returns (uint256); function setOperator(address _operator) external; function setLockUp(uint256 _withdrawLockupEpochs, uint256 _rewardLockupEpochs) external; function stake(uint256 _amount) external; function withdraw(uint256 _amount) external; function exit() external; function claimReward() external; function allocateSeigniorage(uint256 _amount) external; function governanceRecoverUnsupported(address _token, uint256 _amount, address _to) external; } pragma solidity ^0.6.0; interface IBasisAsset { function mint(address recipient, uint256 amount) external returns (bool); function burn(uint256 amount) external; function burnFrom(address from, uint256 amount) external; function isOperator() external returns (bool); function operator() external view returns (address); function transferOperator(address newOperator_) external; } pragma solidity 0.6.12; contract Treasury is ContractGuard { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; /* ========= CONSTANT VARIABLES ======== */ uint256 public constant PERIOD = 6 hours; /* ========== STATE VARIABLES ========== */ // governance address public operator; // flags bool public initialized = false; // epoch uint256 public startTime; uint256 public epoch = 0; uint256 public epochSupplyContractionLeft = 0; // exclusions from total supply address[] public excludedFromTotalSupply = [ address(0xBF56FAAe5B0aDC7eA356044e3a7784De1AF7a97b) // WizardGenesisPool ]; // core components address public wizard; address public wbond; address public wshare; address public boardroom; address public wizardOracle; // price uint256 public wizardPriceOne; uint256 public wizardPriceCeiling; uint256 public seigniorageSaved; uint256[] public supplyTiers; uint256[] public maxExpansionTiers; uint256 public maxSupplyExpansionPercent; uint256 public bondDepletionFloorPercent; uint256 public seigniorageExpansionFloorPercent; uint256 public maxSupplyContractionPercent; uint256 public maxDebtRatioPercent; // 28 first epochs (1 week) with 4.5% expansion regardless of WIZARD price uint256 public bootstrapEpochs; uint256 public bootstrapSupplyExpansionPercent; /* =================== Added variables =================== */ uint256 public previousEpochWizardPrice; uint256 public maxDiscountRate; // when purchasing bond uint256 public maxPremiumRate; // when redeeming bond uint256 public discountPercent; uint256 public premiumThreshold; uint256 public premiumPercent; uint256 public mintingFactorForPayingDebt; // print extra WIZARD during debt phase address public daoFund; uint256 public daoFundSharedPercent; address public devFund; uint256 public devFundSharedPercent; /* =================== Events =================== */ event Initialized(address indexed executor, uint256 at); event BurnedBonds(address indexed from, uint256 bondAmount); event RedeemedBonds(address indexed from, uint256 wizardAmount, uint256 bondAmount); event BoughtBonds(address indexed from, uint256 wizardAmount, uint256 bondAmount); event TreasuryFunded(uint256 timestamp, uint256 seigniorage); event BoardroomFunded(uint256 timestamp, uint256 seigniorage); event DaoFundFunded(uint256 timestamp, uint256 seigniorage); event DevFundFunded(uint256 timestamp, uint256 seigniorage); /* =================== Modifier =================== */ modifier onlyOperator() { require(operator == msg.sender, "Treasury: caller is not the operator"); _; } modifier checkCondition { require(now >= startTime, "Treasury: not started yet"); _; } modifier checkEpoch { require(now >= nextEpochPoint(), "Treasury: not opened yet"); _; epoch = epoch.add(1); epochSupplyContractionLeft = (getWizardPrice() > wizardPriceCeiling) ? 0 : getWizardCirculatingSupply().mul(maxSupplyContractionPercent).div(10000); } modifier checkOperator { require( IBasisAsset(wizard).operator() == address(this) && IBasisAsset(wbond).operator() == address(this) && IBasisAsset(wshare).operator() == address(this) && Operator(boardroom).operator() == address(this), "Treasury: need more permission" ); _; } modifier notInitialized { require(!initialized, "Treasury: already initialized"); _; } /* ========== VIEW FUNCTIONS ========== */ function isInitialized() public view returns (bool) { return initialized; } // epoch function nextEpochPoint() public view returns (uint256) { return startTime.add(epoch.mul(PERIOD)); } // oracle function getWizardPrice() public view returns (uint256 wizardPrice) { try IOracle(wizardOracle).consult(wizard, 1e18) returns (uint144 price) { return uint256(price); } catch { revert("Treasury: failed to consult WIZARD price from the oracle"); } } function getWizardUpdatedPrice() public view returns (uint256 _wizardPrice) { try IOracle(wizardOracle).twap(wizard, 1e18) returns (uint144 price) { return uint256(price); } catch { revert("Treasury: failed to consult WIZARD price from the oracle"); } } // budget function getReserve() public view returns (uint256) { return seigniorageSaved; } function getBurnableWizardLeft() public view returns (uint256 _burnableWizardLeft) { uint256 _wizardPrice = getWizardPrice(); if (_wizardPrice <= wizardPriceOne) { uint256 _wizardSupply = getWizardCirculatingSupply(); uint256 _bondMaxSupply = _wizardSupply.mul(maxDebtRatioPercent).div(10000); uint256 _bondSupply = IERC20(wbond).totalSupply(); if (_bondMaxSupply > _bondSupply) { uint256 _maxMintableBond = _bondMaxSupply.sub(_bondSupply); uint256 _maxBurnableWizard = _maxMintableBond.mul(_wizardPrice).div(1e18); _burnableWizardLeft = Math.min(epochSupplyContractionLeft, _maxBurnableWizard); } } } function getRedeemableBonds() public view returns (uint256 _redeemableBonds) { uint256 _wizardPrice = getWizardPrice(); if (_wizardPrice > wizardPriceCeiling) { uint256 _totalWizard = IERC20(wizard).balanceOf(address(this)); uint256 _rate = getBondPremiumRate(); if (_rate > 0) { _redeemableBonds = _totalWizard.mul(1e18).div(_rate); } } } function getBondDiscountRate() public view returns (uint256 _rate) { uint256 _wizardPrice = getWizardPrice(); if (_wizardPrice <= wizardPriceOne) { if (discountPercent == 0) { // no discount _rate = wizardPriceOne; } else { uint256 _bondAmount = wizardPriceOne.mul(1e18).div(_wizardPrice); // to burn 1 WIZARD uint256 _discountAmount = _bondAmount.sub(wizardPriceOne).mul(discountPercent).div(10000); _rate = wizardPriceOne.add(_discountAmount); if (maxDiscountRate > 0 && _rate > maxDiscountRate) { _rate = maxDiscountRate; } } } } function getBondPremiumRate() public view returns (uint256 _rate) { uint256 _wizardPrice = getWizardPrice(); if (_wizardPrice > wizardPriceCeiling) { uint256 _wizardPricePremiumThreshold = wizardPriceOne.mul(premiumThreshold).div(100); if (_wizardPrice >= _wizardPricePremiumThreshold) { //Price > 1.10 uint256 _premiumAmount = _wizardPrice.sub(wizardPriceOne).mul(premiumPercent).div(10000); _rate = wizardPriceOne.add(_premiumAmount); if (maxPremiumRate > 0 && _rate > maxPremiumRate) { _rate = maxPremiumRate; } } else { // no premium bonus _rate = wizardPriceOne; } } } /* ========== GOVERNANCE ========== */ function initialize( address _wizard, address _wbond, address _wshare, address _wizardOracle, address _boardroom, uint256 _startTime ) public notInitialized { wizard = _wizard; wbond = _wbond; wshare = _wshare; wizardOracle = _wizardOracle; boardroom = _boardroom; startTime = _startTime; wizardPriceOne = 10**17; wizardPriceCeiling = wizardPriceOne.mul(101).div(100); // Dynamic max expansion percent supplyTiers = [0 ether, 500000 ether, 1000000 ether, 1500000 ether, 2000000 ether, 5000000 ether, 10000000 ether, 20000000 ether, 50000000 ether]; maxExpansionTiers = [450, 400, 350, 300, 250, 200, 150, 125, 100]; maxSupplyExpansionPercent = 400; // Upto 4.0% supply for expansion bondDepletionFloorPercent = 10000; // 100% of Bond supply for depletion floor seigniorageExpansionFloorPercent = 3500; // At least 35% of expansion reserved for boardroom maxSupplyContractionPercent = 300; // Upto 3.0% supply for contraction (to burn WIZARD and mint gBOND) maxDebtRatioPercent = 3500; // Upto 35% supply of gBOND to purchase premiumThreshold = 110; premiumPercent = 7000; // First 28 epochs with 4.5% expansion bootstrapEpochs = 28; bootstrapSupplyExpansionPercent = 450; // set seigniorageSaved to it's balance seigniorageSaved = IERC20(wizard).balanceOf(address(this)); initialized = true; operator = msg.sender; emit Initialized(msg.sender, block.number); } function setOperator(address _operator) external onlyOperator { operator = _operator; } function setBoardroom(address _boardroom) external onlyOperator { boardroom = _boardroom; } function setwizardOracle(address _wizardOracle) external onlyOperator { wizardOracle = _wizardOracle; } function setwizardPriceCeiling(uint256 _wizardPriceCeiling) external onlyOperator { require(_wizardPriceCeiling >= wizardPriceOne && _wizardPriceCeiling <= wizardPriceOne.mul(120).div(100), "out of range"); // [$1.0, $1.2] wizardPriceCeiling = _wizardPriceCeiling; } function setMaxSupplyExpansionPercents(uint256 _maxSupplyExpansionPercent) external onlyOperator { require(_maxSupplyExpansionPercent >= 10 && _maxSupplyExpansionPercent <= 1000, "_maxSupplyExpansionPercent: out of range"); // [0.1%, 10%] maxSupplyExpansionPercent = _maxSupplyExpansionPercent; } function setSupplyTiersEntry(uint8 _index, uint256 _value) external onlyOperator returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require(_index < 9, "Index has to be lower than count of tiers"); if (_index > 0) { require(_value > supplyTiers[_index - 1]); } if (_index < 8) { require(_value < supplyTiers[_index + 1]); } supplyTiers[_index] = _value; return true; } function setMaxExpansionTiersEntry(uint8 _index, uint256 _value) external onlyOperator returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require(_index < 9, "Index has to be lower than count of tiers"); require(_value >= 10 && _value <= 1000, "_value: out of range"); // [0.1%, 10%] maxExpansionTiers[_index] = _value; return true; } function setBondDepletionFloorPercent(uint256 _bondDepletionFloorPercent) external onlyOperator { require(_bondDepletionFloorPercent >= 500 && _bondDepletionFloorPercent <= 10000, "out of range"); // [5%, 100%] bondDepletionFloorPercent = _bondDepletionFloorPercent; } function setMaxSupplyContractionPercent(uint256 _maxSupplyContractionPercent) external onlyOperator { require(_maxSupplyContractionPercent >= 100 && _maxSupplyContractionPercent <= 1500, "out of range"); // [0.1%, 15%] maxSupplyContractionPercent = _maxSupplyContractionPercent; } function setMaxDebtRatioPercent(uint256 _maxDebtRatioPercent) external onlyOperator { require(_maxDebtRatioPercent >= 1000 && _maxDebtRatioPercent <= 10000, "out of range"); // [10%, 100%] maxDebtRatioPercent = _maxDebtRatioPercent; } function setBootstrap(uint256 _bootstrapEpochs, uint256 _bootstrapSupplyExpansionPercent) external onlyOperator { require(_bootstrapEpochs <= 120, "_bootstrapEpochs: out of range"); // <= 1 month require(_bootstrapSupplyExpansionPercent >= 100 && _bootstrapSupplyExpansionPercent <= 1000, "_bootstrapSupplyExpansionPercent: out of range"); // [1%, 10%] bootstrapEpochs = _bootstrapEpochs; bootstrapSupplyExpansionPercent = _bootstrapSupplyExpansionPercent; } function setExtraFunds( address _daoFund, uint256 _daoFundSharedPercent, address _devFund, uint256 _devFundSharedPercent ) external onlyOperator { require(_daoFund != address(0), "zero"); require(_daoFundSharedPercent <= 3000, "out of range"); // <= 30% require(_devFund != address(0), "zero"); require(_devFundSharedPercent <= 1000, "out of range"); // <= 10% daoFund = _daoFund; daoFundSharedPercent = _daoFundSharedPercent; devFund = _devFund; devFundSharedPercent = _devFundSharedPercent; } function setMaxDiscountRate(uint256 _maxDiscountRate) external onlyOperator { maxDiscountRate = _maxDiscountRate; } function setMaxPremiumRate(uint256 _maxPremiumRate) external onlyOperator { maxPremiumRate = _maxPremiumRate; } function setDiscountPercent(uint256 _discountPercent) external onlyOperator { require(_discountPercent <= 20000, "_discountPercent is over 200%"); discountPercent = _discountPercent; } function setPremiumThreshold(uint256 _premiumThreshold) external onlyOperator { require(_premiumThreshold >= wizardPriceCeiling, "_premiumThreshold exceeds wizardPriceCeiling"); require(_premiumThreshold <= 150, "_premiumThreshold is higher than 1.5"); premiumThreshold = _premiumThreshold; } function setPremiumPercent(uint256 _premiumPercent) external onlyOperator { require(_premiumPercent <= 20000, "_premiumPercent is over 200%"); premiumPercent = _premiumPercent; } function setMintingFactorForPayingDebt(uint256 _mintingFactorForPayingDebt) external onlyOperator { require(_mintingFactorForPayingDebt >= 10000 && _mintingFactorForPayingDebt <= 20000, "_mintingFactorForPayingDebt: out of range"); // [100%, 200%] mintingFactorForPayingDebt = _mintingFactorForPayingDebt; } /* ========== MUTABLE FUNCTIONS ========== */ function _updateWizardPrice() internal { try IOracle(wizardOracle).update() {} catch {} } function getWizardCirculatingSupply() public view returns (uint256) { IERC20 wizardErc20 = IERC20(wizard); uint256 totalSupply = wizardErc20.totalSupply(); uint256 balanceExcluded = 0; for (uint8 entryId = 0; entryId < excludedFromTotalSupply.length; ++entryId) { balanceExcluded = balanceExcluded.add(wizardErc20.balanceOf(excludedFromTotalSupply[entryId])); } return totalSupply.sub(balanceExcluded); } function buyBonds(uint256 _wizardAmount, uint256 targetPrice) external onlyOneBlock checkCondition checkOperator { require(_wizardAmount > 0, "Treasury: cannot purchase bonds with zero amount"); uint256 wizardPrice = getWizardPrice(); require(wizardPrice == targetPrice, "Treasury: WIZARD price moved"); require( wizardPrice < wizardPriceOne, // price < $1 "Treasury: wizardPrice not eligible for bond purchase" ); require(_wizardAmount <= epochSupplyContractionLeft, "Treasury: not enough bond left to purchase"); uint256 _rate = getBondDiscountRate(); require(_rate > 0, "Treasury: invalid bond rate"); uint256 _bondAmount = _wizardAmount.mul(_rate).div(1e17); uint256 wizardSupply = getWizardCirculatingSupply(); uint256 newBondSupply = IERC20(wbond).totalSupply().add(_bondAmount); require(newBondSupply <= wizardSupply.mul(maxDebtRatioPercent).div(10000), "over max debt ratio"); IBasisAsset(wizard).burnFrom(msg.sender, _wizardAmount); IBasisAsset(wbond).mint(msg.sender, _bondAmount); epochSupplyContractionLeft = epochSupplyContractionLeft.sub(_wizardAmount); _updateWizardPrice(); emit BoughtBonds(msg.sender, _wizardAmount, _bondAmount); } function redeemBonds(uint256 _bondAmount, uint256 targetPrice) external onlyOneBlock checkCondition checkOperator { require(_bondAmount > 0, "Treasury: cannot redeem bonds with zero amount"); uint256 wizardPrice = getWizardPrice(); require(wizardPrice == targetPrice, "Treasury: WIZARD price moved"); require( wizardPrice > wizardPriceCeiling, // price > $1.01 "Treasury: wizardPrice not eligible for bond purchase" ); uint256 _rate = getBondPremiumRate(); require(_rate > 0, "Treasury: invalid bond rate"); uint256 _wizardAmount = _bondAmount.mul(_rate).div(1e17); require(IERC20(wizard).balanceOf(address(this)) >= _wizardAmount, "Treasury: treasury has no more budget"); seigniorageSaved = seigniorageSaved.sub(Math.min(seigniorageSaved, _wizardAmount)); IBasisAsset(wbond).burnFrom(msg.sender, _bondAmount); IERC20(wizard).safeTransfer(msg.sender, _wizardAmount); _updateWizardPrice(); emit RedeemedBonds(msg.sender, _wizardAmount, _bondAmount); } function _sendToBoardroom(uint256 _amount) internal { IBasisAsset(wizard).mint(address(this), _amount); uint256 _daoFundSharedAmount = 0; if (daoFundSharedPercent > 0) { _daoFundSharedAmount = _amount.mul(daoFundSharedPercent).div(10000); IERC20(wizard).transfer(daoFund, _daoFundSharedAmount); emit DaoFundFunded(now, _daoFundSharedAmount); } uint256 _devFundSharedAmount = 0; if (devFundSharedPercent > 0) { _devFundSharedAmount = _amount.mul(devFundSharedPercent).div(10000); IERC20(wizard).transfer(devFund, _devFundSharedAmount); emit DevFundFunded(now, _devFundSharedAmount); } _amount = _amount.sub(_daoFundSharedAmount).sub(_devFundSharedAmount); IERC20(wizard).safeApprove(boardroom, 0); IERC20(wizard).safeApprove(boardroom, _amount); IBoardroom(boardroom).allocateSeigniorage(_amount); emit BoardroomFunded(now, _amount); } function _calculateMaxSupplyExpansionPercent(uint256 _wizardSupply) internal returns (uint256) { for (uint8 tierId = 8; tierId >= 0; --tierId) { if (_wizardSupply >= supplyTiers[tierId]) { maxSupplyExpansionPercent = maxExpansionTiers[tierId]; break; } } return maxSupplyExpansionPercent; } function allocateSeigniorage() external onlyOneBlock checkCondition checkEpoch checkOperator { _updateWizardPrice(); previousEpochWizardPrice = getWizardPrice(); uint256 wizardSupply = getWizardCirculatingSupply().sub(seigniorageSaved); if (epoch < bootstrapEpochs) { // 28 first epochs with 4.5% expansion _sendToBoardroom(wizardSupply.mul(bootstrapSupplyExpansionPercent).div(10000)); } else { if (previousEpochWizardPrice > wizardPriceCeiling) { // Expansion ($WIZARD Price > 1 $FTM): there is some seigniorage to be allocated uint256 bondSupply = IERC20(wbond).totalSupply(); uint256 _percentage = previousEpochWizardPrice.sub(wizardPriceOne); uint256 _savedForBond; uint256 _savedForBoardroom; uint256 _mse = _calculateMaxSupplyExpansionPercent(wizardSupply).mul(1e14); if (_percentage > _mse) { _percentage = _mse; } if (seigniorageSaved >= bondSupply.mul(bondDepletionFloorPercent).div(10000)) { // saved enough to pay debt, mint as usual rate _savedForBoardroom = wizardSupply.mul(_percentage).div(1e17); } else { // have not saved enough to pay debt, mint more uint256 _seigniorage = wizardSupply.mul(_percentage).div(1e17); _savedForBoardroom = _seigniorage.mul(seigniorageExpansionFloorPercent).div(10000); _savedForBond = _seigniorage.sub(_savedForBoardroom); if (mintingFactorForPayingDebt > 0) { _savedForBond = _savedForBond.mul(mintingFactorForPayingDebt).div(10000); } } if (_savedForBoardroom > 0) { _sendToBoardroom(_savedForBoardroom); } if (_savedForBond > 0) { seigniorageSaved = seigniorageSaved.add(_savedForBond); IBasisAsset(wizard).mint(address(this), _savedForBond); emit TreasuryFunded(now, _savedForBond); } } } } function governanceRecoverUnsupported( IERC20 _token, uint256 _amount, address _to ) external onlyOperator { // do not allow to drain core tokens require(address(_token) != address(wizard), "wizard"); require(address(_token) != address(wbond), "bond"); require(address(_token) != address(wshare), "wshare"); _token.safeTransfer(_to, _amount); } function boardroomSetOperator(address _operator) external onlyOperator { IBoardroom(boardroom).setOperator(_operator); } function boardroomSetLockUp(uint256 _withdrawLockupEpochs, uint256 _rewardLockupEpochs) external onlyOperator { IBoardroom(boardroom).setLockUp(_withdrawLockupEpochs, _rewardLockupEpochs); } function boardroomAllocateSeigniorage(uint256 amount) external onlyOperator { IBoardroom(boardroom).allocateSeigniorage(amount); } function boardroomGovernanceRecoverUnsupported( address _token, uint256 _amount, address _to ) external onlyOperator { IBoardroom(boardroom).governanceRecoverUnsupported(_token, _amount, _to); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"BoardroomFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"wizardAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bondAmount","type":"uint256"}],"name":"BoughtBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"bondAmount","type":"uint256"}],"name":"BurnedBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"DaoFundFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"DevFundFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"executor","type":"address"},{"indexed":false,"internalType":"uint256","name":"at","type":"uint256"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"wizardAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bondAmount","type":"uint256"}],"name":"RedeemedBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"TreasuryFunded","type":"event"},{"inputs":[],"name":"PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allocateSeigniorage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"boardroom","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"boardroomAllocateSeigniorage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"boardroomGovernanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawLockupEpochs","type":"uint256"},{"internalType":"uint256","name":"_rewardLockupEpochs","type":"uint256"}],"name":"boardroomSetLockUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"boardroomSetOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bondDepletionFloorPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bootstrapEpochs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bootstrapSupplyExpansionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wizardAmount","type":"uint256"},{"internalType":"uint256","name":"targetPrice","type":"uint256"}],"name":"buyBonds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"daoFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoFundSharedPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundSharedPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epochSupplyContractionLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"excludedFromTotalSupply","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBondDiscountRate","outputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBondPremiumRate","outputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnableWizardLeft","outputs":[{"internalType":"uint256","name":"_burnableWizardLeft","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRedeemableBonds","outputs":[{"internalType":"uint256","name":"_redeemableBonds","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWizardCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWizardPrice","outputs":[{"internalType":"uint256","name":"wizardPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWizardUpdatedPrice","outputs":[{"internalType":"uint256","name":"_wizardPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wizard","type":"address"},{"internalType":"address","name":"_wbond","type":"address"},{"internalType":"address","name":"_wshare","type":"address"},{"internalType":"address","name":"_wizardOracle","type":"address"},{"internalType":"address","name":"_boardroom","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDebtRatioPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDiscountRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxExpansionTiers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPremiumRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyContractionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyExpansionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingFactorForPayingDebt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextEpochPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"previousEpochWizardPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bondAmount","type":"uint256"},{"internalType":"uint256","name":"targetPrice","type":"uint256"}],"name":"redeemBonds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seigniorageExpansionFloorPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seigniorageSaved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_boardroom","type":"address"}],"name":"setBoardroom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bondDepletionFloorPercent","type":"uint256"}],"name":"setBondDepletionFloorPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bootstrapEpochs","type":"uint256"},{"internalType":"uint256","name":"_bootstrapSupplyExpansionPercent","type":"uint256"}],"name":"setBootstrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_discountPercent","type":"uint256"}],"name":"setDiscountPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_daoFund","type":"address"},{"internalType":"uint256","name":"_daoFundSharedPercent","type":"uint256"},{"internalType":"address","name":"_devFund","type":"address"},{"internalType":"uint256","name":"_devFundSharedPercent","type":"uint256"}],"name":"setExtraFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxDebtRatioPercent","type":"uint256"}],"name":"setMaxDebtRatioPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxDiscountRate","type":"uint256"}],"name":"setMaxDiscountRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setMaxExpansionTiersEntry","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPremiumRate","type":"uint256"}],"name":"setMaxPremiumRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyContractionPercent","type":"uint256"}],"name":"setMaxSupplyContractionPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyExpansionPercent","type":"uint256"}],"name":"setMaxSupplyExpansionPercents","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintingFactorForPayingDebt","type":"uint256"}],"name":"setMintingFactorForPayingDebt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_premiumPercent","type":"uint256"}],"name":"setPremiumPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_premiumThreshold","type":"uint256"}],"name":"setPremiumThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setSupplyTiersEntry","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wizardOracle","type":"address"}],"name":"setwizardOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wizardPriceCeiling","type":"uint256"}],"name":"setwizardPriceCeiling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supplyTiers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wbond","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wizard","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wizardOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wizardPriceCeiling","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wizardPriceOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wshare","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6001805460ff60a01b191681556000600381905560045560a060405273bf56faae5b0adc7ea356044e3a7784de1af7a97b608090815262000044916005919062000059565b503480156200005257600080fd5b50620000e4565b828054828255906000526020600020908101928215620000b1579160200282015b82811115620000b157825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200007a565b50620000bf929150620000c3565b5090565b5b80821115620000bf5780546001600160a01b0319168155600101620000c4565b6146bd80620000f46000396000f3fe608060405234801561001057600080fd5b50600436106104285760003560e01c8063874106cc1161022b578063b3ab15fb11610130578063cfc1e056116100b8578063e90b245411610087578063e90b24541461099b578063ebd3fd9b146109a3578063f14698de146109ab578063f8cd4d72146109b3578063fcb6f008146109d657610428565b8063cfc1e0561461095d578063d4b1494414610965578063d98f24951461098b578063da3ed4191461099357610428565b8063bcc81f19116100ff578063bcc81f19146108ee578063c5967c2614610928578063c8412d0214610930578063c8f987f314610938578063cecce38e1461094057610428565b8063b3ab15fb14610892578063b3ffc777146108b8578063b4d1d795146108de578063b8a878f9146108e657610428565b806395b6ef0c116101b3578063a204452b11610182578063a204452b14610809578063a3ec30fe14610826578063a8f3d35c1461085c578063aabbbd6514610864578063b06ce14a1461086c57610428565b806395b6ef0c1461076657806398b762a1146107b257806399820025146107cf578063a0487eea146107ec57610428565b8063900cf0cf116101fa578063900cf0cf1461070557806391bbfed51461070d57806392695f7014610730578063940e60641461073857806395ada4b81461075e57610428565b8063874106cc146106d05780638c664db6146106d85780638d934f74146106f55780638eece8f2146106fd57610428565b80634390d2a8116103315780635b756179116102b95780636a9645bf116102885780636a9645bf1461069357806372c054f91461069b57806378e97925146106a357806381d11eaf146106ab57806382cad838146106b357610428565b80635b756179146106555780635e02c51e1461065d57806369704b6c1461066557806369d9cde21461068b57610428565b806355ebdeef1161030057806355ebdeef14610618578063570ca73514610620578063591663e11461062857806359bf5d39146106455780635a0fc79c1461064d57610428565b80634390d2a81461059a578063499f3f19146105a257806354575af4146105bf57806354f04a11146105f557610428565b8063158ef93e116103b457806336b61eb51161038357806336b61eb514610548578063392e53cd146105505780634013a08e1461055857806340210c381461056057806340af7ba51461057d57610428565b8063158ef93e1461051457806322f832cd1461053057806329ef1919146105385780632e9c7b651461054057610428565b80630b5bcec7116103fb5780630b5bcec7146104a75780630cf60175146104c45780630db7eb0b146104cc578063118ebbf9146104d4578063154ec2db146104f757610428565b806301a937831461042d57806303be7e761461044c57806304e5c7b1146104665780630a31bc2e14610483575b600080fd5b61044a6004803603602081101561044357600080fd5b50356109de565b005b610454610a8f565b60408051918252519081900360200190f35b61044a6004803603602081101561047c57600080fd5b5035610a95565b61048b610b64565b604080516001600160a01b039092168252519081900360200190f35b61044a600480360360208110156104bd57600080fd5b5035610b73565b610454610c0f565b610454610cc1565b61044a600480360360408110156104ea57600080fd5b5080359060200135610d63565b61044a6004803603602081101561050d57600080fd5b50356113c0565b61051c611465565b604080519115158252519081900360200190f35b610454611475565b61045461147b565b610454611481565b61048b611487565b61051c611496565b6104546114a7565b61044a6004803603602081101561057657600080fd5b50356114ad565b61044a6004803603602081101561059357600080fd5b5035611567565b61048b61160c565b61044a600480360360208110156105b857600080fd5b503561161b565b61044a600480360360608110156105d557600080fd5b506001600160a01b038135811691602081013591604090910135166116b8565b61044a6004803603604081101561060b57600080fd5b50803590602001356117fe565b610454611f3d565b61048b611f43565b61044a6004803603602081101561063e57600080fd5b5035611f52565b610454611ff4565b610454611ffa565b61044a612000565b61048b6126b2565b61044a6004803603602081101561067b57600080fd5b50356001600160a01b03166126c1565b61045461272c565b610454612809565b61045461280f565b6104546128cf565b6104546128d5565b61048b600480360360208110156106c957600080fd5b50356128db565b610454612902565b61044a600480360360208110156106ee57600080fd5b5035612908565b61048b6129aa565b6104546129b9565b6104546129bf565b61044a6004803603604081101561072357600080fd5b50803590602001356129c5565b61048b612abd565b61051c6004803603604081101561074e57600080fd5b5060ff8135169060200135612acc565b610454612be8565b61044a600480360360c081101561077c57600080fd5b506001600160a01b0381358116916020810135821691604082013581169160608101358216916080820135169060a00135612c4a565b61044a600480360360208110156107c857600080fd5b5035612f37565b610454600480360360208110156107e557600080fd5b5035612f85565b6104546004803603602081101561080257600080fd5b5035612fa3565b61044a6004803603602081101561081f57600080fd5b5035612fb0565b61044a6004803603606081101561083c57600080fd5b506001600160a01b03813581169160208101359160409091013516612ffe565b6104546130c1565b61048b6130c7565b61044a6004803603602081101561088257600080fd5b50356001600160a01b03166130d6565b61044a600480360360208110156108a857600080fd5b50356001600160a01b031661316d565b61044a600480360360208110156108ce57600080fd5b50356001600160a01b03166131d8565b610454613243565b610454613249565b61044a6004803603608081101561090457600080fd5b506001600160a01b038135811691602081013591604082013516906060013561324f565b6104546133e4565b61045461340e565b610454613414565b61044a6004803603602081101561095657600080fd5b503561341a565b6104546134bb565b61051c6004803603604081101561097b57600080fd5b5060ff81351690602001356135fb565b6104546136f5565b6104546136fb565b610454613701565b610454613707565b61045461380e565b61044a600480360360408110156109c957600080fd5b5080359060200135613814565b6104546138cd565b6001546001600160a01b03163314610a275760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b600954604080516397ffe1d760e01b81526004810184905290516001600160a01b03909216916397ffe1d79160248082019260009290919082900301818387803b158015610a7457600080fd5b505af1158015610a88573d6000803e3d6000fd5b5050505050565b60215481565b6001546001600160a01b03163314610ade5760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b600c54811015610b1f5760405162461bcd60e51b815260040180806020018281038252602c8152602001806143b4602c913960400191505060405180910390fd5b6096811115610b5f5760405162461bcd60e51b81526004018080602001828103825260248152602001806143e06024913960400191505060405180910390fd5b601b55565b6008546001600160a01b031681565b6001546001600160a01b03163314610bbc5760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b600a8110158015610bcf57506103e88111155b610c0a5760405162461bcd60e51b81526004018080602001828103825260288152602001806144c96028913960400191505060405180910390fd5b601055565b600080610c1a61272c565b9050600b548111610cbd57601a54610c3657600b549150610cbd565b6000610c5f82610c59670de0b6b3a7640000600b546138d390919063ffffffff16565b90613933565b90506000610c8a612710610c59601a54610c84600b548761399a90919063ffffffff16565b906138d3565b600b54909150610c9a90826139f7565b93506000601854118015610caf575060185484115b15610cba5760185493505b50505b5090565b600080610ccc61272c565b9050600c54811115610cbd576000610cf66064610c59601b54600b546138d390919063ffffffff16565b9050808210610d58576000610d22612710610c59601c54610c84600b548861399a90919063ffffffff16565b600b54909150610d3290826139f7565b93506000601954118015610d47575060195484115b15610d525760195493505b50610d5e565b600b5492505b505090565b610d6b613a51565b15610da75760405162461bcd60e51b81526004018080602001828103825260268152602001806145a06026913960400191505060405180910390fd5b610daf613a70565b15610deb5760405162461bcd60e51b81526004018080602001828103825260268152602001806145a06026913960400191505060405180910390fd5b600254421015610e3e576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610e8257600080fd5b505afa158015610e96573d6000803e3d6000fd5b505050506040513d6020811015610eac57600080fd5b50516001600160a01b0316148015610f3a57506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610f0357600080fd5b505afa158015610f17573d6000803e3d6000fd5b505050506040513d6020811015610f2d57600080fd5b50516001600160a01b0316145b8015610fbc57506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610f8557600080fd5b505afa158015610f99573d6000803e3d6000fd5b505050506040513d6020811015610faf57600080fd5b50516001600160a01b0316145b801561103e57506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561100757600080fd5b505afa15801561101b573d6000803e3d6000fd5b505050506040513d602081101561103157600080fd5b50516001600160a01b0316145b61108f576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b600082116110ce5760405162461bcd60e51b815260040180806020018281038252602e815260200180614386602e913960400191505060405180910390fd5b60006110d861272c565b905081811461112e576040805162461bcd60e51b815260206004820152601c60248201527f54726561737572793a2057495a415244207072696365206d6f76656400000000604482015290519081900360640190fd5b600c54811161116e5760405162461bcd60e51b81526004018080602001828103825260348152602001806145c66034913960400191505060405180910390fd5b6000611178610cc1565b9050600081116111cf576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e6420726174650000000000604482015290519081900360640190fd5b60006111e767016345785d8a0000610c5987856138d3565b600654604080516370a0823160e01b8152306004820152905192935083926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561123757600080fd5b505afa15801561124b573d6000803e3d6000fd5b505050506040513d602081101561126157600080fd5b505110156112a05760405162461bcd60e51b815260040180806020018281038252602581526020018061442a6025913960400191505060405180910390fd5b6112b86112af600d5483613a8f565b600d549061399a565b600d556007546040805163079cc67960e41b81523360048201526024810188905290516001600160a01b03909216916379cc67909160448082019260009290919082900301818387803b15801561130e57600080fd5b505af1158015611322573d6000803e3d6000fd5b505060065461133e92506001600160a01b031690503383613aa5565b611346613af7565b6040805182815260208101879052815133927f51e0d16595cabc591e64da08e45bb223577e5b9a39cd947b4ddc3472b2dd8878928290030190a25050436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055505050565b6001546001600160a01b031633146114095760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b614e20811115611460576040805162461bcd60e51b815260206004820152601d60248201527f5f646973636f756e7450657263656e74206973206f7665722032303025000000604482015290519081900360640190fd5b601a55565b600154600160a01b900460ff1681565b60125481565b601a5481565b60195481565b600a546001600160a01b031681565b600154600160a01b900460ff165b90565b601d5481565b6001546001600160a01b031633146114f65760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b600b548110158015611522575061151e6064610c596078600b546138d390919063ffffffff16565b8111155b611562576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b600c55565b6001546001600160a01b031633146115b05760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b614e20811115611607576040805162461bcd60e51b815260206004820152601c60248201527f5f7072656d69756d50657263656e74206973206f766572203230302500000000604482015290519081900360640190fd5b601c55565b6020546001600160a01b031681565b6001546001600160a01b031633146116645760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b61271081101580156116785750614e208111155b6116b35760405162461bcd60e51b81526004018080602001828103825260298152602001806144a06029913960400191505060405180910390fd5b601d55565b6001546001600160a01b031633146117015760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b6006546001600160a01b038481169116141561174d576040805162461bcd60e51b81526020600482015260066024820152651dda5e985c9960d21b604482015290519081900360640190fd5b6007546001600160a01b0384811691161415611799576040805162461bcd60e51b81526020600480830191909152602482015263189bdb9960e21b604482015290519081900360640190fd5b6008546001600160a01b03848116911614156117e5576040805162461bcd60e51b815260206004820152600660248201526577736861726560d01b604482015290519081900360640190fd5b6117f96001600160a01b0384168284613aa5565b505050565b611806613a51565b156118425760405162461bcd60e51b81526004018080602001828103825260268152602001806145a06026913960400191505060405180910390fd5b61184a613a70565b156118865760405162461bcd60e51b81526004018080602001828103825260268152602001806145a06026913960400191505060405180910390fd5b6002544210156118d9576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561191d57600080fd5b505afa158015611931573d6000803e3d6000fd5b505050506040513d602081101561194757600080fd5b50516001600160a01b03161480156119d557506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561199e57600080fd5b505afa1580156119b2573d6000803e3d6000fd5b505050506040513d60208110156119c857600080fd5b50516001600160a01b0316145b8015611a5757506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611a2057600080fd5b505afa158015611a34573d6000803e3d6000fd5b505050506040513d6020811015611a4a57600080fd5b50516001600160a01b0316145b8015611ad957506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611aa257600080fd5b505afa158015611ab6573d6000803e3d6000fd5b505050506040513d6020811015611acc57600080fd5b50516001600160a01b0316145b611b2a576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b60008211611b695760405162461bcd60e51b81526004018080602001828103825260308152602001806144706030913960400191505060405180910390fd5b6000611b7361272c565b9050818114611bc9576040805162461bcd60e51b815260206004820152601c60248201527f54726561737572793a2057495a415244207072696365206d6f76656400000000604482015290519081900360640190fd5b600b548110611c095760405162461bcd60e51b81526004018080602001828103825260348152602001806145c66034913960400191505060405180910390fd5b600454831115611c4a5760405162461bcd60e51b815260040180806020018281038252602a815260200180614630602a913960400191505060405180910390fd5b6000611c54610c0f565b905060008111611cab576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e6420726174650000000000604482015290519081900360640190fd5b6000611cc367016345785d8a0000610c5987856138d3565b90506000611ccf6134bb565b90506000611d5783600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611d2557600080fd5b505afa158015611d39573d6000803e3d6000fd5b505050506040513d6020811015611d4f57600080fd5b5051906139f7565b9050611d74612710610c59601454856138d390919063ffffffff16565b811115611dbe576040805162461bcd60e51b81526020600482015260136024820152726f766572206d6178206465627420726174696f60681b604482015290519081900360640190fd5b6006546040805163079cc67960e41b8152336004820152602481018a905290516001600160a01b03909216916379cc67909160448082019260009290919082900301818387803b158015611e1157600080fd5b505af1158015611e25573d6000803e3d6000fd5b5050600754604080516340c10f1960e01b81523360048201526024810188905290516001600160a01b0390921693506340c10f1992506044808201926020929091908290030181600087803b158015611e7d57600080fd5b505af1158015611e91573d6000803e3d6000fd5b505050506040513d6020811015611ea757600080fd5b5050600454611eb6908861399a565b600455611ec1613af7565b6040805188815260208101859052815133927f73017f1b70789e2e66759eeb3c7ec11f59e6eedb55d921cfaec5410dd42a4799928290030190a25050436000908152602081815260408083203284529091528082208054600160ff19918216811790925533845291909220805490911690911790555050505050565b601f5481565b6001546001600160a01b031681565b6001546001600160a01b03163314611f9b5760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b6103e88110158015611faf57506127108111155b611fef576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601455565b600d5490565b600d5481565b612008613a51565b156120445760405162461bcd60e51b81526004018080602001828103825260268152602001806145a06026913960400191505060405180910390fd5b61204c613a70565b156120885760405162461bcd60e51b81526004018080602001828103825260268152602001806145a06026913960400191505060405180910390fd5b6002544210156120db576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6120e36133e4565b421015612137576040805162461bcd60e51b815260206004820152601860248201527f54726561737572793a206e6f74206f70656e6564207965740000000000000000604482015290519081900360640190fd5b6006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561217b57600080fd5b505afa15801561218f573d6000803e3d6000fd5b505050506040513d60208110156121a557600080fd5b50516001600160a01b031614801561223357506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b1580156121fc57600080fd5b505afa158015612210573d6000803e3d6000fd5b505050506040513d602081101561222657600080fd5b50516001600160a01b0316145b80156122b557506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561227e57600080fd5b505afa158015612292573d6000803e3d6000fd5b505050506040513d60208110156122a857600080fd5b50516001600160a01b0316145b801561233757506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561230057600080fd5b505afa158015612314573d6000803e3d6000fd5b505050506040513d602081101561232a57600080fd5b50516001600160a01b0316145b612388576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b612390613af7565b61239861272c565b601755600d546000906123b3906123ad6134bb565b9061399a565b905060155460035410156123e9576123e46123df612710610c59601654856138d390919063ffffffff16565b613b5b565b612636565b600c54601754111561263657600754604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561243a57600080fd5b505afa15801561244e573d6000803e3d6000fd5b505050506040513d602081101561246457600080fd5b5051600b5460175491925060009161247b9161399a565b90506000806000612495655af3107a4000610c8488613e9b565b9050808411156124a3578093505b6124be612710610c59601154886138d390919063ffffffff16565b600d54106124e3576124dc67016345785d8a0000610c5988876138d3565b915061254f565b60006124fb67016345785d8a0000610c5989886138d3565b9050612518612710610c59601254846138d390919063ffffffff16565b9250612524818461399a565b601d549094501561254d5761254a612710610c59601d54876138d390919063ffffffff16565b93505b505b811561255e5761255e82613b5b565b821561263057600d5461257190846139f7565b600d55600654604080516340c10f1960e01b81523060048201526024810186905290516001600160a01b03909216916340c10f19916044808201926020929091908290030181600087803b1580156125c857600080fd5b505af11580156125dc573d6000803e3d6000fd5b505050506040513d60208110156125f257600080fd5b5050604080514281526020810185905281517ff705142bf09f04297640495ddf7c59b7fd6f51894c5aea9602d631cf05f0efc2929181900390910190a15b50505050505b506003546126459060016139f7565b600355600c5461265361272c565b116126715761266c612710610c59601354610c846134bb565b612674565b60005b600455436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055565b6009546001600160a01b031681565b6001546001600160a01b0316331461270a5760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a5460065460408051633ddac95360e01b81526001600160a01b039283166004820152670de0b6b3a7640000602482015290516000939290921691633ddac95391604480820192602092909190829003018186803b15801561278e57600080fd5b505afa9250505080156127b357506040513d60208110156127ae57600080fd5b505160015b6127ee5760405162461bcd60e51b815260040180806020018281038252603881526020018061451a6038913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff1690506114a4565b600b5481565b60008061281a61272c565b9050600c54811115610cbd57600654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561287157600080fd5b505afa158015612885573d6000803e3d6000fd5b505050506040513d602081101561289b57600080fd5b5051905060006128a9610cc1565b90508015610cba576128c781610c5984670de0b6b3a76400006138d3565b935050505090565b60025481565b60115481565b600581815481106128e857fe5b6000918252602090912001546001600160a01b0316905081565b60165481565b6001546001600160a01b031633146129515760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b6101f4811015801561296557506127108111155b6129a5576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601155565b601e546001600160a01b031681565b60175481565b60035481565b6001546001600160a01b03163314612a0e5760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b6078821115612a64576040805162461bcd60e51b815260206004820152601e60248201527f5f626f6f74737472617045706f6368733a206f7574206f662072616e67650000604482015290519081900360640190fd5b60648110158015612a7757506103e88111155b612ab25760405162461bcd60e51b815260040180806020018281038252602e81526020018061465a602e913960400191505060405180910390fd5b601591909155601655565b6007546001600160a01b031681565b6001546000906001600160a01b03163314612b185760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b60098360ff1610612b5a5760405162461bcd60e51b81526004018080602001828103825260298152602001806144f16029913960400191505060405180910390fd5b60ff831615612b8c57600e6001840360ff1681548110612b7657fe5b90600052602060002001548211612b8c57600080fd5b60088360ff161015612bc157600e8360010160ff1681548110612bab57fe5b90600052602060002001548210612bc157600080fd5b81600e8460ff1681548110612bd257fe5b6000918252602090912001555060015b92915050565b600a5460065460408051630d01142560e31b81526001600160a01b039283166004820152670de0b6b3a7640000602482015290516000939290921691636808a12891604480820192602092909190829003018186803b15801561278e57600080fd5b600154600160a01b900460ff1615612ca9576040805162461bcd60e51b815260206004820152601d60248201527f54726561737572793a20616c726561647920696e697469616c697a6564000000604482015290519081900360640190fd5b600680546001600160a01b03199081166001600160a01b0389811691909117909255600780548216888416179055600880548216878416179055600a8054821686841617905560098054909116918416919091179055600281905567016345785d8a0000600b819055612d2490606490610c599060656138d3565b600c556040805161012081018252600081526969e10de76676d0800000602082015269d3c21bcecceda1000000918101919091526a013da329b633647180000060608201526a01a784379d99db4200000060808201526a0422ca8b0a00a42500000060a08201526a084595161401484a00000060c08201526a108b2a2c2802909400000060e08201526a295be96e64066972000000610100820152612dcd90600e9060096142d9565b5060408051610120810182526101c28152610190602082015261015e9181019190915261012c606082015260fa608082015260c860a0820152609660c0820152607d60e08201526064610100820152612e2a90600f90600961432f565b50610190601055612710601155610dac601281905561012c601355601455606e601b55611b58601c9081556015556101c2601655600654604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015612ea957600080fd5b505afa158015612ebd573d6000803e3d6000fd5b505050506040513d6020811015612ed357600080fd5b5051600d55600180546001600160a01b031960ff60a01b19909116600160a01b1716339081179091556040805143815290517f25ff68dd81b34665b5ba7e553ee5511bf6812e12adb4a7e2c0d9e26b3099ce799181900360200190a2505050505050565b6001546001600160a01b03163314612f805760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b601855565b600e8181548110612f9257fe5b600091825260209091200154905081565b600f8181548110612f9257fe5b6001546001600160a01b03163314612ff95760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b601955565b6001546001600160a01b031633146130475760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b60095460408051631515d6bd60e21b81526001600160a01b038681166004830152602482018690528481166044830152915191909216916354575af491606480830192600092919082900301818387803b1580156130a457600080fd5b505af11580156130b8573d6000803e3d6000fd5b50505050505050565b600c5481565b6006546001600160a01b031681565b6001546001600160a01b0316331461311f5760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b6009546040805163b3ab15fb60e01b81526001600160a01b0384811660048301529151919092169163b3ab15fb91602480830192600092919082900301818387803b158015610a7457600080fd5b6001546001600160a01b031633146131b65760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031633146132215760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b61546081565b60185481565b6001546001600160a01b031633146132985760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b6001600160a01b0384166132dc576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b610bb8831115613322576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b6001600160a01b038216613366576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b6103e88111156133ac576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601e80546001600160a01b03199081166001600160a01b0396871617909155601f939093556020805490931691909316179055602155565b60006134096134006154606003546138d390919063ffffffff16565b600254906139f7565b905090565b601c5481565b601b5481565b6001546001600160a01b031633146134635760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b6064811015801561347657506105dc8111155b6134b6576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601355565b600654604080516318160ddd60e01b815290516000926001600160a01b031691839183916318160ddd916004808301926020929190829003018186803b15801561350457600080fd5b505afa158015613518573d6000803e3d6000fd5b505050506040513d602081101561352e57600080fd5b505190506000805b60055460ff821610156135f0576135e6846001600160a01b03166370a0823160058460ff168154811061356557fe5b60009182526020918290200154604080516001600160e01b031960e086901b1681526001600160a01b0390921660048301525160248083019392829003018186803b1580156135b357600080fd5b505afa1580156135c7573d6000803e3d6000fd5b505050506040513d60208110156135dd57600080fd5b505183906139f7565b9150600101613536565b506128c7828261399a565b6001546000906001600160a01b031633146136475760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b60098360ff16106136895760405162461bcd60e51b81526004018080602001828103825260298152602001806144f16029913960400191505060405180910390fd5b600a821015801561369c57506103e88211155b6136e4576040805162461bcd60e51b81526020600482015260146024820152735f76616c75653a206f7574206f662072616e676560601b604482015290519081900360640190fd5b81600f8460ff1681548110612bd257fe5b60105481565b60145481565b60135481565b60008061371261272c565b9050600b548111610cbd5760006137276134bb565b90506000613746612710610c59601454856138d390919063ffffffff16565b90506000600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561379857600080fd5b505afa1580156137ac573d6000803e3d6000fd5b505050506040513d60208110156137c257600080fd5b50519050808211156138075760006137da838361399a565b905060006137f4670de0b6b3a7640000610c5984896138d3565b905061380260045482613a8f565b965050505b5050505090565b60155481565b6001546001600160a01b0316331461385d5760405162461bcd60e51b81526004018080602001828103825260248152602001806145526024913960400191505060405180910390fd5b60095460408051632ffaaa0960e01b8152600481018590526024810184905290516001600160a01b0390921691632ffaaa099160448082019260009290919082900301818387803b1580156138b157600080fd5b505af11580156138c5573d6000803e3d6000fd5b505050505050565b60045481565b6000826138e257506000612be2565b828202828482816138ef57fe5b041461392c5760405162461bcd60e51b815260040180806020018281038252602181526020018061444f6021913960400191505060405180910390fd5b9392505050565b6000808211613989576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161399257fe5b049392505050565b6000828211156139f1576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008282018381101561392c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b4360009081526020818152604080832032845290915290205460ff1690565b4360009081526020818152604080832033845290915290205460ff1690565b6000818310613a9e578161392c565b5090919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526117f9908490613ef8565b600a60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613b4757600080fd5b505af1925050508015613b58575060015b50565b600654604080516340c10f1960e01b81523060048201526024810184905290516001600160a01b03909216916340c10f19916044808201926020929091908290030181600087803b158015613baf57600080fd5b505af1158015613bc3573d6000803e3d6000fd5b505050506040513d6020811015613bd957600080fd5b5050601f5460009015613cc457613c01612710610c59601f54856138d390919063ffffffff16565b600654601e546040805163a9059cbb60e01b81526001600160a01b03928316600482015260248101859052905193945091169163a9059cbb916044808201926020929091908290030181600087803b158015613c5c57600080fd5b505af1158015613c70573d6000803e3d6000fd5b505050506040513d6020811015613c8657600080fd5b5050604080514281526020810183905281517fcb3f34aaa3445b461e6da5492dc89e5c257a59fa598131f3b6bbc97a3638e409929181900390910190a15b60215460009015613daa57613cea612710610c59602154866138d390919063ffffffff16565b600654602080546040805163a9059cbb60e01b81526001600160a01b03928316600482015260248101869052905194955092169263a9059cbb9260448082019392918290030181600087803b158015613d4257600080fd5b505af1158015613d56573d6000803e3d6000fd5b505050506040513d6020811015613d6c57600080fd5b5050604080514281526020810183905281517fdc8b715b18523e58b7fd0da53259dfa91efd91df4a854d94b136e3333a3b9395929181900390910190a15b613db8816123ad858561399a565b600954600654919450613dd9916001600160a01b0390811691166000613fa9565b600954600654613df6916001600160a01b03918216911685613fa9565b600954604080516397ffe1d760e01b81526004810186905290516001600160a01b03909216916397ffe1d79160248082019260009290919082900301818387803b158015613e4357600080fd5b505af1158015613e57573d6000803e3d6000fd5b5050604080514281526020810187905281517f03ca7276ab7799bf73fb79d27ff0610cd7049574f2508ef8445162833d439aea9450908190039091019150a1505050565b600060085b600e8160ff1681548110613eb057fe5b90600052602060002001548310613ee557600f8160ff1681548110613ed157fe5b600091825260209091200154601055613eee565b60001901613ea0565b5050601054919050565b6060613f4d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166140bc9092919063ffffffff16565b8051909150156117f957808060200190516020811015613f6c57600080fd5b50516117f95760405162461bcd60e51b815260040180806020018281038252602a815260200180614576602a913960400191505060405180910390fd5b80158061402f575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561400157600080fd5b505afa158015614015573d6000803e3d6000fd5b505050506040513d602081101561402b57600080fd5b5051155b61406a5760405162461bcd60e51b81526004018080602001828103825260368152602001806145fa6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526117f9908490613ef8565b60606140cb84846000856140d3565b949350505050565b6060824710156141145760405162461bcd60e51b81526004018080602001828103825260268152602001806144046026913960400191505060405180910390fd5b61411d8561422f565b61416e576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106141ad5780518252601f19909201916020918201910161418e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461420f576040519150601f19603f3d011682016040523d82523d6000602084013e614214565b606091505b5091509150614224828286614235565b979650505050505050565b3b151590565b6060831561424457508161392c565b8251156142545782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561429e578181015183820152602001614286565b50505050905090810190601f1680156142cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b828054828255906000526020600020908101928215614323579160200282015b8281111561432357825182906affffffffffffffffffffff169055916020019190600101906142f9565b50610cbd929150614370565b828054828255906000526020600020908101928215614323579160200282015b82811115614323578251829061ffff1690559160200191906001019061434f565b5b80821115610cbd576000815560010161437156fe54726561737572793a2063616e6e6f742072656465656d20626f6e64732077697468207a65726f20616d6f756e745f7072656d69756d5468726573686f6c6420657863656564732077697a61726450726963654365696c696e675f7072656d69756d5468726573686f6c6420697320686967686572207468616e20312e35416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c54726561737572793a20747265617375727920686173206e6f206d6f726520627564676574536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7754726561737572793a2063616e6e6f7420707572636861736520626f6e64732077697468207a65726f20616d6f756e745f6d696e74696e67466163746f72466f72506179696e67446562743a206f7574206f662072616e67655f6d6178537570706c79457870616e73696f6e50657263656e743a206f7574206f662072616e6765496e6465782068617320746f206265206c6f776572207468616e20636f756e74206f6620746965727354726561737572793a206661696c656420746f20636f6e73756c742057495a4152442070726963652066726f6d20746865206f7261636c6554726561737572793a2063616c6c6572206973206e6f7420746865206f70657261746f725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564436f6e747261637447756172643a206f6e6520626c6f636b2c206f6e652066756e6374696f6e54726561737572793a2077697a6172645072696365206e6f7420656c696769626c6520666f7220626f6e642070757263686173655361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636554726561737572793a206e6f7420656e6f75676820626f6e64206c65667420746f2070757263686173655f626f6f747374726170537570706c79457870616e73696f6e50657263656e743a206f7574206f662072616e6765a2646970667358221220b454ee476f0026e978e24911da3f9358ff5979ac4c128e9a20a92893d208fb7964736f6c634300060c0033
Deployed ByteCode Sourcemap
33515:22709:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55829:144;;;;;;;;;;;;;;;;-1:-1:-1;55829:144:0;;:::i;:::-;;35556:35;;;:::i;:::-;;;;;;;;;;;;;;;;47283:324;;;;;;;;;;;;;;;;-1:-1:-1;47283:324:0;;:::i;34301:21::-;;;:::i;:::-;;;;-1:-1:-1;;;;;34301:21:0;;;;;;;;;;;;;;43556:319;;;;;;;;;;;;;;;;-1:-1:-1;43556:319:0;;:::i;39628:743::-;;;:::i;40379:797::-;;;:::i;50165:1122::-;;;;;;;;;;;;;;;;-1:-1:-1;50165:1122:0;;;;;;;:::i;47068:207::-;;;;;;;;;;;;;;;;-1:-1:-1;47068:207:0;;:::i;33873:31::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;34702:47;;;:::i;35253:30::-;;;:::i;35194:29::-;;;:::i;34362:27::-;;;:::i;37425:89::-;;;:::i;35364:41::-;;;:::i;43259:289::-;;;;;;;;;;;;;;;;-1:-1:-1;43259:289:0;;:::i;47615:201::-;;;;;;;;;;;;;;;;-1:-1:-1;47615:201:0;;:::i;35527:22::-;;;:::i;47824:330::-;;;;;;;;;;;;;;;;-1:-1:-1;47824:330:0;;:::i;55041:426::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;55041:426:0;;;;;;;;;;;;;;;;;:::i;48810:1347::-;;;;;;;;;;;;;;;;-1:-1:-1;48810:1347:0;;;;;;;:::i;35483:35::-;;;:::i;33827:23::-;;;:::i;45406:257::-;;;;;;;;;;;;;;;;-1:-1:-1;45406:257:0;;:::i;38321:94::-;;;:::i;34490:31::-;;;:::i;52726:2307::-;;;:::i;34331:24::-;;;:::i;43134:117::-;;;;;;;;;;;;;;;;-1:-1:-1;43134:117:0;-1:-1:-1;;;;;43134:117:0;;:::i;37673:306::-;;;:::i;34412:29::-;;;:::i;39180:440::-;;;:::i;33927:24::-;;;:::i;34655:40::-;;;:::i;34080:133::-;;;;;;;;;;;;;;;;-1:-1:-1;34080:133:0;;:::i;34965:46::-;;;:::i;44796:291::-;;;;;;;;;;;;;;;;-1:-1:-1;44796:291:0;;:::i;35454:22::-;;;:::i;35087:39::-;;;:::i;33958:24::-;;;:::i;45671:499::-;;;;;;;;;;;;;;;;-1:-1:-1;45671:499:0;;;;;;;:::i;34274:20::-;;;:::i;43883:492::-;;;;;;;;;;;;;;;;-1:-1:-1;43883:492:0;;;;;;;;;:::i;37987:311::-;;;:::i;41230:1674::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41230:1674:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;46798:129::-;;;;;;;;;;;;;;;;-1:-1:-1;46798:129:0;;:::i;34530:28::-;;;;;;;;;;;;;;;;-1:-1:-1;34530:28:0;;:::i;34565:34::-;;;;;;;;;;;;;;;;-1:-1:-1;34565:34:0;;:::i;46935:125::-;;;;;;;;;;;;;;;;-1:-1:-1;46935:125:0;;:::i;55981:240::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;55981:240:0;;;;;;;;;;;;;;;;;:::i;34448:33::-;;;:::i;34246:21::-;;;:::i;55475:134::-;;;;;;;;;;;;;;;;-1:-1:-1;55475:134:0;-1:-1:-1;;;;;55475:134:0;;:::i;42912:101::-;;;;;;;;;;;;;;;;-1:-1:-1;42912:101:0;-1:-1:-1;;;;;42912:101:0;;:::i;43021:105::-;;;;;;;;;;;;;;;;-1:-1:-1;43021:105:0;-1:-1:-1;;;;;43021:105:0;;:::i;33708:40::-;;;:::i;35133:30::-;;;:::i;46178:612::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;46178:612:0;;;;;;;;;;;;;;;;;;;;:::i;37536:114::-;;;:::i;35328:29::-;;;:::i;35290:31::-;;;:::i;45095:303::-;;;;;;;;;;;;;;;;-1:-1:-1;45095:303:0;;:::i;48326:476::-;;;:::i;44383:405::-;;;;;;;;;;;;;;;;-1:-1:-1;44383:405:0;;;;;;;;;:::i;34608:40::-;;;:::i;34805:34::-;;;:::i;34756:42::-;;;:::i;38423:749::-;;;:::i;34928:30::-;;;:::i;55617:204::-;;;;;;;;;;;;;;;;-1:-1:-1;55617:204:0;;;;;;;:::i;33989:45::-;;;:::i;55829:144::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55927:9:::1;::::0;55916:49:::1;::::0;;-1:-1:-1;;;55916:49:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;55927:9:0;;::::1;::::0;55916:41:::1;::::0;:49;;;;;55927:9:::1;::::0;55916:49;;;;;;;;55927:9;;55916:49;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55829:144:::0;:::o;35556:35::-;;;;:::o;47283:324::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47401:18:::1;;47380:17;:39;;47372:96;;;;-1:-1:-1::0;;;47372:96:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47508:3;47487:17;:24;;47479:73;;;;-1:-1:-1::0;;;47479:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47563:16;:36:::0;47283:324::o;34301:21::-;;;-1:-1:-1;;;;;34301:21:0;;:::o;43556:319::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43702:2:::1;43672:26;:32;;:70;;;;;43738:4;43708:26;:34;;43672:70;43664:123;;;;-1:-1:-1::0;;;43664:123:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43813:25;:54:::0;43556:319::o;39628:743::-;39680:13;39706:20;39729:16;:14;:16::i;:::-;39706:39;;39776:14;;39760:12;:30;39756:608;;39811:15;;39807:546;;39892:14;;39884:22;;39807:546;;;39947:19;39969:42;39998:12;39969:24;39988:4;39969:14;;:18;;:24;;;;:::i;:::-;:28;;:42::i;:::-;39947:64;;40050:23;40076:63;40133:5;40076:52;40112:15;;40076:31;40092:14;;40076:11;:15;;:31;;;;:::i;:::-;:35;;:52::i;:63::-;40166:14;;40050:89;;-1:-1:-1;40166:35:0;;40050:89;40166:18;:35::i;:::-;40158:43;;40242:1;40224:15;;:19;:46;;;;;40255:15;;40247:5;:23;40224:46;40220:118;;;40303:15;;40295:23;;40220:118;39807:546;;;39628:743;;:::o;40379:797::-;40430:13;40456:20;40479:16;:14;:16::i;:::-;40456:39;;40525:18;;40510:12;:33;40506:663;;;40560:36;40599:45;40640:3;40599:36;40618:16;;40599:14;;:18;;:36;;;;:::i;:45::-;40560:84;;40679:28;40663:12;:44;40659:499;;40760:22;40785:63;40842:5;40785:52;40822:14;;40785:32;40802:14;;40785:12;:16;;:32;;;;:::i;:63::-;40875:14;;40760:88;;-1:-1:-1;40875:34:0;;40760:88;40875:18;:34::i;:::-;40867:42;;40949:1;40932:14;;:18;:44;;;;;40962:14;;40954:5;:22;40932:44;40928:115;;;41009:14;;41001:22;;40928:115;40659:499;;;;41128:14;;41120:22;;40659:499;40506:663;40379:797;;:::o;50165:1122::-;28401:28;:26;:28::i;:::-;28400:29;28392:80;;;;-1:-1:-1;;;28392:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28492:28;:26;:28::i;:::-;28491:29;28483:80;;;;-1:-1:-1;;;28483:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36481:9:::1;;36474:3;:16;;36466:54;;;::::0;;-1:-1:-1;;;36466:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;36466:54:0;;;;;;;;;;;;;::::1;;36930:6:::2;::::0;36918:30:::2;::::0;;-1:-1:-1;;;36918:30:0;;;;36960:4:::2;::::0;-1:-1:-1;;;;;36930:6:0::2;::::0;36918:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;36930:6;36918:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;36918:30:0;-1:-1:-1;;;;;36918:47:0::2;;:114:::0;::::2;;;-1:-1:-1::0;36998:5:0::2;::::0;36986:29:::2;::::0;;-1:-1:-1;;;36986:29:0;;;;37027:4:::2;::::0;-1:-1:-1;;;;;36998:5:0::2;::::0;36986:27:::2;::::0;:29:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;36998:5;36986:29;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;36986:29:0;-1:-1:-1;;;;;36986:46:0::2;;36918:114;:182;;;;-1:-1:-1::0;37065:6:0::2;::::0;37053:30:::2;::::0;;-1:-1:-1;;;37053:30:0;;;;37095:4:::2;::::0;-1:-1:-1;;;;;37065:6:0::2;::::0;37053:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;37065:6;37053:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;37053:30:0;-1:-1:-1;;;;;37053:47:0::2;;36918:182;:250;;;;-1:-1:-1::0;37130:9:0::2;::::0;37121:30:::2;::::0;;-1:-1:-1;;;37121:30:0;;;;37163:4:::2;::::0;-1:-1:-1;;;;;37130:9:0::2;::::0;37121:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;37130:9;37121:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;37121:30:0;-1:-1:-1;;;;;37121:47:0::2;;36918:250;36896:330;;;::::0;;-1:-1:-1;;;36896:330:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;50312:1:::3;50298:11;:15;50290:74;;;;-1:-1:-1::0;;;50290:74:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50377:19;50399:16;:14;:16::i;:::-;50377:38;;50449:11;50434;:26;50426:67;;;::::0;;-1:-1:-1;;;50426:67:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;50540:18;;50526:11;:32;50504:151;;;;-1:-1:-1::0;;;50504:151:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50668:13;50684:20;:18;:20::i;:::-;50668:36;;50731:1;50723:5;:9;50715:49;;;::::0;;-1:-1:-1;;;50715:49:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;50777:21;50801:32;50828:4;50801:22;:11:::0;50817:5;50801:15:::3;:22::i;:32::-;50859:6;::::0;50852:39:::3;::::0;;-1:-1:-1;;;50852:39:0;;50885:4:::3;50852:39;::::0;::::3;::::0;;;50777:56;;-1:-1:-1;50777:56:0;;-1:-1:-1;;;;;50859:6:0;;::::3;::::0;50852:24:::3;::::0;:39;;;;;::::3;::::0;;;;;;;;;50859:6;50852:39;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;50852:39:0;:56:::3;;50844:106;;;;-1:-1:-1::0;;;50844:106:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50982:63;51003:41;51012:16;;51030:13;51003:8;:41::i;:::-;50982:16;::::0;;:20:::3;:63::i;:::-;50963:16;:82:::0;51070:5:::3;::::0;51058:52:::3;::::0;;-1:-1:-1;;;51058:52:0;;51086:10:::3;51058:52;::::0;::::3;::::0;;;;;;;;;-1:-1:-1;;;;;51070:5:0;;::::3;::::0;51058:27:::3;::::0;:52;;;;;51070:5:::3;::::0;51058:52;;;;;;;;51070:5;;51058:52;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;-1:-1:-1::0;;51128:6:0::3;::::0;51121:54:::3;::::0;-1:-1:-1;;;;;;51128:6:0::3;::::0;-1:-1:-1;51149:10:0::3;51161:13:::0;51121:27:::3;:54::i;:::-;51188:20;:18;:20::i;:::-;51226:53;::::0;;;;;::::3;::::0;::::3;::::0;;;;;51240:10:::3;::::0;51226:53:::3;::::0;;;;;;::::3;-1:-1:-1::0;;28598:12:0;28590:7;:21;;;;;;;;;;;28612:9;28590:32;;;;;;;;:39;;28625:4;-1:-1:-1;;28590:39:0;;;;;;;;28662:10;28640:33;;;;;;:40;;;;;;;;;;-1:-1:-1;;;50165:1122:0:o;47068:207::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47183:5:::1;47163:16;:25;;47155:67;;;::::0;;-1:-1:-1;;;47155:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47233:15;:34:::0;47068:207::o;33873:31::-;;;-1:-1:-1;;;33873:31:0;;;;;:::o;34702:47::-;;;;:::o;35253:30::-;;;;:::o;35194:29::-;;;;:::o;34362:27::-;;;-1:-1:-1;;;;;34362:27:0;;:::o;37425:89::-;37495:11;;-1:-1:-1;;;37495:11:0;;;;37425:89;;:::o;35364:41::-;;;;:::o;43259:289::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43383:14:::1;;43360:19;:37;;:96;;;;;43424:32;43452:3;43424:23;43443:3;43424:14;;:18;;:23;;;;:::i;:32::-;43401:19;:55;;43360:96;43352:121;;;::::0;;-1:-1:-1;;;43352:121:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;43352:121:0;;;;;;;;;;;;;::::1;;43500:18;:40:::0;43259:289::o;47615:201::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47727:5:::1;47708:15;:24;;47700:65;;;::::0;;-1:-1:-1;;;47700:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47776:14;:32:::0;47615:201::o;35527:22::-;;;-1:-1:-1;;;;;35527:22:0;;:::o;47824:330::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47972:5:::1;47941:27;:36;;:76;;;;;48012:5;47981:27;:36;;47941:76;47933:130;;;;-1:-1:-1::0;;;47933:130:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48090:26;:56:::0;47824:330::o;55041:426::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55272:6:::1;::::0;-1:-1:-1;;;;;55245:34:0;;::::1;55272:6:::0;::::1;55245:34;;55237:53;;;::::0;;-1:-1:-1;;;55237:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;55237:53:0;;;;;;;;;;;;;::::1;;55336:5;::::0;-1:-1:-1;;;;;55309:33:0;;::::1;55336:5:::0;::::1;55309:33;;55301:50;;;::::0;;-1:-1:-1;;;55301:50:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;55301:50:0;;;;;;;;;;;;;::::1;;55397:6;::::0;-1:-1:-1;;;;;55370:34:0;;::::1;55397:6:::0;::::1;55370:34;;55362:53;;;::::0;;-1:-1:-1;;;55362:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;55362:53:0;;;;;;;;;;;;;::::1;;55426:33;-1:-1:-1::0;;;;;55426:19:0;::::1;55446:3:::0;55451:7;55426:19:::1;:33::i;:::-;55041:426:::0;;;:::o;48810:1347::-;28401:28;:26;:28::i;:::-;28400:29;28392:80;;;;-1:-1:-1;;;28392:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28492:28;:26;:28::i;:::-;28491:29;28483:80;;;;-1:-1:-1;;;28483:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36481:9:::1;;36474:3;:16;;36466:54;;;::::0;;-1:-1:-1;;;36466:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;36466:54:0;;;;;;;;;;;;;::::1;;36930:6:::2;::::0;36918:30:::2;::::0;;-1:-1:-1;;;36918:30:0;;;;36960:4:::2;::::0;-1:-1:-1;;;;;36930:6:0::2;::::0;36918:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;36930:6;36918:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;36918:30:0;-1:-1:-1;;;;;36918:47:0::2;;:114:::0;::::2;;;-1:-1:-1::0;36998:5:0::2;::::0;36986:29:::2;::::0;;-1:-1:-1;;;36986:29:0;;;;37027:4:::2;::::0;-1:-1:-1;;;;;36998:5:0::2;::::0;36986:27:::2;::::0;:29:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;36998:5;36986:29;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;36986:29:0;-1:-1:-1;;;;;36986:46:0::2;;36918:114;:182;;;;-1:-1:-1::0;37065:6:0::2;::::0;37053:30:::2;::::0;;-1:-1:-1;;;37053:30:0;;;;37095:4:::2;::::0;-1:-1:-1;;;;;37065:6:0::2;::::0;37053:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;37065:6;37053:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;37053:30:0;-1:-1:-1;;;;;37053:47:0::2;;36918:182;:250;;;;-1:-1:-1::0;37130:9:0::2;::::0;37121:30:::2;::::0;;-1:-1:-1;;;37121:30:0;;;;37163:4:::2;::::0;-1:-1:-1;;;;;37130:9:0::2;::::0;37121:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;37130:9;37121:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;37121:30:0;-1:-1:-1;;;;;37121:47:0::2;;36918:250;36896:330;;;::::0;;-1:-1:-1;;;36896:330:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;48958:1:::3;48942:13;:17;48934:78;;;;-1:-1:-1::0;;;48934:78:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49025:19;49047:16;:14;:16::i;:::-;49025:38;;49097:11;49082;:26;49074:67;;;::::0;;-1:-1:-1;;;49074:67:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;49188:14;;49174:11;:28;49152:144;;;;-1:-1:-1::0;;;49152:144:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49334:26;;49317:13;:43;;49309:98;;;;-1:-1:-1::0;;;49309:98:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49420:13;49436:21;:19;:21::i;:::-;49420:37;;49484:1;49476:5;:9;49468:49;;;::::0;;-1:-1:-1;;;49468:49:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;49530:19;49552:34;49581:4;49552:24;:13:::0;49570:5;49552:17:::3;:24::i;:34::-;49530:56;;49597:20;49620:28;:26;:28::i;:::-;49597:51;;49659:21;49683:44;49715:11;49690:5;;;;;;;;;-1:-1:-1::0;;;;;49690:5:0::3;-1:-1:-1::0;;;;;49683:25:0::3;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;49683:27:0;;:31:::3;:44::i;:::-;49659:68;;49763:48;49805:5;49763:37;49780:19;;49763:12;:16;;:37;;;;:::i;:48::-;49746:13;:65;;49738:97;;;::::0;;-1:-1:-1;;;49738:97:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;49738:97:0;;;;;;;;;;;;;::::3;;49860:6;::::0;49848:55:::3;::::0;;-1:-1:-1;;;49848:55:0;;49877:10:::3;49848:55;::::0;::::3;::::0;;;;;;;;;-1:-1:-1;;;;;49860:6:0;;::::3;::::0;49848:28:::3;::::0;:55;;;;;49860:6:::3;::::0;49848:55;;;;;;;;49860:6;;49848:55;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;-1:-1:-1::0;;49926:5:0::3;::::0;49914:48:::3;::::0;;-1:-1:-1;;;49914:48:0;;49938:10:::3;49914:48;::::0;::::3;::::0;;;;;;;;;-1:-1:-1;;;;;49926:5:0;;::::3;::::0;-1:-1:-1;49914:23:0::3;::::0;-1:-1:-1;49914:48:0;;;;;::::3;::::0;;;;;;;;;49926:5:::3;::::0;49914:48;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;;50004:26:0::3;::::0;:45:::3;::::0;50035:13;50004:30:::3;:45::i;:::-;49975:26;:74:::0;50060:20:::3;:18;:20::i;:::-;50098:51;::::0;;;;;::::3;::::0;::::3;::::0;;;;;50110:10:::3;::::0;50098:51:::3;::::0;;;;;;::::3;-1:-1:-1::0;;28598:12:0;28590:7;:21;;;;;;;;;;;28612:9;28590:32;;;;;;;;:39;;28625:4;-1:-1:-1;;28590:39:0;;;;;;;;28662:10;28640:33;;;;;;:40;;;;;;;;;;-1:-1:-1;;;;;48810:1347:0:o;35483:35::-;;;;:::o;33827:23::-;;;-1:-1:-1;;;;;33827:23:0;;:::o;45406:257::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45533:4:::1;45509:20;:28;;:61;;;;;45565:5;45541:20;:29;;45509:61;45501:86;;;::::0;;-1:-1:-1;;;45501:86:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;45501:86:0;;;;;;;;;;;;;::::1;;45613:19;:42:::0;45406:257::o;38321:94::-;38391:16;;38321:94;:::o;34490:31::-;;;;:::o;52726:2307::-;28401:28;:26;:28::i;:::-;28400:29;28392:80;;;;-1:-1:-1;;;28392:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28492:28;:26;:28::i;:::-;28491:29;28483:80;;;;-1:-1:-1;;;28483:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36481:9:::1;;36474:3;:16;;36466:54;;;::::0;;-1:-1:-1;;;36466:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;36466:54:0;;;;;;;;;;;;;::::1;;36596:16:::2;:14;:16::i;:::-;36589:3;:23;;36581:60;;;::::0;;-1:-1:-1;;;36581:60:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;36930:6:::3;::::0;36918:30:::3;::::0;;-1:-1:-1;;;36918:30:0;;;;36960:4:::3;::::0;-1:-1:-1;;;;;36930:6:0::3;::::0;36918:28:::3;::::0;:30:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;36930:6;36918:30;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;36918:30:0;-1:-1:-1;;;;;36918:47:0::3;;:114:::0;::::3;;;-1:-1:-1::0;36998:5:0::3;::::0;36986:29:::3;::::0;;-1:-1:-1;;;36986:29:0;;;;37027:4:::3;::::0;-1:-1:-1;;;;;36998:5:0::3;::::0;36986:27:::3;::::0;:29:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;36998:5;36986:29;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;36986:29:0;-1:-1:-1;;;;;36986:46:0::3;;36918:114;:182;;;;-1:-1:-1::0;37065:6:0::3;::::0;37053:30:::3;::::0;;-1:-1:-1;;;37053:30:0;;;;37095:4:::3;::::0;-1:-1:-1;;;;;37065:6:0::3;::::0;37053:28:::3;::::0;:30:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;37065:6;37053:30;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;37053:30:0;-1:-1:-1;;;;;37053:47:0::3;;36918:182;:250;;;;-1:-1:-1::0;37130:9:0::3;::::0;37121:30:::3;::::0;;-1:-1:-1;;;37121:30:0;;;;37163:4:::3;::::0;-1:-1:-1;;;;;37130:9:0::3;::::0;37121:28:::3;::::0;:30:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;37130:9;37121:30;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;37121:30:0;-1:-1:-1;;;;;37121:47:0::3;;36918:250;36896:330;;;::::0;;-1:-1:-1;;;36896:330:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;52830:20:::4;:18;:20::i;:::-;52888:16;:14;:16::i;:::-;52861:24;:43:::0;52971:16:::4;::::0;52915:20:::4;::::0;52938:50:::4;::::0;:28:::4;:26;:28::i;:::-;:32:::0;::::4;:50::i;:::-;52915:73;;53011:15;;53003:5;;:23;52999:2027;;;53095:78;53112:60;53166:5;53112:49;53129:31;;53112:12;:16;;:49;;;;:::i;:60::-;53095:16;:78::i;:::-;52999:2027;;;53237:18;;53210:24;;:45;53206:1809;;;53402:5;::::0;53395:27:::4;::::0;;-1:-1:-1;;;53395:27:0;;;;53374:18:::4;::::0;-1:-1:-1;;;;;53402:5:0::4;::::0;53395:25:::4;::::0;:27:::4;::::0;;::::4;::::0;::::4;::::0;;;;;;;;53402:5;53395:27;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;53395:27:0;53492:14:::4;::::0;53463:24:::4;::::0;53395:27;;-1:-1:-1;53441:19:0::4;::::0;53463:44:::4;::::0;:28:::4;:44::i;:::-;53441:66;;53526:21;53566:26:::0;53611:12:::4;53626:59;53680:4;53626:49;53662:12;53626:35;:49::i;:59::-;53611:74;;53722:4;53708:11;:18;53704:85;;;53765:4;53751:18;;53704:85;53831:52;53877:5;53831:41;53846:25;;53831:10;:14;;:41;;;;:::i;:52::-;53811:16;;:72;53807:791;;53998:39;54032:4;53998:29;:12:::0;54015:11;53998:16:::4;:29::i;:39::-;53977:60;;53807:791;;;54155:20;54178:39;54212:4;54178:29;:12:::0;54195:11;54178:16:::4;:29::i;:39::-;54155:62;;54261:61;54316:5;54261:50;54278:32;;54261:12;:16;;:50;;;;:::i;:61::-;54240:82:::0;-1:-1:-1;54361:36:0::4;:12:::0;54240:82;54361:16:::4;:36::i;:::-;54424:26;::::0;54345:52;;-1:-1:-1;54424:30:0;54420:159:::4;;54499:56;54549:5;54499:45;54517:26;;54499:13;:17;;:45;;;;:::i;:56::-;54483:72;;54420:159;53807:791;;54620:22:::0;;54616:107:::4;;54667:36;54684:18;54667:16;:36::i;:::-;54745:17:::0;;54741:259:::4;;54806:16;::::0;:35:::4;::::0;54827:13;54806:20:::4;:35::i;:::-;54787:16;:54:::0;54876:6:::4;::::0;54864:54:::4;::::0;;-1:-1:-1;;;54864:54:0;;54897:4:::4;54864:54;::::0;::::4;::::0;;;;;;;;;-1:-1:-1;;;;;54876:6:0;;::::4;::::0;54864:24:::4;::::0;:54;;;;;::::4;::::0;;;;;;;;;54876:6:::4;::::0;54864:54;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;;54946:34:0::4;::::0;;54961:3:::4;54946:34:::0;;54864:54:::4;54946:34:::0;::::4;::::0;;;;;::::4;::::0;;;;;;;;;::::4;54741:259;53206:1809;;;;;;-1:-1:-1::0;36676:5:0::2;::::0;:12:::2;::::0;36686:1:::2;36676:9;:12::i;:::-;36668:5;:20:::0;36748:18:::2;::::0;36729:16:::2;:14;:16::i;:::-;:37;36728:118;;36774:72;36840:5;36774:61;36807:27;;36774:28;:26;:28::i;:72::-;36728:118;;;36770:1;36728:118;36699:26;:147:::0;28598:12;28590:7;:21;;;;;;;;;;;28612:9;28590:32;;;;;;;;:39;;28625:4;-1:-1:-1;;28590:39:0;;;;;;;;28662:10;28640:33;;;;;;:40;;;;;;;;;;52726:2307::o;34331:24::-;;;-1:-1:-1;;;;;34331:24:0;;:::o;43134:117::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43215:12:::1;:28:::0;;-1:-1:-1;;;;;;43215:28:0::1;-1:-1:-1::0;;;;;43215:28:0;;;::::1;::::0;;;::::1;::::0;;43134:117::o;37673:306::-;37764:12;;37786:6;;37756:43;;;-1:-1:-1;;;37756:43:0;;-1:-1:-1;;;;;37786:6:0;;;37756:43;;;;37794:4;37756:43;;;;;;37720:19;;37764:12;;;;;37756:29;;:43;;;;;;;;;;;;;;;37764:12;37756:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37756:43:0;;;37752:220;;37894:66;;-1:-1:-1;;;37894:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37752:220;37846:14;;;-1:-1:-1;37839:21:0;;34412:29;;;;:::o;39180:440::-;39231:24;39268:20;39291:16;:14;:16::i;:::-;39268:39;;39337:18;;39322:12;:33;39318:295;;;39402:6;;39395:39;;;-1:-1:-1;;;39395:39:0;;39428:4;39395:39;;;;;;39372:20;;-1:-1:-1;;;;;39402:6:0;;39395:24;;:39;;;;;;;;;;;;;;39402:6;39395:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39395:39:0;;-1:-1:-1;39449:13:0;39465:20;:18;:20::i;:::-;39449:36;-1:-1:-1;39504:9:0;;39500:102;;39553:33;39580:5;39553:22;:12;39570:4;39553:16;:22::i;:33::-;39534:52;;39318:295;;39180:440;;:::o;33927:24::-;;;;:::o;34655:40::-;;;;:::o;34080:133::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34080:133:0;;-1:-1:-1;34080:133:0;:::o;34965:46::-;;;;:::o;44796:291::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44941:3:::1;44911:26;:33;;:72;;;;;44978:5;44948:26;:35;;44911:72;44903:97;;;::::0;;-1:-1:-1;;;44903:97:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44903:97:0;;;;;;;;;;;;;::::1;;45025:25;:54:::0;44796:291::o;35454:22::-;;;-1:-1:-1;;;;;35454:22:0;;:::o;35087:39::-;;;;:::o;33958:24::-;;;;:::o;45671:499::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45822:3:::1;45802:16;:23;;45794:66;;;::::0;;-1:-1:-1;;;45794:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;45929:3;45893:32;:39;;:83;;;;;45972:4;45936:32;:40;;45893:83;45885:142;;;;-1:-1:-1::0;;;45885:142:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46051:15;:34:::0;;;;46096:31:::1;:66:::0;45671:499::o;34274:20::-;;;-1:-1:-1;;;;;34274:20:0;;:::o;43883:492::-;36340:8;;43973:4;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44071:1:::1;44062:6;:10;;;44054:64;;;;-1:-1:-1::0;;;44054:64:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44133:10;::::0;::::1;::::0;44129:84:::1;;44177:11;44198:1;44189:6;:10;44177:23;;;;;;;;;;;;;;;;;;44168:6;:32;44160:41;;;::::0;::::1;;44236:1;44227:6;:10;;;44223:84;;;44271:11;44283:6;44292:1;44283:10;44271:23;;;;;;;;;;;;;;;;;;44262:6;:32;44254:41;;;::::0;::::1;;44339:6;44317:11;44329:6;44317:19;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:28:::0;-1:-1:-1;44363:4:0::1;36414:1;43883:492:::0;;;;:::o;37987:311::-;38086:12;;38105:6;;38078:40;;;-1:-1:-1;;;38078:40:0;;-1:-1:-1;;;;;38105:6:0;;;38078:40;;;;38113:4;38078:40;;;;;;38041:20;;38086:12;;;;;38078:26;;:40;;;;;;;;;;;;;;;38086:12;38078:40;;;;;;;;;;41230:1674;37300:11;;-1:-1:-1;;;37300:11:0;;;;37299:12;37291:54;;;;;-1:-1:-1;;;37291:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;41457:6:::1;:16:::0;;-1:-1:-1;;;;;;41457:16:0;;::::1;-1:-1:-1::0;;;;;41457:16:0;;::::1;::::0;;;::::1;::::0;;;41484:5:::1;:14:::0;;;::::1;::::0;;::::1;;::::0;;41509:6:::1;:16:::0;;;::::1;::::0;;::::1;;::::0;;41536:12:::1;:28:::0;;;::::1;::::0;;::::1;;::::0;;41575:9:::1;:22:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;41608:9:::1;:22:::0;;;41660:6:::1;41643:14;:23:::0;;;41698:32:::1;::::0;41726:3:::1;::::0;41698:23:::1;::::0;41717:3:::1;41698:18;:23::i;:32::-;41677:18;:53:::0;41785:145:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;41785:145:0;;41809:12:::1;41785:145;::::0;::::1;::::0;41823:13:::1;41785:145:::0;;;;;;;41838:13:::1;41785:145:::0;;;;41853:13:::1;41785:145:::0;;;;41868:13:::1;41785:145:::0;;;;41883:14:::1;41785:145:::0;;;;41899:14:::1;41785:145:::0;;;;41915:14:::1;41785:145:::0;;;;::::1;::::0;:11:::1;::::0;:145:::1;;:::i;:::-;-1:-1:-1::0;41941:65:0::1;::::0;;::::1;::::0;::::1;::::0;;41962:3:::1;41941:65:::0;;41967:3:::1;41941:65;::::0;::::1;::::0;41972:3:::1;41941:65:::0;;;;;;;41977:3:::1;41941:65:::0;;;;41982:3:::1;41941:65:::0;;;;41987:3:::1;41941:65:::0;;;;41992:3:::1;41941:65:::0;;;;41997:3:::1;41941:65:::0;;;;42002:3:::1;41941:65:::0;;;;::::1;::::0;:17:::1;::::0;:65:::1;;:::i;:::-;-1:-1:-1::0;42047:3:0::1;42019:25;:31:::0;42125:5:::1;42097:25;:33:::0;42219:4:::1;42184:32;:39:::0;;;42316:3:::1;42286:27;:33:::0;42398:19:::1;:26:::0;42496:3:::1;42477:16;:22:::0;42527:4:::1;42510:14;:21:::0;;;42592:15:::1;:20:::0;42657:3:::1;42623:31;:37:::0;-1:-1:-1;42748:6:0;42741:39:::1;::::0;;-1:-1:-1;;;42741:39:0;;42774:4:::1;42741:39;::::0;::::1;::::0;;;-1:-1:-1;;;;;42748:6:0;;::::1;::::0;42741:24:::1;::::0;:39;;;;;::::1;::::0;;;;;;;;;42748:6;42741:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;42741:39:0;42722:16:::1;:58:::0;42807:4:::1;42793:18:::0;;-1:-1:-1;;;;;;;;;;42793:18:0;;::::1;-1:-1:-1::0;;;42793:18:0::1;42822:21;42833:10;42822:21:::0;;::::1;::::0;;;42859:37:::1;::::0;;42883:12:::1;42859:37:::0;;;;::::1;::::0;;;;42741:39:::1;42859:37:::0;;::::1;41230:1674:::0;;;;;;:::o;46798:129::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46885:15:::1;:34:::0;46798:129::o;34530:28::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34530:28:0;:::o;34565:34::-;;;;;;;;;;46935:125;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47020:14:::1;:32:::0;46935:125::o;55981:240::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56152:9:::1;::::0;56141:72:::1;::::0;;-1:-1:-1;;;56141:72:0;;-1:-1:-1;;;;;56141:72:0;;::::1;;::::0;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;56152:9;;;::::1;::::0;56141:50:::1;::::0;:72;;;;;56152:9:::1;::::0;56141:72;;;;;;;56152:9;;56141:72;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55981:240:::0;;;:::o;34448:33::-;;;;:::o;34246:21::-;;;-1:-1:-1;;;;;34246:21:0;;:::o;55475:134::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55568:9:::1;::::0;55557:44:::1;::::0;;-1:-1:-1;;;55557:44:0;;-1:-1:-1;;;;;55557:44:0;;::::1;;::::0;::::1;::::0;;;55568:9;;;::::1;::::0;55557:33:::1;::::0;:44;;;;;55568:9:::1;::::0;55557:44;;;;;;;55568:9;;55557:44;::::1;;::::0;::::1;;;;::::0;::::1;42912:101:::0;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42985:8:::1;:20:::0;;-1:-1:-1;;;;;;42985:20:0::1;-1:-1:-1::0;;;;;42985:20:0;;;::::1;::::0;;;::::1;::::0;;42912:101::o;43021:105::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43096:9:::1;:22:::0;;-1:-1:-1;;;;;;43096:22:0::1;-1:-1:-1::0;;;;;43096:22:0;;;::::1;::::0;;;::::1;::::0;;43021:105::o;33708:40::-;33741:7;33708:40;:::o;35133:30::-;;;;:::o;46178:612::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46383:22:0;::::1;46375:39;;;::::0;;-1:-1:-1;;;46375:39:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;46375:39:0;;;;;;;;;;;;;::::1;;46458:4;46433:21;:29;;46425:54;;;::::0;;-1:-1:-1;;;46425:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;46425:54:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;46508:22:0;::::1;46500:39;;;::::0;;-1:-1:-1;;;46500:39:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;46500:39:0;;;;;;;;;;;;;::::1;;46583:4;46558:21;:29;;46550:54;;;::::0;;-1:-1:-1;;;46550:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;46550:54:0;;;;;;;;;;;;;::::1;;46625:7;:18:::0;;-1:-1:-1;;;;;;46625:18:0;;::::1;-1:-1:-1::0;;;;;46625:18:0;;::::1;;::::0;;;46654:20:::1;:44:::0;;;;46709:7:::1;:18:::0;;;;::::1;::::0;;;::::1;;::::0;;46738:20:::1;:44:::0;46178:612::o;37536:114::-;37583:7;37610:32;37624:17;33741:7;37624:5;;:9;;:17;;;;:::i;:::-;37610:9;;;:13;:32::i;:::-;37603:39;;37536:114;:::o;35328:29::-;;;;:::o;35290:31::-;;;;:::o;45095:303::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45246:3:::1;45214:28;:35;;:75;;;;;45285:4;45253:28;:36;;45214:75;45206:100;;;::::0;;-1:-1:-1;;;45206:100:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;45206:100:0;;;;;;;;;;;;;::::1;;45332:27;:58:::0;45095:303::o;48326:476::-;48433:6;;48473:25;;;-1:-1:-1;;;48473:25:0;;;;48385:7;;-1:-1:-1;;;;;48433:6:0;;48385:7;;48433:6;;48473:23;;:25;;;;;;;;;;;;;;48433:6;48473:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48473:25:0;;-1:-1:-1;48509:23:0;;48547:198;48581:23;:30;48571:40;;;;48547:198;;;48657:76;48677:11;-1:-1:-1;;;;;48677:21:0;;48699:23;48723:7;48699:32;;;;;;;;;;;;;;;;;;;;;48677:55;;;-1:-1:-1;;;;;;48677:55:0;;;;;;;-1:-1:-1;;;;;48699:32:0;;;48677:55;;;;;;;;;;48699:32;48677:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48677:55:0;48657:15;;:19;:76::i;:::-;48639:94;-1:-1:-1;48613:9:0;;48547:198;;;-1:-1:-1;48762:32:0;:11;48778:15;48762;:32::i;44383:405::-;36340:8;;44479:4;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44577:1:::1;44568:6;:10;;;44560:64;;;;-1:-1:-1::0;;;44560:64:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44653:2;44643:6;:12;;:30;;;;;44669:4;44659:6;:14;;44643:30;44635:63;;;::::0;;-1:-1:-1;;;44635:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44635:63:0;;;;;;;;;;;;;::::1;;44752:6;44724:17;44742:6;44724:25;;;;;;;;;34608:40:::0;;;;:::o;34805:34::-;;;;:::o;34756:42::-;;;;:::o;38423:749::-;38477:27;38517:20;38540:16;:14;:16::i;:::-;38517:39;;38587:14;;38571:12;:30;38567:598;;38618:21;38642:28;:26;:28::i;:::-;38618:52;;38685:22;38710:49;38753:5;38710:38;38728:19;;38710:13;:17;;:38;;;;:::i;:49::-;38685:74;;38774:19;38803:5;;;;;;;;;-1:-1:-1;;;;;38803:5:0;-1:-1:-1;;;;;38796:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38796:27:0;;-1:-1:-1;38842:28:0;;;38838:316;;;38891:24;38918:31;:14;38937:11;38918:18;:31::i;:::-;38891:58;-1:-1:-1;38968:26:0;38997:44;39036:4;38997:34;38891:58;39018:12;38997:20;:34::i;:44::-;38968:73;;39082:56;39091:26;;39119:18;39082:8;:56::i;:::-;39060:78;;38838:316;;;38567:598;;;38423:749;;:::o;34928:30::-;;;;:::o;55617:204::-;36340:8;;-1:-1:-1;;;;;36340:8:0;36352:10;36340:22;36332:71;;;;-1:-1:-1;;;36332:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55749:9:::1;::::0;55738:75:::1;::::0;;-1:-1:-1;;;55738:75:0;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;55749:9:0;;::::1;::::0;55738:31:::1;::::0;:75;;;;;55749:9:::1;::::0;55738:75;;;;;;;;55749:9;;55738:75;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55617:204:::0;;:::o;33989:45::-;;;;:::o;7905:220::-;7963:7;7987:6;7983:20;;-1:-1:-1;8002:1:0;7995:8;;7983:20;8026:5;;;8030:1;8026;:5;:1;8050:5;;;;;:10;8042:56;;;;-1:-1:-1;;;8042:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8116:1;7905:220;-1:-1:-1;;;7905:220:0:o;8603:153::-;8661:7;8693:1;8689;:5;8681:44;;;;;-1:-1:-1;;;8681:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8747:1;8743;:5;;;;;;;8603:153;-1:-1:-1;;;8603:153:0:o;7488:158::-;7546:7;7579:1;7574;:6;;7566:49;;;;;-1:-1:-1;;;7566:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7633:5:0;;;7488:158::o;7026:179::-;7084:7;7116:5;;;7140:6;;;;7132:46;;;;;-1:-1:-1;;;7132:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;28090:125;28183:12;28151:4;28175:21;;;;;;;;;;;28197:9;28175:32;;;;;;;;;;28090:125;:::o;28223:126::-;28316:12;28284:4;28308:21;;;;;;;;;;;28330:10;28308:33;;;;;;;;;;28223:126;:::o;12077:106::-;12135:7;12166:1;12162;:5;:13;;12174:1;12162:13;;;-1:-1:-1;12170:1:0;;12155:20;-1:-1:-1;12077:106:0:o;23827:177::-;23937:58;;;-1:-1:-1;;;;;23937:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23937:58:0;-1:-1:-1;;;23937:58:0;;;23910:86;;23930:5;;23910:19;:86::i;48215:103::-;48277:12;;;;;;;;;-1:-1:-1;;;;;48277:12:0;-1:-1:-1;;;;;48269:28:0;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48265:46;48215:103::o;51295:1033::-;51370:6;;51358:48;;;-1:-1:-1;;;51358:48:0;;51391:4;51358:48;;;;;;;;;;;;-1:-1:-1;;;;;51370:6:0;;;;51358:24;;:48;;;;;;;;;;;;;;;51370:6;;51358:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51466:20:0;;51419:28;;51466:24;51462:253;;51530:44;51568:5;51530:33;51542:20;;51530:7;:11;;:33;;;;:::i;:44::-;51596:6;;51613:7;;51589:54;;;-1:-1:-1;;;51589:54:0;;-1:-1:-1;;;;;51613:7:0;;;51589:54;;;;;;;;;;;;51507:67;;-1:-1:-1;51596:6:0;;;51589:23;;:54;;;;;;;;;;;;;;;51596:6;;51589:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51663:40:0;;;51677:3;51663:40;;51589:54;51663:40;;;;;;;;;;;;;;;;;;51462:253;51774:20;;51727:28;;51774:24;51770:253;;51838:44;51876:5;51838:33;51850:20;;51838:7;:11;;:33;;;;:::i;:44::-;51904:6;;51921:7;;;51897:54;;;-1:-1:-1;;;51897:54:0;;-1:-1:-1;;;;;51921:7:0;;;51897:54;;;;;;;;;;;;51815:67;;-1:-1:-1;51904:6:0;;;51897:23;;:54;;;;;51921:7;51897:54;;;;;;51904:6;;51897:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51971:40:0;;;51985:3;51971:40;;51897:54;51971:40;;;;;;;;;;;;;;;;;;51770:253;52045:59;52083:20;52045:33;:7;52057:20;52045:11;:33::i;:59::-;52144:9;;52124:6;;52035:69;;-1:-1:-1;52117:40:0;;-1:-1:-1;;;;;52124:6:0;;;;52144:9;;52117:26;:40::i;:::-;52195:9;;52175:6;;52168:46;;-1:-1:-1;;;;;52175:6:0;;;;52195:9;52206:7;52168:26;:46::i;:::-;52236:9;;52225:50;;;-1:-1:-1;;;52225:50:0;;;;;;;;;;-1:-1:-1;;;;;52236:9:0;;;;52225:41;;:50;;;;;52236:9;;52225:50;;;;;;;;52236:9;;52225:50;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52291:29:0;;;52307:3;52291:29;;;;;;;;;;;;-1:-1:-1;52291:29:0;;;;;;;;-1:-1:-1;52291:29:0;51295:1033;;;:::o;52336:382::-;52422:7;52462:1;52442:226;52524:11;52536:6;52524:19;;;;;;;;;;;;;;;;;;52507:13;:36;52503:154;;52592:17;52610:6;52592:25;;;;;;;;;;;;;;;;;;;;52564;:53;52636:5;;52503:154;-1:-1:-1;;52478:8:0;52442:226;;;-1:-1:-1;;52685:25:0;;52336:382;;;:::o;26132:761::-;26556:23;26582:69;26610:4;26582:69;;;;;;;;;;;;;;;;;26590:5;-1:-1:-1;;;;;26582:27:0;;;:69;;;;;:::i;:::-;26666:17;;26556:95;;-1:-1:-1;26666:21:0;26662:224;;26808:10;26797:30;;;;;;;;;;;;;;;-1:-1:-1;26797:30:0;26789:85;;;;-1:-1:-1;;;26789:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24486:622;24856:10;;;24855:62;;-1:-1:-1;24872:39:0;;;-1:-1:-1;;;24872:39:0;;24896:4;24872:39;;;;-1:-1:-1;;;;;24872:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24872:39:0;:44;24855:62;24847:152;;;;-1:-1:-1;;;24847:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25037:62;;;-1:-1:-1;;;;;25037:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25037:62:0;-1:-1:-1;;;25037:62:0;;;25010:90;;25030:5;;25010:19;:90::i;18888:195::-;18991:12;19023:52;19045:6;19053:4;19059:1;19062:12;19023:21;:52::i;:::-;19016:59;18888:195;-1:-1:-1;;;;18888:195:0:o;19940:530::-;20067:12;20125:5;20100:21;:30;;20092:81;;;;-1:-1:-1;;;20092:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20192:18;20203:6;20192:10;:18::i;:::-;20184:60;;;;;-1:-1:-1;;;20184:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20318:12;20332:23;20359:6;-1:-1:-1;;;;;20359:11:0;20379:5;20387:4;20359:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20359:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20317:75;;;;20410:52;20428:7;20437:10;20449:12;20410:17;:52::i;:::-;20403:59;19940:530;-1:-1:-1;;;;;;;19940:530:0:o;15970:422::-;16337:20;16376:8;;;15970:422::o;22480:742::-;22595:12;22624:7;22620:595;;;-1:-1:-1;22655:10:0;22648:17;;22620:595;22769:17;;:21;22765:439;;23032:10;23026:17;23093:15;23080:10;23076:2;23072:19;23065:44;22980:148;23175:12;23168:20;;-1:-1:-1;;;23168:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://b454ee476f0026e978e24911da3f9358ff5979ac4c128e9a20a92893d208fb79
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.