Contract Overview
Balance:
0 FTM
FTM Value:
$0.00
My Name Tag:
Not Available, login to update
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | ||
---|---|---|---|---|---|---|---|---|
0x5100c7a2f53111bd2f6f4eeb7a7b04851945bf460e628f0baf6a6acb4ab4c051 | Set Extra Funds | 39408285 | 30 days 8 hrs ago | 0xcd899c254ea05dc0bb839e101427dbeaa238a068 | IN | 0x20a52808ba52ff0d3cd172f2260a240a79ca389f | 0 FTM | 0.006145400689 |
0xac73acc396bfe2a4dc726c9a6cc53314ed85f44c4edfc80cb4aee38db909b2e3 | Initialize | 39408172 | 30 days 8 hrs ago | 0xcd899c254ea05dc0bb839e101427dbeaa238a068 | IN | 0x20a52808ba52ff0d3cd172f2260a240a79ca389f | 0 FTM | 0.064897888799 |
0xddcd19ade38afc65361f7452e6e34eda5749bb0f496fb9d56f74c025adbfd317 | 0x60806040 | 39389220 | 30 days 15 hrs ago | 0xcd899c254ea05dc0bb839e101427dbeaa238a068 | IN | Contract Creation | 0 FTM | 0.041591279508 |
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0xddcd19ade38afc65361f7452e6e34eda5749bb0f496fb9d56f74c025adbfd317 | 39389220 | 30 days 15 hrs ago | 0xcd899c254ea05dc0bb839e101427dbeaa238a068 | 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.
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xf73738A46536c3dE73510D8378aAc8dB69e2cf9B
Contract Name:
Treasury
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2022-05-25 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @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); } } /** * @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); } /** * @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); } } } } /** * @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; } } /** * @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"); } } } /** * @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; } } 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 } } /* * @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; } } /** * @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; } } 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_; } } 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; } } 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; } 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); } interface IMasonry { function balanceOf(address _mason) external view returns (uint256); function earned(address _mason) external view returns (uint256); function canWithdraw(address _mason) external view returns (bool); function canClaimReward(address _mason) external view returns (bool); function epoch() external view returns (uint256); function nextEpochPoint() external view returns (uint256); function getFatmPrice() 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; } 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; // core components address public fatm; address public fbond; address public fshare; address public masonry; address public fatmOracle; // price uint256 public fatmPriceOne; uint256 public fatmPriceCeiling; 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 FATM price uint256 public bootstrapEpochs; uint256 public bootstrapSupplyExpansionPercent; /* =================== Added variables =================== */ uint256 public previousEpochFatmPrice; 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 FATM 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 fatmAmount, uint256 bondAmount); event BoughtBonds(address indexed from, uint256 fatmAmount, uint256 bondAmount); event TreasuryFunded(uint256 timestamp, uint256 seigniorage); event MasonryFunded(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 = (getFatmPrice() > fatmPriceCeiling) ? 0 : getFatmCirculatingSupply().mul(maxSupplyContractionPercent).div(10000); } modifier checkOperator { require( IBasisAsset(fatm).operator() == address(this) && IBasisAsset(fbond).operator() == address(this) && IBasisAsset(fshare).operator() == address(this) && Operator(masonry).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 getFatmPrice() public view returns (uint256 fatmPrice) { try IOracle(fatmOracle).consult(fatm, 1e18) returns (uint144 price) { return uint256(price); } catch { revert("Treasury: failed to consult FATM price from the oracle"); } } function getFatmUpdatedPrice() public view returns (uint256 _fatmPrice) { try IOracle(fatmOracle).twap(fatm, 1e18) returns (uint144 price) { return uint256(price); } catch { revert("Treasury: failed to consult FATM price from the oracle"); } } // budget function getReserve() public view returns (uint256) { return seigniorageSaved; } function getBurnableFatmLeft() public view returns (uint256 _burnableFatmLeft) { uint256 _fatmPrice = getFatmPrice(); if (_fatmPrice <= fatmPriceOne) { uint256 _fatmSupply = getFatmCirculatingSupply(); uint256 _bondMaxSupply = _fatmSupply.mul(maxDebtRatioPercent).div(10000); uint256 _bondSupply = IERC20(fbond).totalSupply(); if (_bondMaxSupply > _bondSupply) { uint256 _maxMintableBond = _bondMaxSupply.sub(_bondSupply); uint256 _maxBurnableFatm = _maxMintableBond.mul(_fatmPrice).div(1e18); _burnableFatmLeft = Math.min(epochSupplyContractionLeft, _maxBurnableFatm); } } } function getRedeemableBonds() public view returns (uint256 _redeemableBonds) { uint256 _fatmPrice = getFatmPrice(); if (_fatmPrice > fatmPriceCeiling) { uint256 _totalFatm = IERC20(fatm).balanceOf(address(this)); uint256 _rate = getBondPremiumRate(); if (_rate > 0) { _redeemableBonds = _totalFatm.mul(1e18).div(_rate); } } } function getBondDiscountRate() public view returns (uint256 _rate) { uint256 _fatmPrice = getFatmPrice(); if (_fatmPrice <= fatmPriceOne) { if (discountPercent == 0) { // no discount _rate = fatmPriceOne; } else { uint256 _bondAmount = fatmPriceOne.mul(1e18).div(_fatmPrice); // to burn 1 FATM uint256 _discountAmount = _bondAmount.sub(fatmPriceOne).mul(discountPercent).div(10000); _rate = fatmPriceOne.add(_discountAmount); if (maxDiscountRate > 0 && _rate > maxDiscountRate) { _rate = maxDiscountRate; } } } } function getBondPremiumRate() public view returns (uint256 _rate) { uint256 _fatmPrice = getFatmPrice(); if (_fatmPrice > fatmPriceCeiling) { uint256 _fatmPricePremiumThreshold = fatmPriceOne.mul(premiumThreshold).div(100); if (_fatmPrice >= _fatmPricePremiumThreshold) { //Price > 1.10 uint256 _premiumAmount = _fatmPrice.sub(fatmPriceOne).mul(premiumPercent).div(10000); _rate = fatmPriceOne.add(_premiumAmount); if (maxPremiumRate > 0 && _rate > maxPremiumRate) { _rate = maxPremiumRate; } } else { // no premium bonus _rate = fatmPriceOne; } } } /* ========== GOVERNANCE ========== */ function initialize( address _fatm, address _fbond, address _fshare, address _fatmOracle, address _masonry, address _genesisPool, uint256 _startTime ) public notInitialized { fatm = _fatm; fbond = _fbond; fshare = _fshare; fatmOracle = _fatmOracle; masonry = _masonry; startTime = _startTime; fatmPriceOne = 10**18; fatmPriceCeiling = fatmPriceOne.mul(101).div(100); // exclude contracts from total supply excludedFromTotalSupply.push(_genesisPool); // 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 masonry maxSupplyContractionPercent = 300; // Upto 3.0% supply for contraction (to burn FATM and mint Fbond) maxDebtRatioPercent = 3500; // Upto 35% supply of Fbond to purchase premiumThreshold = 110; premiumPercent = 7000; // First 12 epochs with 5% expansion bootstrapEpochs = 12; bootstrapSupplyExpansionPercent = 500; // set seigniorageSaved to it's balance seigniorageSaved = IERC20(fatm).balanceOf(address(this)); initialized = true; operator = msg.sender; emit Initialized(msg.sender, block.number); } function setOperator(address _operator) external onlyOperator { operator = _operator; } function setMasonry(address _masonry) external onlyOperator { masonry = _masonry; } function setFatmOracle(address _fatmOracle) external onlyOperator { fatmOracle = _fatmOracle; } function setFatmPriceCeiling(uint256 _fatmPriceCeiling) external onlyOperator { require(_fatmPriceCeiling >= fatmPriceOne && _fatmPriceCeiling <= fatmPriceOne.mul(120).div(100), "out of range"); // [$1.0, $1.2] fatmPriceCeiling = _fatmPriceCeiling; } 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 >= fatmPriceCeiling, "_premiumThreshold exceeds fatmPriceCeiling"); 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 _updateFatmPrice() internal { try IOracle(fatmOracle).update() {} catch {} } function getFatmCirculatingSupply() public view returns (uint256) { IERC20 fatmErc20 = IERC20(fatm); uint256 totalSupply = fatmErc20.totalSupply(); uint256 balanceExcluded = 0; for (uint8 entryId = 0; entryId < excludedFromTotalSupply.length; ++entryId) { balanceExcluded = balanceExcluded.add(fatmErc20.balanceOf(excludedFromTotalSupply[entryId])); } return totalSupply.sub(balanceExcluded); } function buyBonds(uint256 _fatmAmount, uint256 targetPrice) external onlyOneBlock checkCondition checkOperator { require(_fatmAmount > 0, "Treasury: cannot purchase bonds with zero amount"); uint256 fatmPrice = getFatmPrice(); require(fatmPrice == targetPrice, "Treasury: FATM price moved"); require( fatmPrice < fatmPriceOne, // price < $1 "Treasury: fatmPrice not eligible for bond purchase" ); require(_fatmAmount <= epochSupplyContractionLeft, "Treasury: not enough bond left to purchase"); uint256 _rate = getBondDiscountRate(); require(_rate > 0, "Treasury: invalid bond rate"); uint256 _bondAmount = _fatmAmount.mul(_rate).div(1e18); uint256 fatmSupply = getFatmCirculatingSupply(); uint256 newBondSupply = IERC20(fbond).totalSupply().add(_bondAmount); require(newBondSupply <= fatmSupply.mul(maxDebtRatioPercent).div(10000), "over max debt ratio"); IBasisAsset(fatm).burnFrom(msg.sender, _fatmAmount); IBasisAsset(fbond).mint(msg.sender, _bondAmount); epochSupplyContractionLeft = epochSupplyContractionLeft.sub(_fatmAmount); _updateFatmPrice(); emit BoughtBonds(msg.sender, _fatmAmount, _bondAmount); } function redeemBonds(uint256 _bondAmount, uint256 targetPrice) external onlyOneBlock checkCondition checkOperator { require(_bondAmount > 0, "Treasury: cannot redeem bonds with zero amount"); uint256 fatmPrice = getFatmPrice(); require(fatmPrice == targetPrice, "Treasury: FATM price moved"); require( fatmPrice > fatmPriceCeiling, // price > $1.01 "Treasury: fatmPrice not eligible for bond purchase" ); uint256 _rate = getBondPremiumRate(); require(_rate > 0, "Treasury: invalid bond rate"); uint256 _fatmAmount = _bondAmount.mul(_rate).div(1e18); require(IERC20(fatm).balanceOf(address(this)) >= _fatmAmount, "Treasury: treasury has no more budget"); seigniorageSaved = seigniorageSaved.sub(Math.min(seigniorageSaved, _fatmAmount)); IBasisAsset(fbond).burnFrom(msg.sender, _bondAmount); IERC20(fatm).safeTransfer(msg.sender, _fatmAmount); _updateFatmPrice(); emit RedeemedBonds(msg.sender, _fatmAmount, _bondAmount); } function _sendToMasonry(uint256 _amount) internal { IBasisAsset(fatm).mint(address(this), _amount); uint256 _daoFundSharedAmount = 0; if (daoFundSharedPercent > 0) { _daoFundSharedAmount = _amount.mul(daoFundSharedPercent).div(10000); IERC20(fatm).transfer(daoFund, _daoFundSharedAmount); emit DaoFundFunded(now, _daoFundSharedAmount); } uint256 _devFundSharedAmount = 0; if (devFundSharedPercent > 0) { _devFundSharedAmount = _amount.mul(devFundSharedPercent).div(10000); IERC20(fatm).transfer(devFund, _devFundSharedAmount); emit DevFundFunded(now, _devFundSharedAmount); } _amount = _amount.sub(_daoFundSharedAmount).sub(_devFundSharedAmount); IERC20(fatm).safeApprove(masonry, 0); IERC20(fatm).safeApprove(masonry, _amount); IMasonry(masonry).allocateSeigniorage(_amount); emit MasonryFunded(now, _amount); } function _calculateMaxSupplyExpansionPercent(uint256 _fatmSupply) internal returns (uint256) { for (uint8 tierId = 8; tierId >= 0; --tierId) { if (_fatmSupply >= supplyTiers[tierId]) { maxSupplyExpansionPercent = maxExpansionTiers[tierId]; break; } } return maxSupplyExpansionPercent; } function allocateSeigniorage() external onlyOneBlock checkCondition checkEpoch checkOperator { _updateFatmPrice(); previousEpochFatmPrice = getFatmPrice(); uint256 fatmSupply = getFatmCirculatingSupply().sub(seigniorageSaved); if (epoch < bootstrapEpochs) { // 28 first epochs with 4.5% expansion _sendToMasonry(fatmSupply.mul(bootstrapSupplyExpansionPercent).div(10000)); } else { if (previousEpochFatmPrice > fatmPriceCeiling) { // Expansion ($FATM Price > 0.1 $FTM): there is some seigniorage to be allocated uint256 bondSupply = IERC20(fbond).totalSupply(); uint256 _percentage = previousEpochFatmPrice.sub(fatmPriceOne); uint256 _savedForBond; uint256 _savedForMasonry; uint256 _mse = _calculateMaxSupplyExpansionPercent(fatmSupply).mul(1e14); if (_percentage > _mse) { _percentage = _mse; } if (seigniorageSaved >= bondSupply.mul(bondDepletionFloorPercent).div(10000)) { // saved enough to pay debt, mint as usual rate _savedForMasonry = fatmSupply.mul(_percentage).div(1e18); } else { // have not saved enough to pay debt, mint more uint256 _seigniorage = fatmSupply.mul(_percentage).div(1e18); _savedForMasonry = _seigniorage.mul(seigniorageExpansionFloorPercent).div(10000); _savedForBond = _seigniorage.sub(_savedForMasonry); if (mintingFactorForPayingDebt > 0) { _savedForBond = _savedForBond.mul(mintingFactorForPayingDebt).div(10000); } } if (_savedForMasonry > 0) { _sendToMasonry(_savedForMasonry); } if (_savedForBond > 0) { seigniorageSaved = seigniorageSaved.add(_savedForBond); IBasisAsset(fatm).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(fatm), "fatm"); require(address(_token) != address(fbond), "bond"); require(address(_token) != address(fshare), "share"); _token.safeTransfer(_to, _amount); } function masonrySetOperator(address _operator) external onlyOperator { IMasonry(masonry).setOperator(_operator); } function masonrySetLockUp(uint256 _withdrawLockupEpochs, uint256 _rewardLockupEpochs) external onlyOperator { IMasonry(masonry).setLockUp(_withdrawLockupEpochs, _rewardLockupEpochs); } function masonryAllocateSeigniorage(uint256 amount) external onlyOperator { IMasonry(masonry).allocateSeigniorage(amount); } function masonryGovernanceRecoverUnsupported( address _token, uint256 _amount, address _to ) external onlyOperator { IMasonry(masonry).governanceRecoverUnsupported(_token, _amount, _to); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"fatmAmount","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":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"MasonryFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"fatmAmount","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":"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":"_fatmAmount","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":"fatm","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fatmOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fatmPriceCeiling","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fatmPriceOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fbond","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fshare","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":"getBurnableFatmLeft","outputs":[{"internalType":"uint256","name":"_burnableFatmLeft","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFatmCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFatmPrice","outputs":[{"internalType":"uint256","name":"fatmPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFatmUpdatedPrice","outputs":[{"internalType":"uint256","name":"_fatmPrice","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":[{"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":"_fatm","type":"address"},{"internalType":"address","name":"_fbond","type":"address"},{"internalType":"address","name":"_fshare","type":"address"},{"internalType":"address","name":"_fatmOracle","type":"address"},{"internalType":"address","name":"_masonry","type":"address"},{"internalType":"address","name":"_genesisPool","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":"masonry","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"masonryAllocateSeigniorage","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":"masonryGovernanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawLockupEpochs","type":"uint256"},{"internalType":"uint256","name":"_rewardLockupEpochs","type":"uint256"}],"name":"masonrySetLockUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"masonrySetOperator","outputs":[],"stateMutability":"nonpayable","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":"previousEpochFatmPrice","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":"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":"address","name":"_fatmOracle","type":"address"}],"name":"setFatmOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fatmPriceCeiling","type":"uint256"}],"name":"setFatmPriceCeiling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_masonry","type":"address"}],"name":"setMasonry","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":[],"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"}]
Contract Creation Code
60806040526001805460ff60a01b191690556000600381905560045534801561002757600080fd5b50614703806100376000396000f3fe608060405234801561001057600080fd5b50600436106104275760003560e01c806381d11eaf1161022b578063b6237b3411610130578063d4b14944116100b8578063da3ed41911610087578063da3ed419146109bf578063e90b2454146109c7578063efc0ef29146109cf578063f14698de146109d7578063fcb6f008146109df57610427565b8063d4b1494414610963578063d5d3b26c14610989578063d78ceb5b146109af578063d98f2495146109b757610427565b8063c5967c26116100ff578063c5967c2614610926578063c8412d021461092e578063c8f987f314610936578063cecce38e1461093e578063d0a8c8011461095b57610427565b8063b6237b34146108a1578063b8a878f9146108c7578063bcc81f19146108cf578063be266d541461090957610427565b8063951357d4116101b3578063a204452b11610182578063a204452b14610846578063a71bfbf814610863578063b3ab15fb1461086b578063b4d1d79514610891578063b4f085071461089957610427565b8063951357d4146107b957806398b762a1146107ef578063998200251461080c578063a0487eea1461082957610427565b80638d934f74116101fa5780638d934f7414610743578063900cf0cf1461074b57806391bbfed5146107535780639379cf2b14610776578063940e60641461079357610427565b806381d11eaf146106f957806382cad83814610701578063874106cc1461071e5780638c664db61461072657610427565b806340af7ba5116103315780635a0fc79c116102b957806363f96cf41161028857806363f96cf4146106b657806372c054f9146106be578063734f7096146106c657806378b9ba2a146106e957806378e97925146106f157610427565b80635a0fc79c146106785780635ad58326146106805780635b7561791461068857806362ac58e41461069057610427565b806354f04a111161030057806354f04a111461062057806355ebdeef14610643578063570ca7351461064b578063591663e11461065357806359bf5d391461067057610427565b806340af7ba5146105a85780634390d2a8146105c5578063499f3f19146105cd57806354575af4146105ea57610427565b8063154ec2db116103b457806329ef19191161038357806329ef1919146105805780632e9c7b651461058857806333a3ea6014610590578063392e53cd146105985780634013a08e146105a057610427565b8063154ec2db14610537578063158ef93e1461055457806322f832cd1461057057806325862b791461057857610427565b80630b5bcec7116103fb5780630b5bcec7146104915780630cf60175146104ae5780630db7eb0b146104b6578063118ebbf9146104be5780631460e390146104e157610427565b8062ca07b01461042c5780630249392c1461045057806303be7e761461046a57806304e5c7b114610472575b600080fd5b6104346109e7565b604080516001600160a01b039092168252519081900360200190f35b6104586109f6565b60408051918252519081900360200190f35b610458610ad1565b61048f6004803603602081101561048857600080fd5b5035610ad7565b005b61048f600480360360208110156104a757600080fd5b5035610ba6565b610458610c42565b610458610cf4565b61048f600480360360408110156104d457600080fd5b5080359060200135610d96565b61048f600480360360e08110156104f757600080fd5b506001600160a01b038135811691602081013582169160408201358116916060810135821691608082013581169160a08101359091169060c001356113f3565b61048f6004803603602081101561054d57600080fd5b5035611727565b61055c6117cc565b604080519115158252519081900360200190f35b6104586117dc565b6104586117e2565b6104586117e8565b6104586117ee565b6104346117f4565b61055c611803565b610458611813565b61048f600480360360208110156105be57600080fd5b5035611819565b6104346118be565b61048f600480360360208110156105e357600080fd5b50356118cd565b61048f6004803603606081101561060057600080fd5b506001600160a01b0381358116916020810135916040909101351661196a565b61048f6004803603604081101561063657600080fd5b5080359060200135611aaf565b6104586121ee565b6104346121f4565b61048f6004803603602081101561066957600080fd5b5035612203565b6104586122a5565b6104586122ab565b6104586122b1565b61048f6123b8565b61048f600480360360208110156106a657600080fd5b50356001600160a01b0316612a6a565b610434612b1c565b610458612b2b565b61048f600480360360408110156106dc57600080fd5b5080359060200135612beb565b610458612ca4565b610458612de4565b610458612dea565b6104346004803603602081101561071757600080fd5b5035612df0565b610458612e17565b61048f6004803603602081101561073c57600080fd5b5035612e1d565b610434612ebf565b610458612ece565b61048f6004803603604081101561076957600080fd5b5080359060200135612ed4565b61048f6004803603602081101561078c57600080fd5b5035612fcc565b61055c600480360360408110156107a957600080fd5b5060ff8135169060200135613086565b61048f600480360360608110156107cf57600080fd5b506001600160a01b038135811691602081013591604090910135166131a2565b61048f6004803603602081101561080557600080fd5b5035613265565b6104586004803603602081101561082257600080fd5b50356132b3565b6104586004803603602081101561083f57600080fd5b50356132d1565b61048f6004803603602081101561085c57600080fd5b50356132de565b61045861332c565b61048f6004803603602081101561088157600080fd5b50356001600160a01b0316613332565b61045861339d565b6104586133a3565b61048f600480360360208110156108b757600080fd5b50356001600160a01b03166133a9565b610458613414565b61048f600480360360808110156108e557600080fd5b506001600160a01b038135811691602081013591604082013516906060013561341a565b61048f6004803603602081101561091f57600080fd5b50356135af565b610458613645565b61045861366f565b610458613675565b61048f6004803603602081101561095457600080fd5b503561367b565b61043461371c565b61055c6004803603604081101561097957600080fd5b5060ff813516906020013561372b565b61048f6004803603602081101561099f57600080fd5b50356001600160a01b0316613825565b610434613890565b61045861389f565b6104586138a5565b6104586138ab565b6104586138b1565b610458613913565b610458613919565b600a546001600160a01b031681565b600a5460065460408051633ddac95360e01b81526001600160a01b039283166004820152670de0b6b3a7640000602482015290516000939290921691633ddac95391604480820192602092909190829003018186803b158015610a5857600080fd5b505afa925050508015610a7d57506040513d6020811015610a7857600080fd5b505160015b610ab85760405162461bcd60e51b81526004018080602001828103825260368152602001806144a66036913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff16905090565b60215481565b6001546001600160a01b03163314610b205760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b600c54811015610b615760405162461bcd60e51b815260040180806020018281038252602a815260200180614400602a913960400191505060405180910390fd5b6096811115610ba15760405162461bcd60e51b815260040180806020018281038252602481526020018061442a6024913960400191505060405180910390fd5b601b55565b6001546001600160a01b03163314610bef5760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b600a8110158015610c0257506103e88111155b610c3d5760405162461bcd60e51b815260040180806020018281038252602881526020018061457b6028913960400191505060405180910390fd5b601055565b600080610c4d6109f6565b9050600b548111610cf057601a54610c6957600b549150610cf0565b6000610c9282610c8c670de0b6b3a7640000600b5461391f90919063ffffffff16565b9061397f565b90506000610cbd612710610c8c601a54610cb7600b54876139e690919063ffffffff16565b9061391f565b600b54909150610ccd9082613a43565b93506000601854118015610ce2575060185484115b15610ced5760185493505b50505b5090565b600080610cff6109f6565b9050600c54811115610cf0576000610d296064610c8c601b54600b5461391f90919063ffffffff16565b9050808210610d8b576000610d55612710610c8c601c54610cb7600b54886139e690919063ffffffff16565b600b54909150610d659082613a43565b93506000601954118015610d7a575060195484115b15610d855760195493505b50610d91565b600b5492505b505090565b610d9e613a9d565b15610dda5760405162461bcd60e51b815260040180806020018281038252602681526020018061461a6026913960400191505060405180910390fd5b610de2613abc565b15610e1e5760405162461bcd60e51b815260040180806020018281038252602681526020018061461a6026913960400191505060405180910390fd5b600254421015610e71576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d6020811015610edf57600080fd5b50516001600160a01b0316148015610f6d57506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610f3657600080fd5b505afa158015610f4a573d6000803e3d6000fd5b505050506040513d6020811015610f6057600080fd5b50516001600160a01b0316145b8015610fef57506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610fb857600080fd5b505afa158015610fcc573d6000803e3d6000fd5b505050506040513d6020811015610fe257600080fd5b50516001600160a01b0316145b801561107157506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561103a57600080fd5b505afa15801561104e573d6000803e3d6000fd5b505050506040513d602081101561106457600080fd5b50516001600160a01b0316145b6110c2576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b600082116111015760405162461bcd60e51b815260040180806020018281038252602e8152602001806143d2602e913960400191505060405180910390fd5b600061110b6109f6565b9050818114611161576040805162461bcd60e51b815260206004820152601a60248201527f54726561737572793a204641544d207072696365206d6f766564000000000000604482015290519081900360640190fd5b600c5481116111a15760405162461bcd60e51b81526004018080602001828103825260328152602001806144746032913960400191505060405180910390fd5b60006111ab610cf4565b905060008111611202576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e6420726174650000000000604482015290519081900360640190fd5b600061121a670de0b6b3a7640000610c8c878561391f565b600654604080516370a0823160e01b8152306004820152905192935083926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561126a57600080fd5b505afa15801561127e573d6000803e3d6000fd5b505050506040513d602081101561129457600080fd5b505110156112d35760405162461bcd60e51b81526004018080602001828103825260258152602001806144dc6025913960400191505060405180910390fd5b6112eb6112e2600d5483613adb565b600d54906139e6565b600d556007546040805163079cc67960e41b81523360048201526024810188905290516001600160a01b03909216916379cc67909160448082019260009290919082900301818387803b15801561134157600080fd5b505af1158015611355573d6000803e3d6000fd5b505060065461137192506001600160a01b031690503383613af1565b611379613b43565b6040805182815260208101879052815133927f51e0d16595cabc591e64da08e45bb223577e5b9a39cd947b4ddc3472b2dd8878928290030190a25050436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055505050565b600154600160a01b900460ff1615611452576040805162461bcd60e51b815260206004820152601d60248201527f54726561737572793a20616c726561647920696e697469616c697a6564000000604482015290519081900360640190fd5b600680546001600160a01b03199081166001600160a01b038a811691909117909255600780548216898416179055600880548216888416179055600a80548216878416179055600980549091169185169190911790556002819055670de0b6b3a7640000600b8190556114cd90606490610c8c90606561391f565b600c556005805460018101825560009182527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319166001600160a01b03851617905560408051610120810182529182526969e10de76676d0800000602083015269d3c21bcecceda1000000908201526a013da329b633647180000060608201526a01a784379d99db4200000060808201526a0422ca8b0a00a42500000060a08201526a084595161401484a00000060c08201526a108b2a2c2802909400000060e08201526a295be96e640669720000006101008201526115bc90600e906009614325565b5060408051610120810182526101c28152610190602082015261015e9181019190915261012c606082015260fa608082015260c860a0820152609660c0820152607d60e0820152606461010082015261161990600f90600961437b565b50610190601055612710601155610dac601281905561012c601355601455606e601b55611b58601c55600c6015556101f4601655600654604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561169857600080fd5b505afa1580156116ac573d6000803e3d6000fd5b505050506040513d60208110156116c257600080fd5b5051600d55600180546001600160a01b031960ff60a01b19909116600160a01b1716339081179091556040805143815290517f25ff68dd81b34665b5ba7e553ee5511bf6812e12adb4a7e2c0d9e26b3099ce799181900360200190a250505050505050565b6001546001600160a01b031633146117705760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b614e208111156117c7576040805162461bcd60e51b815260206004820152601d60248201527f5f646973636f756e7450657263656e74206973206f7665722032303025000000604482015290519081900360640190fd5b601a55565b600154600160a01b900460ff1681565b60125481565b600c5481565b601a5481565b60195481565b6006546001600160a01b031681565b600154600160a01b900460ff1690565b601d5481565b6001546001600160a01b031633146118625760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b614e208111156118b9576040805162461bcd60e51b815260206004820152601c60248201527f5f7072656d69756d50657263656e74206973206f766572203230302500000000604482015290519081900360640190fd5b601c55565b6020546001600160a01b031681565b6001546001600160a01b031633146119165760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b612710811015801561192a5750614e208111155b6119655760405162461bcd60e51b81526004018080602001828103825260298152602001806145526029913960400191505060405180910390fd5b601d55565b6001546001600160a01b031633146119b35760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b6006546001600160a01b03848116911614156119ff576040805162461bcd60e51b815260206004808301919091526024820152636661746d60e01b604482015290519081900360640190fd5b6007546001600160a01b0384811691161415611a4b576040805162461bcd60e51b81526020600480830191909152602482015263189bdb9960e21b604482015290519081900360640190fd5b6008546001600160a01b0384811691161415611a96576040805162461bcd60e51b8152602060048201526005602482015264736861726560d81b604482015290519081900360640190fd5b611aaa6001600160a01b0384168284613af1565b505050565b611ab7613a9d565b15611af35760405162461bcd60e51b815260040180806020018281038252602681526020018061461a6026913960400191505060405180910390fd5b611afb613abc565b15611b375760405162461bcd60e51b815260040180806020018281038252602681526020018061461a6026913960400191505060405180910390fd5b600254421015611b8a576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611bce57600080fd5b505afa158015611be2573d6000803e3d6000fd5b505050506040513d6020811015611bf857600080fd5b50516001600160a01b0316148015611c8657506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611c4f57600080fd5b505afa158015611c63573d6000803e3d6000fd5b505050506040513d6020811015611c7957600080fd5b50516001600160a01b0316145b8015611d0857506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611cd157600080fd5b505afa158015611ce5573d6000803e3d6000fd5b505050506040513d6020811015611cfb57600080fd5b50516001600160a01b0316145b8015611d8a57506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611d5357600080fd5b505afa158015611d67573d6000803e3d6000fd5b505050506040513d6020811015611d7d57600080fd5b50516001600160a01b0316145b611ddb576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b60008211611e1a5760405162461bcd60e51b81526004018080602001828103825260308152602001806145226030913960400191505060405180910390fd5b6000611e246109f6565b9050818114611e7a576040805162461bcd60e51b815260206004820152601a60248201527f54726561737572793a204641544d207072696365206d6f766564000000000000604482015290519081900360640190fd5b600b548110611eba5760405162461bcd60e51b81526004018080602001828103825260328152602001806144746032913960400191505060405180910390fd5b600454831115611efb5760405162461bcd60e51b815260040180806020018281038252602a815260200180614676602a913960400191505060405180910390fd5b6000611f05610c42565b905060008111611f5c576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e6420726174650000000000604482015290519081900360640190fd5b6000611f74670de0b6b3a7640000610c8c878561391f565b90506000611f80612ca4565b9050600061200883600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611fd657600080fd5b505afa158015611fea573d6000803e3d6000fd5b505050506040513d602081101561200057600080fd5b505190613a43565b9050612025612710610c8c6014548561391f90919063ffffffff16565b81111561206f576040805162461bcd60e51b81526020600482015260136024820152726f766572206d6178206465627420726174696f60681b604482015290519081900360640190fd5b6006546040805163079cc67960e41b8152336004820152602481018a905290516001600160a01b03909216916379cc67909160448082019260009290919082900301818387803b1580156120c257600080fd5b505af11580156120d6573d6000803e3d6000fd5b5050600754604080516340c10f1960e01b81523360048201526024810188905290516001600160a01b0390921693506340c10f1992506044808201926020929091908290030181600087803b15801561212e57600080fd5b505af1158015612142573d6000803e3d6000fd5b505050506040513d602081101561215857600080fd5b505060045461216790886139e6565b600455612172613b43565b6040805188815260208101859052815133927f73017f1b70789e2e66759eeb3c7ec11f59e6eedb55d921cfaec5410dd42a4799928290030190a25050436000908152602081815260408083203284529091528082208054600160ff19918216811790925533845291909220805490911690911790555050505050565b601f5481565b6001546001600160a01b031681565b6001546001600160a01b0316331461224c5760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b6103e8811015801561226057506127108111155b6122a0576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601455565b600d5490565b600d5481565b6000806122bc6109f6565b9050600b548111610cf05760006122d1612ca4565b905060006122f0612710610c8c6014548561391f90919063ffffffff16565b90506000600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561234257600080fd5b505afa158015612356573d6000803e3d6000fd5b505050506040513d602081101561236c57600080fd5b50519050808211156123b157600061238483836139e6565b9050600061239e670de0b6b3a7640000610c8c848961391f565b90506123ac60045482613adb565b965050505b5050505090565b6123c0613a9d565b156123fc5760405162461bcd60e51b815260040180806020018281038252602681526020018061461a6026913960400191505060405180910390fd5b612404613abc565b156124405760405162461bcd60e51b815260040180806020018281038252602681526020018061461a6026913960400191505060405180910390fd5b600254421015612493576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b61249b613645565b4210156124ef576040805162461bcd60e51b815260206004820152601860248201527f54726561737572793a206e6f74206f70656e6564207965740000000000000000604482015290519081900360640190fd5b6006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561253357600080fd5b505afa158015612547573d6000803e3d6000fd5b505050506040513d602081101561255d57600080fd5b50516001600160a01b03161480156125eb57506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b1580156125b457600080fd5b505afa1580156125c8573d6000803e3d6000fd5b505050506040513d60208110156125de57600080fd5b50516001600160a01b0316145b801561266d57506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561263657600080fd5b505afa15801561264a573d6000803e3d6000fd5b505050506040513d602081101561266057600080fd5b50516001600160a01b0316145b80156126ef57506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b1580156126b857600080fd5b505afa1580156126cc573d6000803e3d6000fd5b505050506040513d60208110156126e257600080fd5b50516001600160a01b0316145b612740576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b612748613b43565b6127506109f6565b601755600d5460009061276b90612765612ca4565b906139e6565b905060155460035410156127a15761279c612797612710610c8c6016548561391f90919063ffffffff16565b613ba7565b6129ee565b600c5460175411156129ee57600754604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b1580156127f257600080fd5b505afa158015612806573d6000803e3d6000fd5b505050506040513d602081101561281c57600080fd5b5051600b54601754919250600091612833916139e6565b9050600080600061284d655af3107a4000610cb788613ee7565b90508084111561285b578093505b612876612710610c8c6011548861391f90919063ffffffff16565b600d541061289b57612894670de0b6b3a7640000610c8c888761391f565b9150612907565b60006128b3670de0b6b3a7640000610c8c898861391f565b90506128d0612710610c8c6012548461391f90919063ffffffff16565b92506128dc81846139e6565b601d549094501561290557612902612710610c8c601d548761391f90919063ffffffff16565b93505b505b81156129165761291682613ba7565b82156129e857600d546129299084613a43565b600d55600654604080516340c10f1960e01b81523060048201526024810186905290516001600160a01b03909216916340c10f19916044808201926020929091908290030181600087803b15801561298057600080fd5b505af1158015612994573d6000803e3d6000fd5b505050506040513d60208110156129aa57600080fd5b5050604080514281526020810185905281517ff705142bf09f04297640495ddf7c59b7fd6f51894c5aea9602d631cf05f0efc2929181900390910190a15b50505050505b506003546129fd906001613a43565b600355600c54612a0b6109f6565b11612a2957612a24612710610c8c601354610cb7612ca4565b612a2c565b60005b600455436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055565b6001546001600160a01b03163314612ab35760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b6009546040805163b3ab15fb60e01b81526001600160a01b0384811660048301529151919092169163b3ab15fb91602480830192600092919082900301818387803b158015612b0157600080fd5b505af1158015612b15573d6000803e3d6000fd5b5050505050565b6009546001600160a01b031681565b600080612b366109f6565b9050600c54811115610cf057600654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015612b8d57600080fd5b505afa158015612ba1573d6000803e3d6000fd5b505050506040513d6020811015612bb757600080fd5b505190506000612bc5610cf4565b90508015610ced57612be381610c8c84670de0b6b3a764000061391f565b935050505090565b6001546001600160a01b03163314612c345760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b60095460408051632ffaaa0960e01b8152600481018590526024810184905290516001600160a01b0390921691632ffaaa099160448082019260009290919082900301818387803b158015612c8857600080fd5b505af1158015612c9c573d6000803e3d6000fd5b505050505050565b600654604080516318160ddd60e01b815290516000926001600160a01b031691839183916318160ddd916004808301926020929190829003018186803b158015612ced57600080fd5b505afa158015612d01573d6000803e3d6000fd5b505050506040513d6020811015612d1757600080fd5b505190506000805b60055460ff82161015612dd957612dcf846001600160a01b03166370a0823160058460ff1681548110612d4e57fe5b60009182526020918290200154604080516001600160e01b031960e086901b1681526001600160a01b0390921660048301525160248083019392829003018186803b158015612d9c57600080fd5b505afa158015612db0573d6000803e3d6000fd5b505050506040513d6020811015612dc657600080fd5b50518390613a43565b9150600101612d1f565b50612be382826139e6565b60025481565b60115481565b60058181548110612dfd57fe5b6000918252602090912001546001600160a01b0316905081565b60165481565b6001546001600160a01b03163314612e665760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b6101f48110158015612e7a57506127108111155b612eba576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601155565b601e546001600160a01b031681565b60035481565b6001546001600160a01b03163314612f1d5760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b6078821115612f73576040805162461bcd60e51b815260206004820152601e60248201527f5f626f6f74737472617045706f6368733a206f7574206f662072616e67650000604482015290519081900360640190fd5b60648110158015612f8657506103e88111155b612fc15760405162461bcd60e51b815260040180806020018281038252602e8152602001806146a0602e913960400191505060405180910390fd5b601591909155601655565b6001546001600160a01b031633146130155760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b600b548110158015613041575061303d6064610c8c6078600b5461391f90919063ffffffff16565b8111155b613081576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b600c55565b6001546000906001600160a01b031633146130d25760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b60098360ff16106131145760405162461bcd60e51b81526004018080602001828103825260298152602001806145a36029913960400191505060405180910390fd5b60ff83161561314657600e6001840360ff168154811061313057fe5b9060005260206000200154821161314657600080fd5b60088360ff16101561317b57600e8360010160ff168154811061316557fe5b9060005260206000200154821061317b57600080fd5b81600e8460ff168154811061318c57fe5b6000918252602090912001555060015b92915050565b6001546001600160a01b031633146131eb5760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b60095460408051631515d6bd60e21b81526001600160a01b038681166004830152602482018690528481166044830152915191909216916354575af491606480830192600092919082900301818387803b15801561324857600080fd5b505af115801561325c573d6000803e3d6000fd5b50505050505050565b6001546001600160a01b031633146132ae5760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b601855565b600e81815481106132c057fe5b600091825260209091200154905081565b600f81815481106132c057fe5b6001546001600160a01b031633146133275760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b601955565b600b5481565b6001546001600160a01b0316331461337b5760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61546081565b60175481565b6001546001600160a01b031633146133f25760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60185481565b6001546001600160a01b031633146134635760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b6001600160a01b0384166134a7576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b610bb88311156134ed576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b6001600160a01b038216613531576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b6103e8811115613577576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601e80546001600160a01b03199081166001600160a01b0396871617909155601f939093556020805490931691909316179055602155565b6001546001600160a01b031633146135f85760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b600954604080516397ffe1d760e01b81526004810184905290516001600160a01b03909216916397ffe1d79160248082019260009290919082900301818387803b158015612b0157600080fd5b600061366a61366161546060035461391f90919063ffffffff16565b60025490613a43565b905090565b601c5481565b601b5481565b6001546001600160a01b031633146136c45760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b606481101580156136d757506105dc8111155b613717576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601355565b6008546001600160a01b031681565b6001546000906001600160a01b031633146137775760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b60098360ff16106137b95760405162461bcd60e51b81526004018080602001828103825260298152602001806145a36029913960400191505060405180910390fd5b600a82101580156137cc57506103e88211155b613814576040805162461bcd60e51b81526020600482015260146024820152735f76616c75653a206f7574206f662072616e676560601b604482015290519081900360640190fd5b81600f8460ff168154811061318c57fe5b6001546001600160a01b0316331461386e5760405162461bcd60e51b81526004018080602001828103825260248152602001806145cc6024913960400191505060405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b031681565b60105481565b60145481565b60135481565b600a5460065460408051630d01142560e31b81526001600160a01b039283166004820152670de0b6b3a7640000602482015290516000939290921691636808a12891604480820192602092909190829003018186803b158015610a5857600080fd5b60155481565b60045481565b60008261392e5750600061319c565b8282028284828161393b57fe5b04146139785760405162461bcd60e51b81526004018080602001828103825260218152602001806145016021913960400191505060405180910390fd5b9392505050565b60008082116139d5576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816139de57fe5b049392505050565b600082821115613a3d576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015613978576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b4360009081526020818152604080832032845290915290205460ff1690565b4360009081526020818152604080832033845290915290205460ff1690565b6000818310613aea5781613978565b5090919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611aaa908490613f44565b600a60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613b9357600080fd5b505af1925050508015613ba4575060015b50565b600654604080516340c10f1960e01b81523060048201526024810184905290516001600160a01b03909216916340c10f19916044808201926020929091908290030181600087803b158015613bfb57600080fd5b505af1158015613c0f573d6000803e3d6000fd5b505050506040513d6020811015613c2557600080fd5b5050601f5460009015613d1057613c4d612710610c8c601f548561391f90919063ffffffff16565b600654601e546040805163a9059cbb60e01b81526001600160a01b03928316600482015260248101859052905193945091169163a9059cbb916044808201926020929091908290030181600087803b158015613ca857600080fd5b505af1158015613cbc573d6000803e3d6000fd5b505050506040513d6020811015613cd257600080fd5b5050604080514281526020810183905281517fcb3f34aaa3445b461e6da5492dc89e5c257a59fa598131f3b6bbc97a3638e409929181900390910190a15b60215460009015613df657613d36612710610c8c6021548661391f90919063ffffffff16565b600654602080546040805163a9059cbb60e01b81526001600160a01b03928316600482015260248101869052905194955092169263a9059cbb9260448082019392918290030181600087803b158015613d8e57600080fd5b505af1158015613da2573d6000803e3d6000fd5b505050506040513d6020811015613db857600080fd5b5050604080514281526020810183905281517fdc8b715b18523e58b7fd0da53259dfa91efd91df4a854d94b136e3333a3b9395929181900390910190a15b613e048161276585856139e6565b600954600654919450613e25916001600160a01b0390811691166000613ff5565b600954600654613e42916001600160a01b03918216911685613ff5565b600954604080516397ffe1d760e01b81526004810186905290516001600160a01b03909216916397ffe1d79160248082019260009290919082900301818387803b158015613e8f57600080fd5b505af1158015613ea3573d6000803e3d6000fd5b5050604080514281526020810187905281517fa72fa2f263b243b0f0e1fec5f3d49d33de573d15929b6b730c6b8ab3838c1c4d9450908190039091019150a1505050565b600060085b600e8160ff1681548110613efc57fe5b90600052602060002001548310613f3157600f8160ff1681548110613f1d57fe5b600091825260209091200154601055613f3a565b60001901613eec565b5050601054919050565b6060613f99826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166141089092919063ffffffff16565b805190915015611aaa57808060200190516020811015613fb857600080fd5b5051611aaa5760405162461bcd60e51b815260040180806020018281038252602a8152602001806145f0602a913960400191505060405180910390fd5b80158061407b575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561404d57600080fd5b505afa158015614061573d6000803e3d6000fd5b505050506040513d602081101561407757600080fd5b5051155b6140b65760405162461bcd60e51b81526004018080602001828103825260368152602001806146406036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611aaa908490613f44565b6060614117848460008561411f565b949350505050565b6060824710156141605760405162461bcd60e51b815260040180806020018281038252602681526020018061444e6026913960400191505060405180910390fd5b6141698561427b565b6141ba576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106141f95780518252601f1990920191602091820191016141da565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461425b576040519150601f19603f3d011682016040523d82523d6000602084013e614260565b606091505b5091509150614270828286614281565b979650505050505050565b3b151590565b60608315614290575081613978565b8251156142a05782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156142ea5781810151838201526020016142d2565b50505050905090810190601f1680156143175780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b82805482825590600052602060002090810192821561436f579160200282015b8281111561436f57825182906affffffffffffffffffffff16905591602001919060010190614345565b50610cf09291506143bc565b82805482825590600052602060002090810192821561436f579160200282015b8281111561436f578251829061ffff1690559160200191906001019061439b565b5b80821115610cf057600081556001016143bd56fe54726561737572793a2063616e6e6f742072656465656d20626f6e64732077697468207a65726f20616d6f756e745f7072656d69756d5468726573686f6c642065786365656473206661746d50726963654365696c696e675f7072656d69756d5468726573686f6c6420697320686967686572207468616e20312e35416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c54726561737572793a206661746d5072696365206e6f7420656c696769626c6520666f7220626f6e6420707572636861736554726561737572793a206661696c656420746f20636f6e73756c74204641544d2070726963652066726f6d20746865206f7261636c6554726561737572793a20747265617375727920686173206e6f206d6f726520627564676574536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7754726561737572793a2063616e6e6f7420707572636861736520626f6e64732077697468207a65726f20616d6f756e745f6d696e74696e67466163746f72466f72506179696e67446562743a206f7574206f662072616e67655f6d6178537570706c79457870616e73696f6e50657263656e743a206f7574206f662072616e6765496e6465782068617320746f206265206c6f776572207468616e20636f756e74206f6620746965727354726561737572793a2063616c6c6572206973206e6f7420746865206f70657261746f725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564436f6e747261637447756172643a206f6e6520626c6f636b2c206f6e652066756e6374696f6e5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636554726561737572793a206e6f7420656e6f75676820626f6e64206c65667420746f2070757263686173655f626f6f747374726170537570706c79457870616e73696f6e50657263656e743a206f7574206f662072616e6765a2646970667358221220e6c5f96f7a5a1da4efa91188e348bfb961ae75a049bc4969efaf73abd48b6c4864736f6c634300060c0033
Deployed ByteCode Sourcemap
32018:22369:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32768:25;;;:::i;:::-;;;;-1:-1:-1;;;;;32768:25:0;;;;;;;;;;;;;;36051:296;;;:::i;:::-;;;;;;;;;;;;;;;;33950:35;;;:::i;45630:320::-;;;;;;;;;;;;;;;;-1:-1:-1;45630:320:0;;:::i;:::-;;41903:319;;;;;;;;;;;;;;;;-1:-1:-1;41903:319:0;;:::i;37948:723::-;;;:::i;38679:773::-;;;:::i;48457:1092::-;;;;;;;;;;;;;;;;-1:-1:-1;48457:1092:0;;;;;;;:::i;39506:1777::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39506:1777:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;45415:207::-;;;;;;;;;;;;;;;;-1:-1:-1;45415:207:0;;:::i;32376:31::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;33102:47;;;:::i;32850:31::-;;;:::i;33649:30::-;;;:::i;33590:29::-;;;:::i;32656:19::-;;;:::i;35803:89::-;;;:::i;33760:41::-;;;:::i;45958:201::-;;;;;;;;;;;;;;;;-1:-1:-1;45958:201:0;;:::i;33921:22::-;;;:::i;46167:330::-;;;;;;;;;;;;;;;;-1:-1:-1;46167:330:0;;:::i;53233:421::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;53233:421:0;;;;;;;;;;;;;;;;;:::i;47139:1310::-;;;;;;;;;;;;;;;;-1:-1:-1;47139:1310:0;;;;;;;:::i;33877:35::-;;;:::i;32330:23::-;;;:::i;43753:257::-;;;;;;;;;;;;;;;;-1:-1:-1;43753:257:0;;:::i;36679:94::-;;;:::i;32890:31::-;;;:::i;36781:724::-;;;:::i;50962:2263::-;;;:::i;53662:128::-;;;;;;;;;;;;;;;;-1:-1:-1;53662:128:0;-1:-1:-1;;;;;53662:128:0;;:::i;32739:22::-;;;:::i;37513:427::-;;;:::i;53798:198::-;;;;;;;;;;;;;;;;-1:-1:-1;53798:198:0;;;;;;;:::i;46665:466::-;;;:::i;32430:24::-;;;:::i;33055:40::-;;;:::i;32583:::-;;;;;;;;;;;;;;;;-1:-1:-1;32583:40:0;;:::i;33363:46::-;;;:::i;43143:291::-;;;;;;;;;;;;;;;;-1:-1:-1;43143:291:0;;:::i;33848:22::-;;;:::i;32461:24::-;;;:::i;44018:499::-;;;;;;;;;;;;;;;;-1:-1:-1;44018:499:0;;;;;;;:::i;41622:273::-;;;;;;;;;;;;;;;;-1:-1:-1;41622:273:0;;:::i;42230:492::-;;;;;;;;;;;;;;;;-1:-1:-1;42230:492:0;;;;;;;;;:::i;54150:234::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54150:234:0;;;;;;;;;;;;;;;;;:::i;45145:129::-;;;;;;;;;;;;;;;;-1:-1:-1;45145:129:0;;:::i;32930:28::-;;;;;;;;;;;;;;;;-1:-1:-1;32930:28:0;;:::i;32965:34::-;;;;;;;;;;;;;;;;-1:-1:-1;32965:34:0;;:::i;45282:125::-;;;;;;;;;;;;;;;;-1:-1:-1;45282:125:0;;:::i;32816:27::-;;;:::i;41291:101::-;;;;;;;;;;;;;;;;-1:-1:-1;41291:101:0;-1:-1:-1;;;;;41291:101:0;;:::i;32211:40::-;;;:::i;33485:37::-;;;:::i;41505:109::-;;;;;;;;;;;;;;;;-1:-1:-1;41505:109:0;-1:-1:-1;;;;;41505:109:0;;:::i;33529:30::-;;;:::i;44525:612::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44525:612:0;;;;;;;;;;;;;;;;;;;;:::i;54004:138::-;;;;;;;;;;;;;;;;-1:-1:-1;54004:138:0;;:::i;35914:114::-;;;:::i;33724:29::-;;;:::i;33686:31::-;;;:::i;43442:303::-;;;;;;;;;;;;;;;;-1:-1:-1;43442:303:0;;:::i;32709:21::-;;;:::i;42730:405::-;;;;;;;;;;;;;;;;-1:-1:-1;42730:405:0;;;;;;;;;:::i;41400:97::-;;;;;;;;;;;;;;;;-1:-1:-1;41400:97:0;-1:-1:-1;;;;;41400:97:0;;:::i;32682:20::-;;;:::i;33008:40::-;;;:::i;33205:34::-;;;:::i;33156:42::-;;;:::i;36355:301::-;;;:::i;33326:30::-;;;:::i;32492:45::-;;;:::i;32768:25::-;;;-1:-1:-1;;;;;32768:25:0;;:::o;36051:296::-;36138:10;;36158:4;;36130:39;;;-1:-1:-1;;;36130:39:0;;-1:-1:-1;;;;;36158:4:0;;;36130:39;;;;36164:4;36130:39;;;;;;36096:17;;36138:10;;;;;36130:27;;:39;;;;;;;;;;;;;;;36138:10;36130:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36130:39:0;;;36126:214;;36264:64;;-1:-1:-1;;;36264:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36126:214;36216:14;;;-1:-1:-1;36051:296:0;:::o;33950:35::-;;;;:::o;45630:320::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45748:16:::1;;45727:17;:37;;45719:92;;;;-1:-1:-1::0;;;45719:92:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45851:3;45830:17;:24;;45822:73;;;;-1:-1:-1::0;;;45822:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45906:16;:36:::0;45630:320::o;41903:319::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42049:2:::1;42019:26;:32;;:70;;;;;42085:4;42055:26;:34;;42019:70;42011:123;;;;-1:-1:-1::0;;;42011:123:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42160:25;:54:::0;41903:319::o;37948:723::-;38000:13;38026:18;38047:14;:12;:14::i;:::-;38026:35;;38090:12;;38076:10;:26;38072:592;;38123:15;;38119:534;;38204:12;;38196:20;;38119:534;;;38257:19;38279:38;38306:10;38279:22;38296:4;38279:12;;:16;;:22;;;;:::i;:::-;:26;;:38::i;:::-;38257:60;;38354:23;38380:61;38435:5;38380:50;38414:15;;38380:29;38396:12;;38380:11;:15;;:29;;;;:::i;:::-;:33;;:50::i;:61::-;38468:12;;38354:87;;-1:-1:-1;38468:33:0;;38354:87;38468:16;:33::i;:::-;38460:41;;38542:1;38524:15;;:19;:46;;;;;38555:15;;38547:5;:23;38524:46;38520:118;;;38603:15;;38595:23;;38520:118;38119:534;;;37948:723;;:::o;38679:773::-;38730:13;38756:18;38777:14;:12;:14::i;:::-;38756:35;;38819:16;;38806:10;:29;38802:643;;;38852:34;38889:43;38928:3;38889:34;38906:16;;38889:12;;:16;;:34;;;;:::i;:43::-;38852:80;;38965:26;38951:10;:40;38947:487;;39044:22;39069:59;39122:5;39069:48;39102:14;;39069:28;39084:12;;39069:10;:14;;:28;;;;:::i;:59::-;39155:12;;39044:84;;-1:-1:-1;39155:32:0;;39044:84;39155:16;:32::i;:::-;39147:40;;39227:1;39210:14;;:18;:44;;;;;39240:14;;39232:5;:22;39210:44;39206:115;;;39287:14;;39279:22;;39206:115;38947:487;;;;39406:12;;39398:20;;38947:487;38802:643;38679:773;;:::o;48457:1092::-;30052:28;:26;:28::i;:::-;30051:29;30043:80;;;;-1:-1:-1;;;30043:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30143:28;:26;:28::i;:::-;30142:29;30134:80;;;;-1:-1:-1;;;30134:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34869:9:::1;;34862:3;:16;;34854:54;;;::::0;;-1:-1:-1;;;34854:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;34854:54:0;;;;;;;;;;;;;::::1;;35312:4:::2;::::0;35300:28:::2;::::0;;-1:-1:-1;;;35300:28:0;;;;35340:4:::2;::::0;-1:-1:-1;;;;;35312:4:0::2;::::0;35300:26:::2;::::0;:28:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;35312:4;35300:28;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;35300:28:0;-1:-1:-1;;;;;35300:45:0::2;;:112:::0;::::2;;;-1:-1:-1::0;35378:5:0::2;::::0;35366:29:::2;::::0;;-1:-1:-1;;;35366:29:0;;;;35407:4:::2;::::0;-1:-1:-1;;;;;35378:5:0::2;::::0;35366:27:::2;::::0;:29:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;35378:5;35366:29;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;35366:29:0;-1:-1:-1;;;;;35366:46:0::2;;35300:112;:180;;;;-1:-1:-1::0;35445:6:0::2;::::0;35433:30:::2;::::0;;-1:-1:-1;;;35433:30:0;;;;35475:4:::2;::::0;-1:-1:-1;;;;;35445:6:0::2;::::0;35433:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;35445:6;35433:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;35433:30:0;-1:-1:-1;;;;;35433:47:0::2;;35300:180;:246;;;;-1:-1:-1::0;35510:7:0::2;::::0;35501:28:::2;::::0;;-1:-1:-1;;;35501:28:0;;;;35541:4:::2;::::0;-1:-1:-1;;;;;35510:7:0::2;::::0;35501:26:::2;::::0;:28:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;35510:7;35501:28;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;35501:28:0;-1:-1:-1;;;;;35501:45:0::2;;35300:246;35278:326;;;::::0;;-1:-1:-1;;;35278:326:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;48604:1:::3;48590:11;:15;48582:74;;;;-1:-1:-1::0;;;48582:74:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48669:17;48689:14;:12;:14::i;:::-;48669:34;;48735:11;48722:9;:24;48714:63;;;::::0;;-1:-1:-1;;;48714:63:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;48822:16;;48810:9;:28;48788:145;;;;-1:-1:-1::0;;;48788:145:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48946:13;48962:20;:18;:20::i;:::-;48946:36;;49009:1;49001:5;:9;48993:49;;;::::0;;-1:-1:-1;;;48993:49:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;49055:19;49077:32;49104:4;49077:22;:11:::0;49093:5;49077:15:::3;:22::i;:32::-;49135:4;::::0;49128:37:::3;::::0;;-1:-1:-1;;;49128:37:0;;49159:4:::3;49128:37;::::0;::::3;::::0;;;49055:54;;-1:-1:-1;49055:54:0;;-1:-1:-1;;;;;49135:4:0;;::::3;::::0;49128:22:::3;::::0;:37;;;;;::::3;::::0;;;;;;;;;49135:4;49128:37;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;49128:37:0;:52:::3;;49120:102;;;;-1:-1:-1::0;;;49120:102:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49254:61;49275:39;49284:16;;49302:11;49275:8;:39::i;:::-;49254:16;::::0;;:20:::3;:61::i;:::-;49235:16;:80:::0;49340:5:::3;::::0;49328:52:::3;::::0;;-1:-1:-1;;;49328:52:0;;49356:10:::3;49328:52;::::0;::::3;::::0;;;;;;;;;-1:-1:-1;;;;;49340:5:0;;::::3;::::0;49328:27:::3;::::0;:52;;;;;49340:5:::3;::::0;49328:52;;;;;;;;49340:5;;49328:52;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;-1:-1:-1::0;;49398:4:0::3;::::0;49391:50:::3;::::0;-1:-1:-1;;;;;;49398:4:0::3;::::0;-1:-1:-1;49417:10:0::3;49429:11:::0;49391:25:::3;:50::i;:::-;49454:18;:16;:18::i;:::-;49490:51;::::0;;;;;::::3;::::0;::::3;::::0;;;;;49504:10:::3;::::0;49490:51:::3;::::0;;;;;;::::3;-1:-1:-1::0;;30249:12:0;30241:7;:21;;;;;;;;;;;30263:9;30241:32;;;;;;;;:39;;30276:4;-1:-1:-1;;30241:39:0;;;;;;;;30313:10;30291:33;;;;;;:40;;;;;;;;;;-1:-1:-1;;;48457:1092:0:o;39506:1777::-;35678:11;;-1:-1:-1;;;35678:11:0;;;;35677:12;35669:54;;;;;-1:-1:-1;;;35669:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39758:4:::1;:12:::0;;-1:-1:-1;;;;;;39758:12:0;;::::1;-1:-1:-1::0;;;;;39758:12:0;;::::1;::::0;;;::::1;::::0;;;39781:5:::1;:14:::0;;;::::1;::::0;;::::1;;::::0;;39806:6:::1;:16:::0;;;::::1;::::0;;::::1;;::::0;;39833:10:::1;:24:::0;;;::::1;::::0;;::::1;;::::0;;39868:7:::1;:18:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;39897:9:::1;:22:::0;;;39947:6:::1;39932:12;:21:::0;;;39984:30:::1;::::0;40010:3:::1;::::0;39984:21:::1;::::0;40001:3:::1;39984:16;:21::i;:30::-;39965:16;:49:::0;40075:23:::1;:42:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;40075:42:0;;;;::::1;::::0;;-1:-1:-1;;;;;;40075:42:0::1;-1:-1:-1::0;;;;;40075:42:0;::::1;;::::0;;40172:145:::1;::::0;;::::1;::::0;::::1;::::0;;;;;40196:12:::1;40075:42;40172:145:::0;::::1;::::0;40210:13:::1;40172:145:::0;;;;40225:13:::1;40172:145:::0;;;;40240:13:::1;40172:145:::0;;;;40255:13:::1;40172:145:::0;;;;40270:14:::1;40172:145:::0;;;;40286:14:::1;40172:145:::0;;;;40302:14:::1;40075:42;40172:145:::0;;;::::1;::::0;:11:::1;::::0;:145:::1;;:::i;:::-;-1:-1:-1::0;40328:65:0::1;::::0;;::::1;::::0;::::1;::::0;;40349:3:::1;40328:65:::0;;40354:3:::1;40328:65;::::0;::::1;::::0;40359:3:::1;40328:65:::0;;;;;;;40364:3:::1;40328:65:::0;;;;40369:3:::1;40328:65:::0;;;;40374:3:::1;40328:65:::0;;;;40379:3:::1;40328:65:::0;;;;40384:3:::1;40328:65:::0;;;;40389:3:::1;40328:65:::0;;;;::::1;::::0;:17:::1;::::0;:65:::1;;:::i;:::-;-1:-1:-1::0;40434:3:0::1;40406:25;:31:::0;40512:5:::1;40484:25;:33:::0;40606:4:::1;40571:32;:39:::0;;;40701:3:::1;40671:27;:33:::0;40781:19:::1;:26:::0;40879:3:::1;40860:16;:22:::0;40910:4:::1;40893:14;:21:::0;40991:2:::1;40973:15;:20:::0;41038:3:::1;41004:31;:37:::0;-1:-1:-1;41129:4:0;41122:37:::1;::::0;;-1:-1:-1;;;41122:37:0;;41153:4:::1;41122:37;::::0;::::1;::::0;;;-1:-1:-1;;;;;41129:4:0;;::::1;::::0;41122:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;;41129:4;41122:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;41122:37:0;41103:16:::1;:56:::0;41186:4:::1;41172:18:::0;;-1:-1:-1;;;;;;;;;;41172:18:0;;::::1;-1:-1:-1::0;;;41172:18:0::1;41201:21;41212:10;41201:21:::0;;::::1;::::0;;;41238:37:::1;::::0;;41262:12:::1;41238:37:::0;;;;::::1;::::0;;;;41122::::1;41238::::0;;::::1;39506:1777:::0;;;;;;;:::o;45415:207::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45530:5:::1;45510:16;:25;;45502:67;;;::::0;;-1:-1:-1;;;45502:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;45580:15;:34:::0;45415:207::o;32376:31::-;;;-1:-1:-1;;;32376:31:0;;;;;:::o;33102:47::-;;;;:::o;32850:31::-;;;;:::o;33649:30::-;;;;:::o;33590:29::-;;;;:::o;32656:19::-;;;-1:-1:-1;;;;;32656:19:0;;:::o;35803:89::-;35873:11;;-1:-1:-1;;;35873:11:0;;;;;35803:89::o;33760:41::-;;;;:::o;45958:201::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46070:5:::1;46051:15;:24;;46043:65;;;::::0;;-1:-1:-1;;;46043:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;46119:14;:32:::0;45958:201::o;33921:22::-;;;-1:-1:-1;;;;;33921:22:0;;:::o;46167:330::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46315:5:::1;46284:27;:36;;:76;;;;;46355:5;46324:27;:36;;46284:76;46276:130;;;;-1:-1:-1::0;;;46276:130:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46433:26;:56:::0;46167:330::o;53233:421::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53464:4:::1;::::0;-1:-1:-1;;;;;53437:32:0;;::::1;53464:4:::0;::::1;53437:32;;53429:49;;;::::0;;-1:-1:-1;;;53429:49:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;53429:49:0;;;;;;;;;;;;;::::1;;53524:5;::::0;-1:-1:-1;;;;;53497:33:0;;::::1;53524:5:::0;::::1;53497:33;;53489:50;;;::::0;;-1:-1:-1;;;53489:50:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;53489:50:0;;;;;;;;;;;;;::::1;;53585:6;::::0;-1:-1:-1;;;;;53558:34:0;;::::1;53585:6:::0;::::1;53558:34;;53550:52;;;::::0;;-1:-1:-1;;;53550:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;53550:52:0;;;;;;;;;;;;;::::1;;53613:33;-1:-1:-1::0;;;;;53613:19:0;::::1;53633:3:::0;53638:7;53613:19:::1;:33::i;:::-;53233:421:::0;;;:::o;47139:1310::-;30052:28;:26;:28::i;:::-;30051:29;30043:80;;;;-1:-1:-1;;;30043:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30143:28;:26;:28::i;:::-;30142:29;30134:80;;;;-1:-1:-1;;;30134:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34869:9:::1;;34862:3;:16;;34854:54;;;::::0;;-1:-1:-1;;;34854:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;34854:54:0;;;;;;;;;;;;;::::1;;35312:4:::2;::::0;35300:28:::2;::::0;;-1:-1:-1;;;35300:28:0;;;;35340:4:::2;::::0;-1:-1:-1;;;;;35312:4:0::2;::::0;35300:26:::2;::::0;:28:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;35312:4;35300:28;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;35300:28:0;-1:-1:-1;;;;;35300:45:0::2;;:112:::0;::::2;;;-1:-1:-1::0;35378:5:0::2;::::0;35366:29:::2;::::0;;-1:-1:-1;;;35366:29:0;;;;35407:4:::2;::::0;-1:-1:-1;;;;;35378:5:0::2;::::0;35366:27:::2;::::0;:29:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;35378:5;35366:29;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;35366:29:0;-1:-1:-1;;;;;35366:46:0::2;;35300:112;:180;;;;-1:-1:-1::0;35445:6:0::2;::::0;35433:30:::2;::::0;;-1:-1:-1;;;35433:30:0;;;;35475:4:::2;::::0;-1:-1:-1;;;;;35445:6:0::2;::::0;35433:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;35445:6;35433:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;35433:30:0;-1:-1:-1;;;;;35433:47:0::2;;35300:180;:246;;;;-1:-1:-1::0;35510:7:0::2;::::0;35501:28:::2;::::0;;-1:-1:-1;;;35501:28:0;;;;35541:4:::2;::::0;-1:-1:-1;;;;;35510:7:0::2;::::0;35501:26:::2;::::0;:28:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;35510:7;35501:28;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;35501:28:0;-1:-1:-1;;;;;35501:45:0::2;;35300:246;35278:326;;;::::0;;-1:-1:-1;;;35278:326:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;47283:1:::3;47269:11;:15;47261:76;;;;-1:-1:-1::0;;;47261:76:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47350:17;47370:14;:12;:14::i;:::-;47350:34;;47416:11;47403:9;:24;47395:63;;;::::0;;-1:-1:-1;;;47395:63:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;47503:12;;47491:9;:24;47469:138;;;;-1:-1:-1::0;;;47469:138:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47643:26;;47628:11;:41;;47620:96;;;;-1:-1:-1::0;;;47620:96:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47729:13;47745:21;:19;:21::i;:::-;47729:37;;47793:1;47785:5;:9;47777:49;;;::::0;;-1:-1:-1;;;47777:49:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;47839:19;47861:32;47888:4;47861:22;:11:::0;47877:5;47861:15:::3;:22::i;:32::-;47839:54;;47905:18;47926:26;:24;:26::i;:::-;47905:47;;47963:21;47987:44;48019:11;47994:5;;;;;;;;;-1:-1:-1::0;;;;;47994:5:0::3;-1:-1:-1::0;;;;;47987:25:0::3;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;47987:27:0;;:31:::3;:44::i;:::-;47963:68;;48067:46;48107:5;48067:35;48082:19;;48067:10;:14;;:35;;;;:::i;:46::-;48050:13;:63;;48042:95;;;::::0;;-1:-1:-1;;;48042:95:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;48042:95:0;;;;;;;;;;;;;::::3;;48162:4;::::0;48150:51:::3;::::0;;-1:-1:-1;;;48150:51:0;;48177:10:::3;48150:51;::::0;::::3;::::0;;;;;;;;;-1:-1:-1;;;;;48162:4:0;;::::3;::::0;48150:26:::3;::::0;:51;;;;;48162:4:::3;::::0;48150:51;;;;;;;;48162:4;;48150:51;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;-1:-1:-1::0;;48224:5:0::3;::::0;48212:48:::3;::::0;;-1:-1:-1;;;48212:48:0;;48236:10:::3;48212:48;::::0;::::3;::::0;;;;;;;;;-1:-1:-1;;;;;48224:5:0;;::::3;::::0;-1:-1:-1;48212:23:0::3;::::0;-1:-1:-1;48212:48:0;;;;;::::3;::::0;;;;;;;;;48224:5:::3;::::0;48212:48;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;;48302:26:0::3;::::0;:43:::3;::::0;48333:11;48302:30:::3;:43::i;:::-;48273:26;:72:::0;48356:18:::3;:16;:18::i;:::-;48392:49;::::0;;;;;::::3;::::0;::::3;::::0;;;;;48404:10:::3;::::0;48392:49:::3;::::0;;;;;;::::3;-1:-1:-1::0;;30249:12:0;30241:7;:21;;;;;;;;;;;30263:9;30241:32;;;;;;;;:39;;30276:4;-1:-1:-1;;30241:39:0;;;;;;;;30313:10;30291:33;;;;;;:40;;;;;;;;;;-1:-1:-1;;;;;47139:1310:0:o;33877:35::-;;;;:::o;32330:23::-;;;-1:-1:-1;;;;;32330:23:0;;:::o;43753:257::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43880:4:::1;43856:20;:28;;:61;;;;;43912:5;43888:20;:29;;43856:61;43848:86;;;::::0;;-1:-1:-1;;;43848:86:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;43848:86:0;;;;;;;;;;;;;::::1;;43960:19;:42:::0;43753:257::o;36679:94::-;36749:16;;36679:94;:::o;32890:31::-;;;;:::o;36781:724::-;36833:25;36871:18;36892:14;:12;:14::i;:::-;36871:35;;36935:12;;36921:10;:26;36917:581;;36964:19;36986:26;:24;:26::i;:::-;36964:48;;37027:22;37052:47;37093:5;37052:36;37068:19;;37052:11;:15;;:36;;;;:::i;:47::-;37027:72;;37114:19;37143:5;;;;;;;;;-1:-1:-1;;;;;37143:5:0;-1:-1:-1;;;;;37136:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37136:27:0;;-1:-1:-1;37182:28:0;;;37178:309;;;37231:24;37258:31;:14;37277:11;37258:18;:31::i;:::-;37231:58;-1:-1:-1;37308:24:0;37335:42;37372:4;37335:32;37231:58;37356:10;37335:20;:32::i;:42::-;37308:69;;37417:54;37426:26;;37454:16;37417:8;:54::i;:::-;37397:74;;37178:309;;;36917:581;;;36781:724;;:::o;50962:2263::-;30052:28;:26;:28::i;:::-;30051:29;30043:80;;;;-1:-1:-1;;;30043:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30143:28;:26;:28::i;:::-;30142:29;30134:80;;;;-1:-1:-1;;;30134:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34869:9:::1;;34862:3;:16;;34854:54;;;::::0;;-1:-1:-1;;;34854:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;34854:54:0;;;;;;;;;;;;;::::1;;34984:16:::2;:14;:16::i;:::-;34977:3;:23;;34969:60;;;::::0;;-1:-1:-1;;;34969:60:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;35312:4:::3;::::0;35300:28:::3;::::0;;-1:-1:-1;;;35300:28:0;;;;35340:4:::3;::::0;-1:-1:-1;;;;;35312:4:0::3;::::0;35300:26:::3;::::0;:28:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;35312:4;35300:28;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;35300:28:0;-1:-1:-1;;;;;35300:45:0::3;;:112:::0;::::3;;;-1:-1:-1::0;35378:5:0::3;::::0;35366:29:::3;::::0;;-1:-1:-1;;;35366:29:0;;;;35407:4:::3;::::0;-1:-1:-1;;;;;35378:5:0::3;::::0;35366:27:::3;::::0;:29:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;35378:5;35366:29;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;35366:29:0;-1:-1:-1;;;;;35366:46:0::3;;35300:112;:180;;;;-1:-1:-1::0;35445:6:0::3;::::0;35433:30:::3;::::0;;-1:-1:-1;;;35433:30:0;;;;35475:4:::3;::::0;-1:-1:-1;;;;;35445:6:0::3;::::0;35433:28:::3;::::0;:30:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;35445:6;35433:30;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;35433:30:0;-1:-1:-1;;;;;35433:47:0::3;;35300:180;:246;;;;-1:-1:-1::0;35510:7:0::3;::::0;35501:28:::3;::::0;;-1:-1:-1;;;35501:28:0;;;;35541:4:::3;::::0;-1:-1:-1;;;;;35510:7:0::3;::::0;35501:26:::3;::::0;:28:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;35510:7;35501:28;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;35501:28:0;-1:-1:-1;;;;;35501:45:0::3;;35300:246;35278:326;;;::::0;;-1:-1:-1;;;35278:326:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;51066:18:::4;:16;:18::i;:::-;51120:14;:12;:14::i;:::-;51095:22;:39:::0;51197:16:::4;::::0;51145:18:::4;::::0;51166:48:::4;::::0;:26:::4;:24;:26::i;:::-;:30:::0;::::4;:48::i;:::-;51145:69;;51237:15;;51229:5;;:23;51225:1993;;;51321:74;51336:58;51388:5;51336:47;51351:31;;51336:10;:14;;:47;;;;:::i;:58::-;51321:14;:74::i;:::-;51225:1993;;;51457:16;;51432:22;;:41;51428:1779;;;51620:5;::::0;51613:27:::4;::::0;;-1:-1:-1;;;51613:27:0;;;;51592:18:::4;::::0;-1:-1:-1;;;;;51620:5:0::4;::::0;51613:25:::4;::::0;:27:::4;::::0;;::::4;::::0;::::4;::::0;;;;;;;;51620:5;51613:27;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;51613:27:0;51708:12:::4;::::0;51681:22:::4;::::0;51613:27;;-1:-1:-1;51659:19:0::4;::::0;51681:40:::4;::::0;:26:::4;:40::i;:::-;51659:62;;51740:21;51780:24:::0;51823:12:::4;51838:57;51890:4;51838:47;51874:10;51838:35;:47::i;:57::-;51823:72;;51932:4;51918:11;:18;51914:85;;;51975:4;51961:18;;51914:85;52041:52;52087:5;52041:41;52056:25;;52041:10;:14;;:41;;;;:::i;:52::-;52021:16;;:72;52017:781;;52206:37;52238:4;52206:27;:10:::0;52221:11;52206:14:::4;:27::i;:37::-;52187:56;;52017:781;;;52361:20;52384:37;52416:4;52384:27;:10:::0;52399:11;52384:14:::4;:27::i;:37::-;52361:60;;52463:61;52518:5;52463:50;52480:32;;52463:12;:16;;:50;;;;:::i;:61::-;52444:80:::0;-1:-1:-1;52563:34:0::4;:12:::0;52444:80;52563:16:::4;:34::i;:::-;52624:26;::::0;52547:50;;-1:-1:-1;52624:30:0;52620:159:::4;;52699:56;52749:5;52699:45;52717:26;;52699:13;:17;;:45;;;;:::i;:56::-;52683:72;;52620:159;52017:781;;52820:20:::0;;52816:101:::4;;52865:32;52880:16;52865:14;:32::i;:::-;52939:17:::0;;52935:257:::4;;53000:16;::::0;:35:::4;::::0;53021:13;53000:20:::4;:35::i;:::-;52981:16;:54:::0;53070:4:::4;::::0;53058:52:::4;::::0;;-1:-1:-1;;;53058:52:0;;53089:4:::4;53058:52;::::0;::::4;::::0;;;;;;;;;-1:-1:-1;;;;;53070:4:0;;::::4;::::0;53058:22:::4;::::0;:52;;;;;::::4;::::0;;;;;;;;;53070:4:::4;::::0;53058:52;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;;53138:34:0::4;::::0;;53153:3:::4;53138:34:::0;;53058:52:::4;53138:34:::0;::::4;::::0;;;;;::::4;::::0;;;;;;;;;::::4;52935:257;51428:1779;;;;;;-1:-1:-1::0;35064:5:0::2;::::0;:12:::2;::::0;35074:1:::2;35064:9;:12::i;:::-;35056:5;:20:::0;35134:16:::2;::::0;35117:14:::2;:12;:14::i;:::-;:33;35116:112;;35158:70;35222:5;35158:59;35189:27;;35158:26;:24;:26::i;:70::-;35116:112;;;35154:1;35116:112;35087:26;:141:::0;30249:12;30241:7;:21;;;;;;;;;;;30263:9;30241:32;;;;;;;;:39;;30276:4;-1:-1:-1;;30241:39:0;;;;;;;;30313:10;30291:33;;;;;;:40;;;;;;;;;;50962:2263::o;53662:128::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53751:7:::1;::::0;53742:40:::1;::::0;;-1:-1:-1;;;53742:40:0;;-1:-1:-1;;;;;53742:40:0;;::::1;;::::0;::::1;::::0;;;53751:7;;;::::1;::::0;53742:29:::1;::::0;:40;;;;;53751:7:::1;::::0;53742:40;;;;;;;53751:7;;53742:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53662:128:::0;:::o;32739:22::-;;;-1:-1:-1;;;;;32739:22:0;;:::o;37513:427::-;37564:24;37601:18;37622:14;:12;:14::i;:::-;37601:35;;37664:16;;37651:10;:29;37647:286;;;37725:4;;37718:37;;;-1:-1:-1;;;37718:37:0;;37749:4;37718:37;;;;;;37697:18;;-1:-1:-1;;;;;37725:4:0;;37718:22;;:37;;;;;;;;;;;;;;37725:4;37718:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37718:37:0;;-1:-1:-1;37770:13:0;37786:20;:18;:20::i;:::-;37770:36;-1:-1:-1;37825:9:0;;37821:101;;37874:31;37899:5;37874:20;:10;37889:4;37874:14;:20::i;:31::-;37855:50;;37647:286;;37513:427;;:::o;53798:198::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53926:7:::1;::::0;53917:71:::1;::::0;;-1:-1:-1;;;53917:71:0;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;53926:7:0;;::::1;::::0;53917:27:::1;::::0;:71;;;;;53926:7:::1;::::0;53917:71;;;;;;;;53926:7;;53917:71;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53798:198:::0;;:::o;46665:466::-;46768:4;;46806:23;;;-1:-1:-1;;;46806:23:0;;;;46722:7;;-1:-1:-1;;;;;46768:4:0;;46722:7;;46768:4;;46806:21;;:23;;;;;;;;;;;;;;46768:4;46806:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46806:23:0;;-1:-1:-1;46840:23:0;;46878:196;46912:23;:30;46902:40;;;;46878:196;;;46988:74;47008:9;-1:-1:-1;;;;;47008:19:0;;47028:23;47052:7;47028:32;;;;;;;;;;;;;;;;;;;;;47008:53;;;-1:-1:-1;;;;;;47008:53:0;;;;;;;-1:-1:-1;;;;;47028:32:0;;;47008:53;;;;;;;;;;47028:32;47008:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47008:53:0;46988:15;;:19;:74::i;:::-;46970:92;-1:-1:-1;46944:9:0;;46878:196;;;-1:-1:-1;47091:32:0;:11;47107:15;47091;:32::i;32430:24::-;;;;:::o;33055:40::-;;;;:::o;32583:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32583:40:0;;-1:-1:-1;32583:40:0;:::o;33363:46::-;;;;:::o;43143:291::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43288:3:::1;43258:26;:33;;:72;;;;;43325:5;43295:26;:35;;43258:72;43250:97;;;::::0;;-1:-1:-1;;;43250:97:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;43250:97:0;;;;;;;;;;;;;::::1;;43372:25;:54:::0;43143:291::o;33848:22::-;;;-1:-1:-1;;;;;33848:22:0;;:::o;32461:24::-;;;;:::o;44018:499::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44169:3:::1;44149:16;:23;;44141:66;;;::::0;;-1:-1:-1;;;44141:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;44276:3;44240:32;:39;;:83;;;;;44319:4;44283:32;:40;;44240:83;44232:142;;;;-1:-1:-1::0;;;44232:142:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44398:15;:34:::0;;;;44443:31:::1;:66:::0;44018:499::o;41622:273::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41740:12:::1;;41719:17;:33;;:88;;;;;41777:30;41803:3;41777:21;41794:3;41777:12;;:16;;:21;;;;:::i;:30::-;41756:17;:51;;41719:88;41711:113;;;::::0;;-1:-1:-1;;;41711:113:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41711:113:0;;;;;;;;;;;;;::::1;;41851:16;:36:::0;41622:273::o;42230:492::-;34728:8;;42320:4;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42418:1:::1;42409:6;:10;;;42401:64;;;;-1:-1:-1::0;;;42401:64:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42480:10;::::0;::::1;::::0;42476:84:::1;;42524:11;42545:1;42536:6;:10;42524:23;;;;;;;;;;;;;;;;;;42515:6;:32;42507:41;;;::::0;::::1;;42583:1;42574:6;:10;;;42570:84;;;42618:11;42630:6;42639:1;42630:10;42618:23;;;;;;;;;;;;;;;;;;42609:6;:32;42601:41;;;::::0;::::1;;42686:6;42664:11;42676:6;42664:19;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:28:::0;-1:-1:-1;42710:4:0::1;34802:1;42230:492:::0;;;;:::o;54150:234::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54317:7:::1;::::0;54308:68:::1;::::0;;-1:-1:-1;;;54308:68:0;;-1:-1:-1;;;;;54308:68:0;;::::1;;::::0;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;54317:7;;;::::1;::::0;54308:46:::1;::::0;:68;;;;;54317:7:::1;::::0;54308:68;;;;;;;54317:7;;54308:68;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54150:234:::0;;;:::o;45145:129::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45232:15:::1;:34:::0;45145:129::o;32930:28::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32930:28:0;:::o;32965:34::-;;;;;;;;;;45282:125;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45367:14:::1;:32:::0;45282:125::o;32816:27::-;;;;:::o;41291:101::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41364:8:::1;:20:::0;;-1:-1:-1;;;;;;41364:20:0::1;-1:-1:-1::0;;;;;41364:20:0;;;::::1;::::0;;;::::1;::::0;;41291:101::o;32211:40::-;32244:7;32211:40;:::o;33485:37::-;;;;:::o;41505:109::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41582:10:::1;:24:::0;;-1:-1:-1;;;;;;41582:24:0::1;-1:-1:-1::0;;;;;41582:24:0;;;::::1;::::0;;;::::1;::::0;;41505:109::o;33529:30::-;;;;:::o;44525:612::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44730:22:0;::::1;44722:39;;;::::0;;-1:-1:-1;;;44722:39:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;44722:39:0;;;;;;;;;;;;;::::1;;44805:4;44780:21;:29;;44772:54;;;::::0;;-1:-1:-1;;;44772:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44772:54:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;44855:22:0;::::1;44847:39;;;::::0;;-1:-1:-1;;;44847:39:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;44847:39:0;;;;;;;;;;;;;::::1;;44930:4;44905:21;:29;;44897:54;;;::::0;;-1:-1:-1;;;44897:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44897:54:0;;;;;;;;;;;;;::::1;;44972:7;:18:::0;;-1:-1:-1;;;;;;44972:18:0;;::::1;-1:-1:-1::0;;;;;44972:18:0;;::::1;;::::0;;;45001:20:::1;:44:::0;;;;45056:7:::1;:18:::0;;;;::::1;::::0;;;::::1;;::::0;;45085:20:::1;:44:::0;44525:612::o;54004:138::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54098:7:::1;::::0;54089:45:::1;::::0;;-1:-1:-1;;;54089:45:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;54098:7:0;;::::1;::::0;54089:37:::1;::::0;:45;;;;;54098:7:::1;::::0;54089:45;;;;;;;;54098:7;;54089:45;::::1;;::::0;::::1;;;;::::0;::::1;35914:114:::0;35961:7;35988:32;36002:17;32244:7;36002:5;;:9;;:17;;;;:::i;:::-;35988:9;;;:13;:32::i;:::-;35981:39;;35914:114;:::o;33724:29::-;;;;:::o;33686:31::-;;;;:::o;43442:303::-;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43593:3:::1;43561:28;:35;;:75;;;;;43632:4;43600:28;:36;;43561:75;43553:100;;;::::0;;-1:-1:-1;;;43553:100:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;43553:100:0;;;;;;;;;;;;;::::1;;43679:27;:58:::0;43442:303::o;32709:21::-;;;-1:-1:-1;;;;;32709:21:0;;:::o;42730:405::-;34728:8;;42826:4;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42924:1:::1;42915:6;:10;;;42907:64;;;;-1:-1:-1::0;;;42907:64:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000:2;42990:6;:12;;:30;;;;;43016:4;43006:6;:14;;42990:30;42982:63;;;::::0;;-1:-1:-1;;;42982:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42982:63:0;;;;;;;;;;;;;::::1;;43099:6;43071:17;43089:6;43071:25;;;;;;;;;41400:97:::0;34728:8;;-1:-1:-1;;;;;34728:8:0;34740:10;34728:22;34720:71;;;;-1:-1:-1;;;34720:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41471:7:::1;:18:::0;;-1:-1:-1;;;;;;41471:18:0::1;-1:-1:-1::0;;;;;41471:18:0;;;::::1;::::0;;;::::1;::::0;;41400:97::o;32682:20::-;;;-1:-1:-1;;;;;32682:20:0;;:::o;33008:40::-;;;;:::o;33205:34::-;;;;:::o;33156:42::-;;;;:::o;36355:301::-;36450:10;;36467:4;;36442:36;;;-1:-1:-1;;;36442:36:0;;-1:-1:-1;;;;;36467:4:0;;;36442:36;;;;36473:4;36442:36;;;;;;36407:18;;36450:10;;;;;36442:24;;:36;;;;;;;;;;;;;;;36450:10;36442:36;;;;;;;;;;33326:30;;;;:::o;32492:45::-;;;;:::o;15086:220::-;15144:7;15168:6;15164:20;;-1:-1:-1;15183:1:0;15176:8;;15164:20;15207:5;;;15211:1;15207;:5;:1;15231:5;;;;;:10;15223:56;;;;-1:-1:-1;;;15223:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15297:1;15086:220;-1:-1:-1;;;15086:220:0:o;15784:153::-;15842:7;15874:1;15870;:5;15862:44;;;;;-1:-1:-1;;;15862:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15928:1;15924;:5;;;;;;;15784:153;-1:-1:-1;;;15784:153:0:o;14669:158::-;14727:7;14760:1;14755;:6;;14747:49;;;;;-1:-1:-1;;;14747:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14814:5:0;;;14669:158::o;14207:179::-;14265:7;14297:5;;;14321:6;;;;14313:46;;;;;-1:-1:-1;;;14313:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;29741:125;29834:12;29802:4;29826:21;;;;;;;;;;;29848:9;29826:32;;;;;;;;;;29741:125;:::o;29874:126::-;29967:12;29935:4;29959:21;;;;;;;;;;;29981:10;29959:33;;;;;;;;;;29874:126;:::o;411:106::-;469:7;500:1;496;:5;:13;;508:1;496:13;;;-1:-1:-1;504:1:0;;489:20;-1:-1:-1;411:106:0:o;19433:177::-;19543:58;;;-1:-1:-1;;;;;19543:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19543:58:0;-1:-1:-1;;;19543:58:0;;;19516:86;;19536:5;;19516:19;:86::i;46558:99::-;46618:10;;;;;;;;;-1:-1:-1;;;;;46618:10:0;-1:-1:-1;;;;;46610:26:0;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46606:44;46558:99::o;49557:1011::-;49630:4;;49618:46;;;-1:-1:-1;;;49618:46:0;;49649:4;49618:46;;;;;;;;;;;;-1:-1:-1;;;;;49630:4:0;;;;49618:22;;:46;;;;;;;;;;;;;;;49630:4;;49618:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49724:20:0;;49677:28;;49724:24;49720:251;;49788:44;49826:5;49788:33;49800:20;;49788:7;:11;;:33;;;;:::i;:44::-;49854:4;;49869:7;;49847:52;;;-1:-1:-1;;;49847:52:0;;-1:-1:-1;;;;;49869:7:0;;;49847:52;;;;;;;;;;;;49765:67;;-1:-1:-1;49854:4:0;;;49847:21;;:52;;;;;;;;;;;;;;;49854:4;;49847:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49919:40:0;;;49933:3;49919:40;;49847:52;49919:40;;;;;;;;;;;;;;;;;;49720:251;50030:20;;49983:28;;50030:24;50026:251;;50094:44;50132:5;50094:33;50106:20;;50094:7;:11;;:33;;;;:::i;:44::-;50160:4;;50175:7;;;50153:52;;;-1:-1:-1;;;50153:52:0;;-1:-1:-1;;;;;50175:7:0;;;50153:52;;;;;;;;;;;;50071:67;;-1:-1:-1;50160:4:0;;;50153:21;;:52;;;;;50175:7;50153:52;;;;;;50160:4;;50153:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50225:40:0;;;50239:3;50225:40;;50153:52;50225:40;;;;;;;;;;;;;;;;;;50026:251;50299:59;50337:20;50299:33;:7;50311:20;50299:11;:33::i;:59::-;50396:7;;50378:4;;50289:69;;-1:-1:-1;50371:36:0;;-1:-1:-1;;;;;50378:4:0;;;;50396:7;;50371:24;:36::i;:::-;50443:7;;50425:4;;50418:42;;-1:-1:-1;;;;;50425:4:0;;;;50443:7;50452;50418:24;:42::i;:::-;50480:7;;50471:46;;;-1:-1:-1;;;50471:46:0;;;;;;;;;;-1:-1:-1;;;;;50480:7:0;;;;50471:37;;:46;;;;;50480:7;;50471:46;;;;;;;;50480:7;;50471:46;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50533:27:0;;;50547:3;50533:27;;;;;;;;;;;;-1:-1:-1;50533:27:0;;;;;;;;-1:-1:-1;50533:27:0;49557:1011;;;:::o;50576:378::-;50660:7;50700:1;50680:224;50760:11;50772:6;50760:19;;;;;;;;;;;;;;;;;;50745:11;:34;50741:152;;50828:17;50846:6;50828:25;;;;;;;;;;;;;;;;;;;;50800;:53;50872:5;;50741:152;-1:-1:-1;;50716:8:0;50680:224;;;-1:-1:-1;;50921:25:0;;50576:378;;;:::o;21738:761::-;22162:23;22188:69;22216:4;22188:69;;;;;;;;;;;;;;;;;22196:5;-1:-1:-1;;;;;22188:27:0;;;:69;;;;;:::i;:::-;22272:17;;22162:95;;-1:-1:-1;22272:21:0;22268:224;;22414:10;22403:30;;;;;;;;;;;;;;;-1:-1:-1;22403:30:0;22395:85;;;;-1:-1:-1;;;22395:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20092:622;20462:10;;;20461:62;;-1:-1:-1;20478:39:0;;;-1:-1:-1;;;20478:39:0;;20502:4;20478:39;;;;-1:-1:-1;;;;;20478:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20478:39:0;:44;20461:62;20453:152;;;;-1:-1:-1;;;20453:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20643:62;;;-1:-1:-1;;;;;20643:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20643:62:0;-1:-1:-1;;;20643:62:0;;;20616:90;;20636:5;;20616:19;:90::i;7158:195::-;7261:12;7293:52;7315:6;7323:4;7329:1;7332:12;7293:21;:52::i;:::-;7286:59;7158:195;-1:-1:-1;;;;7158:195:0:o;8210:530::-;8337:12;8395:5;8370:21;:30;;8362:81;;;;-1:-1:-1;;;8362:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8462:18;8473:6;8462:10;:18::i;:::-;8454:60;;;;;-1:-1:-1;;;8454:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8588:12;8602:23;8629:6;-1:-1:-1;;;;;8629:11:0;8649:5;8657:4;8629:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8629:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8587:75;;;;8680:52;8698:7;8707:10;8719:12;8680:17;:52::i;:::-;8673:59;8210:530;-1:-1:-1;;;;;;;8210:530:0:o;4240:422::-;4607:20;4646:8;;;4240:422::o;10750:742::-;10865:12;10894:7;10890:595;;;-1:-1:-1;10925:10:0;10918:17;;10890:595;11039:17;;:21;11035:439;;11302:10;11296:17;11363:15;11350:10;11346:2;11342:19;11335:44;11250:148;11445:12;11438:20;;-1:-1:-1;;;11438:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://e6c5f96f7a5a1da4efa91188e348bfb961ae75a049bc4969efaf73abd48b6c48
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.