ETH Price: $3,600.19 (+1.22%)
Gas: 59 Gwei

Contract

0x1b06b7bb383E894185031D9C462D4425088A79EE
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Allocate Seignio...116628692021-01-16 0:01:201167 days ago1610755280IN
0x1b06b7bb...5088A79EE
0 ETH0.15027624296.00000156
Allocate Seignio...116606742021-01-15 16:00:491167 days ago1610726449IN
0x1b06b7bb...5088A79EE
0 ETH0.10458414206.00000156
Allocate Seignio...116584692021-01-15 8:00:401168 days ago1610697640IN
0x1b06b7bb...5088A79EE
0 ETH0.0289383357.00000156
Transfer Ownersh...116569832021-01-15 2:40:081168 days ago1610678408IN
0x1b06b7bb...5088A79EE
0 ETH0.0016967674.40000175
Allocate Seignio...116562872021-01-15 0:00:281168 days ago1610668828IN
0x1b06b7bb...5088A79EE
0 ETH0.05279976104.00000156
Allocate Seignio...116541562021-01-14 16:03:381168 days ago1610640218IN
0x1b06b7bb...5088A79EE
0 ETH0.09747648192.00000156
Allocate Seignio...116520262021-01-14 8:00:161169 days ago1610611216IN
0x1b06b7bb...5088A79EE
0 ETH0.0416305882.00000156
Allocate Seignio...116498812021-01-14 0:00:511169 days ago1610582451IN
0x1b06b7bb...5088A79EE
0 ETH0.08529192168.00000156
Allocate Seignio...116476232021-01-13 16:00:511169 days ago1610553651IN
0x1b06b7bb...5088A79EE
0 ETH0.0451844189.00000156
Allocate Seignio...116454432021-01-13 8:00:421170 days ago1610524842IN
0x1b06b7bb...5088A79EE
0 ETH0.0289383357.00000156
Allocate Seignio...116433202021-01-13 0:01:231170 days ago1610496083IN
0x1b06b7bb...5088A79EE
0 ETH0.0299537159.00000156
Allocate Seignio...116410722021-01-12 16:00:501170 days ago1610467250IN
0x1b06b7bb...5088A79EE
0 ETH0.0360459971.00000156
Allocate Seignio...116389472021-01-12 8:01:181171 days ago1610438478IN
0x1b06b7bb...5088A79EE
0 ETH0.035538370
Allocate Seignio...116367632021-01-12 0:00:271171 days ago1610409627IN
0x1b06b7bb...5088A79EE
0 ETH0.05635359111.00000156
Allocate Seignio...116345832021-01-11 16:00:251171 days ago1610380825IN
0x1b06b7bb...5088A79EE
0 ETH0.18327609361.00000156
Allocate Seignio...116323922021-01-11 8:01:061172 days ago1610352066IN
0x1b06b7bb...5088A79EE
0 ETH0.08122521144.00000156
Transfer Ownersh...116207692021-01-09 13:19:381174 days ago1610198378IN
0x1b06b7bb...5088A79EE
0 ETH0.002709287.6
Transfer Operato...116207602021-01-09 13:18:121174 days ago1610198292IN
0x1b06b7bb...5088A79EE
0 ETH0.0026735988.8
0x60806040116187822021-01-09 5:46:271174 days ago1610171187IN
 Contract Creation
0 ETH0.3497321589.76

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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

Contract Name:
Treasury

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-08
*/

// File: @openzeppelin/contracts/math/Math.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, 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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * 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);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.6.2;

/**
 * @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 in 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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol



pragma solidity ^0.6.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/utils/ReentrancyGuard.sol



pragma solidity ^0.6.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
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;
    }
}

// File: contracts/interfaces/IOracle.sol

pragma solidity ^0.6.0;

interface IOracle {
    function update() external;

    function consult(address token, uint256 amountIn)
        external
        view
        returns (uint256 amountOut);
    // function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestamp);
}

// File: contracts/interfaces/IBoardroom.sol

pragma solidity ^0.6.0;

interface IBoardroom {
    function allocateSeigniorage(uint256 amount) external;
}

// File: contracts/interfaces/IBasisAsset.sol

pragma solidity ^0.6.0;

interface IBasisAsset {
    function mint(address recipient, uint256 amount) external returns (bool);

    function burn(uint256 amount) external;

    function burnFrom(address from, uint256 amount) external;

    function isOperator() external returns (bool);

    function operator() external view returns (address);
}

// File: contracts/interfaces/ISimpleERCFund.sol

pragma solidity ^0.6.0;

interface ISimpleERCFund {
    function deposit(
        address token,
        uint256 amount,
        string memory reason
    ) external;

    function withdraw(
        address token,
        uint256 amount,
        address to,
        string memory reason
    ) external;
}

// File: contracts/interfaces/ITreasury.sol

pragma solidity ^0.6.0;

interface ITreasury {
    function initialize(
        uint256 _accumulatedSeigniorage,
        uint256 _accumulatedDebt,
        uint256 _bondPriceOnONC
    ) external;
}

// File: contracts/interfaces/IONBRewardPool.sol

pragma solidity ^0.6.0;

interface IONBRewardPool {
    function notifyRewardAmount(uint256 reward) external;
}

// File: contracts/lib/Babylonian.sol

pragma solidity ^0.6.0;

library Babylonian {
    function sqrt(uint256 y) internal pure returns (uint256 z) {
        if (y > 3) {
            z = y;
            uint256 x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
        // else z = 0
    }
}

// File: contracts/lib/FixedPoint.sol

pragma solidity ^0.6.0;


// a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format))
library FixedPoint {
    // range: [0, 2**112 - 1]
    // resolution: 1 / 2**112
    struct uq112x112 {
        uint224 _x;
    }

    // range: [0, 2**144 - 1]
    // resolution: 1 / 2**112
    struct uq144x112 {
        uint256 _x;
    }

    uint8 private constant RESOLUTION = 112;
    uint256 private constant Q112 = uint256(1) << RESOLUTION;
    uint256 private constant Q224 = Q112 << RESOLUTION;

    // encode a uint112 as a UQ112x112
    function encode(uint112 x) internal pure returns (uq112x112 memory) {
        return uq112x112(uint224(x) << RESOLUTION);
    }

    // encodes a uint144 as a UQ144x112
    function encode144(uint144 x) internal pure returns (uq144x112 memory) {
        return uq144x112(uint256(x) << RESOLUTION);
    }

    // divide a UQ112x112 by a uint112, returning a UQ112x112
    function div(uq112x112 memory self, uint112 x)
        internal
        pure
        returns (uq112x112 memory)
    {
        require(x != 0, 'FixedPoint: DIV_BY_ZERO');
        return uq112x112(self._x / uint224(x));
    }

    // multiply a UQ112x112 by a uint, returning a UQ144x112
    // reverts on overflow
    function mul(uq112x112 memory self, uint256 y)
        internal
        pure
        returns (uq144x112 memory)
    {
        uint256 z;
        require(
            y == 0 || (z = uint256(self._x) * y) / y == uint256(self._x),
            'FixedPoint: MULTIPLICATION_OVERFLOW'
        );
        return uq144x112(z);
    }

    // returns a UQ112x112 which represents the ratio of the numerator to the denominator
    // equivalent to encode(numerator).div(denominator)
    function fraction(uint112 numerator, uint112 denominator)
        internal
        pure
        returns (uq112x112 memory)
    {
        require(denominator > 0, 'FixedPoint: DIV_BY_ZERO');
        return uq112x112((uint224(numerator) << RESOLUTION) / denominator);
    }

    // decode a UQ112x112 into a uint112 by truncating after the radix point
    function decode(uq112x112 memory self) internal pure returns (uint112) {
        return uint112(self._x >> RESOLUTION);
    }

    // decode a UQ144x112 into a uint144 by truncating after the radix point
    function decode144(uq144x112 memory self) internal pure returns (uint144) {
        return uint144(self._x >> RESOLUTION);
    }

    // take the reciprocal of a UQ112x112
    function reciprocal(uq112x112 memory self)
        internal
        pure
        returns (uq112x112 memory)
    {
        require(self._x != 0, 'FixedPoint: ZERO_RECIPROCAL');
        return uq112x112(uint224(Q224 / self._x));
    }

    // square root of a UQ112x112
    function sqrt(uq112x112 memory self)
        internal
        pure
        returns (uq112x112 memory)
    {
        return uq112x112(uint224(Babylonian.sqrt(uint256(self._x)) << 56));
    }
}

// File: contracts/lib/Safe112.sol

pragma solidity ^0.6.0;

library Safe112 {
    function add(uint112 a, uint112 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, 'Safe112: addition overflow');

        return c;
    }

    function sub(uint112 a, uint112 b) internal pure returns (uint256) {
        return sub(a, b, 'Safe112: subtraction overflow');
    }

    function sub(
        uint112 a,
        uint112 b,
        string memory errorMessage
    ) internal pure returns (uint112) {
        require(b <= a, errorMessage);
        uint112 c = a - b;

        return c;
    }

    function mul(uint112 a, uint112 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, 'Safe112: multiplication overflow');

        return c;
    }

    function div(uint112 a, uint112 b) internal pure returns (uint256) {
        return div(a, b, 'Safe112: division by zero');
    }

    function div(
        uint112 a,
        uint112 b,
        string memory errorMessage
    ) internal pure returns (uint112) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint112 c = a / b;

        return c;
    }

    function mod(uint112 a, uint112 b) internal pure returns (uint256) {
        return mod(a, b, 'Safe112: modulo by zero');
    }

    function mod(
        uint112 a,
        uint112 b,
        string memory errorMessage
    ) internal pure returns (uint112) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/GSN/Context.sol



pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.6.0;

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

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

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

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

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

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

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

// File: contracts/owner/Operator.sol

pragma solidity ^0.6.0;



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_;
    }
}

// File: contracts/utils/Epoch.sol

pragma solidity ^0.6.0;



contract Epoch is Operator {
    using SafeMath for uint256;

    uint256 private period;
    uint256 private startTime;
    uint256 private epoch;

    /* ========== CONSTRUCTOR ========== */

    constructor(
        uint256 _period,
        uint256 _startTime,
        uint256 _startEpoch
    ) public {
        period = _period;
        startTime = _startTime;
        epoch = _startEpoch;
    }

    /* ========== Modifier ========== */

    modifier checkStartTime {
        require(now >= startTime, 'Epoch: not started yet');

        _;
    }

    modifier checkEpoch {
        require(now >= nextEpochPoint(), 'Epoch: not allowed');

        _;

        epoch = epoch.add(1);
    }

    /* ========== VIEW FUNCTIONS ========== */

    function getCurrentEpoch() public view returns (uint256) {
        return epoch;
    }

    function getPeriod() public view returns (uint256) {
        return period;
    }

    function getStartTime() public view returns (uint256) {
        return startTime;
    }

    function nextEpochPoint() public view returns (uint256) {
        return startTime.add(epoch.mul(period));
    }

    /* ========== GOVERNANCE ========== */

    function setPeriod(uint256 _period) external onlyOperator {
        period = _period;
    }

    /* ========== DEPLOYEMENT ========= */
    function setStarttime(uint256 _starttime) public onlyOwner {
        require(startTime > now, "already start");
        require(_starttime > now, "invalid param");
        startTime = _starttime;
    }
}

// File: contracts/utils/ContractGuard.sol

pragma solidity ^0.6.12;

contract ContractGuard {
    mapping(uint256 => mapping(address => bool)) private _status;

    function checkSameOriginReentranted() internal view returns (bool) {
        return _status[block.number][tx.origin];
    }

    function checkSameSenderReentranted() internal view returns (bool) {
        return _status[block.number][msg.sender];
    }

    modifier onlyOneBlock() {
        require(
            !checkSameOriginReentranted(),
            'ContractGuard: one block, one function'
        );
        require(
            !checkSameSenderReentranted(),
            'ContractGuard: one block, one function'
        );

        _;

        _status[block.number][tx.origin] = true;
        _status[block.number][msg.sender] = true;
    }
}

// File: contracts/Treasury.sol

pragma solidity ^0.6.0;

















/**
 * @title Basis Cash Treasury contract
 * @notice Monetary policy logic to adjust supplies of basis cash assets
 * @author Summer Smith & Rick Sanchez
 */
contract Treasury is ContractGuard, Epoch {
    using FixedPoint for *;
    using SafeERC20 for IERC20;
    using Address for address;
    using SafeMath for uint256;
    using Safe112 for uint112;

    /* ========== STATE VARIABLES ========== */

    // ========== FLAGS
    bool public migrated = false;
    bool public initialized = false;

    // ========== CORE
    address public fund;
    address public cash;
    address public bond;
    address public share;
    address public shareBoardroom;
    address public lpBoardroom;
    address public bondRewardPool;

    //address public bondOracle;
    //address public seigniorageOracle;
    address public oracle;

    // ========== PARAMS
    uint256 public cashPriceOne;
    uint256 public cashPriceCeiling;
    uint256 public cashPriceFloor;
    uint256 public cashPriceBondReward;

    uint256 private accumulatedSeigniorage = 0;
    uint256 private accumulatedDebt = 0;
    uint256 public bondPriceOnONC;
    uint256 public minBondPriceOnONC;
    uint256 public bondPriceOnONCDelta;

    uint256 public fundAllocationRate = 2; // %
    uint256 public maxInflationRate = 10;
    
    uint256 public debtAddRate = 2;
    uint256 public maxDebtRate = 20;

    // ========== MIGRATE
    address public legacyTreasury;

    /* ========== CONSTRUCTOR ========== */

    constructor(
        address _cash,
        address _bond,
        address _share,
        address _oracle,
        address _shareBoardroom,
        address _lpBoardroom,
        address _bondRewardPool,
        address _fund,
        uint256 _startTime
    ) public Epoch(8 hours, _startTime, 0) {
        cash = _cash;
        bond = _bond;
        share = _share;
        oracle = _oracle;

        shareBoardroom = _shareBoardroom;
        lpBoardroom = _lpBoardroom;
        bondRewardPool = _bondRewardPool;

        fund = _fund;

        cashPriceOne = 10**18;
        cashPriceCeiling = uint256(102).mul(cashPriceOne).div(10**2);
        cashPriceFloor = uint256(98).mul(cashPriceOne).div(10**2);
        cashPriceBondReward = uint256(95).mul(cashPriceOne).div(10**2);
        
        bondPriceOnONC = 10**18;
        minBondPriceOnONC = 5 * 10**17;
        bondPriceOnONCDelta = 2 * 10 ** 16;
    }

    /* =================== Modifier =================== */

    modifier checkMigration {
        require(!migrated, 'Treasury: migrated');

        _;
    }

    modifier checkOperator {
        require(
            IBasisAsset(cash).operator() == address(this) &&
                IBasisAsset(bond).operator() == address(this) &&
                IBasisAsset(share).operator() == address(this) &&
                Operator(shareBoardroom).operator() == address(this) &&
                Operator(lpBoardroom).operator() == address(this) &&
                Operator(bondRewardPool).operator() == address(this),
            'Treasury: need more permission'
        );

        _;
    }

    /* ========== VIEW FUNCTIONS ========== */

    // budget
    function getReserve() public view returns (uint256) {
        return accumulatedSeigniorage;
    }

    // debt
    function getDebt() public view returns (uint256) {
        return accumulatedDebt;
    }

    // oracle
    function getOraclePrice() public view returns (uint256) {
        return _getCashPrice(oracle);
    }

    function _getCashPrice(address _oracle) internal view returns (uint256) {
        try IOracle(_oracle).consult(cash, 1e18) returns (uint256 price) {
            return price;
        } catch {
            revert('Treasury: failed to consult cash price from the oracle');
        }
    }

    /* ========== GOVERNANCE ========== */
    function setLegacyTreasury(address _legacyTreasury) public onlyOperator {
        legacyTreasury = _legacyTreasury;
    }

    function initialize(
        uint256 _accumulatedSeigniorage,
        uint256 _accumulatedDebt,
        uint256 _bondPriceOnONC
    ) public {
        require(!initialized, 'Treasury: initialized');
        require(msg.sender == legacyTreasury, 'Treasury: on legacy treasury');

        accumulatedSeigniorage = _accumulatedSeigniorage;
        accumulatedDebt = _accumulatedDebt;
        bondPriceOnONC = _bondPriceOnONC;

        initialized = true;
        emit Initialized(msg.sender, block.number);
    }

    function migrate(address target) public onlyOperator checkOperator {
        require(!migrated, 'Treasury: migrated');

        // cash
        Operator(cash).transferOperator(target);
        Operator(cash).transferOwnership(target);
        IERC20(cash).transfer(target, IERC20(cash).balanceOf(address(this)));

        // bond
        Operator(bond).transferOperator(target);
        Operator(bond).transferOwnership(target);
        IERC20(bond).transfer(target, IERC20(bond).balanceOf(address(this)));

        // share
        Operator(share).transferOperator(target);
        Operator(share).transferOwnership(target);
        IERC20(share).transfer(target, IERC20(share).balanceOf(address(this)));

        // params
        ITreasury(target).initialize(
            accumulatedSeigniorage, 
            accumulatedDebt,
            bondPriceOnONC
        );

        migrated = true;
        emit Migration(target);
    }

    function setFund(address newFund) public onlyOperator {
        fund = newFund;
        emit ContributionPoolChanged(msg.sender, newFund);
    }

    function setFundAllocationRate(uint256 rate) public onlyOperator {
        fundAllocationRate = rate;
        emit ContributionPoolRateChanged(msg.sender, rate);
    }

    function setMaxInflationRate(uint256 rate) public onlyOperator {
        maxInflationRate = rate;
        emit MaxInflationRateChanged(msg.sender, rate);
    }

    function setDebtAddRate(uint256 rate) public onlyOperator {
        debtAddRate = rate;
        emit DebtAddRateChanged(msg.sender, rate);
    }

    function setMaxDebtRate(uint256 rate) public onlyOperator {
        maxDebtRate = rate;
        emit MaxDebtRateChanged(msg.sender, rate);
    }

    /* ========== MUTABLE FUNCTIONS ========== */

    function _updateCashPrice() internal {
        try IOracle(oracle).update()  {} catch {}
    }

    function buyBonds(uint256 amount)
        external
        onlyOneBlock
        checkMigration
        checkStartTime
        checkOperator
    {
        uint256 cashPrice = _getCashPrice(oracle);
        require(
            cashPrice < cashPriceOne, // price < $1
            'Treasury: cashPrice not eligible for bond purchase'
        );

        uint256 burnAmount = Math.min(
            amount,
            accumulatedDebt.mul(1e18).mul(bondPriceOnONC)
        );
        require(burnAmount > 0, 'Treasury: cannot purchase bonds with zero amount');

        uint256 mintBondAmount = burnAmount.mul(1e18).div(bondPriceOnONC);
        IBasisAsset(cash).burnFrom(msg.sender, burnAmount);
        IBasisAsset(bond).mint(msg.sender, mintBondAmount);
        accumulatedDebt = accumulatedDebt.sub(mintBondAmount);
        _updateCashPrice();

        emit BoughtBonds(msg.sender, burnAmount);
    }

    function redeemBonds(uint256 amount)
        external
        onlyOneBlock
        checkMigration
        checkStartTime
        checkOperator
    {
        uint256 cashPrice = _getCashPrice(oracle);
        require(
            cashPrice > cashPriceOne, // price > $1
            'Treasury: cashPrice not eligible for bond redeem'
        );

        uint256 redeemAmount = Math.min(accumulatedSeigniorage, amount);
        require(redeemAmount > 0, 'Treasury: cannot redeem bonds with zero amount');

        accumulatedSeigniorage = accumulatedSeigniorage.sub(redeemAmount);
        IBasisAsset(bond).burnFrom(msg.sender, redeemAmount);
        IERC20(cash).safeTransfer(msg.sender, redeemAmount);
        _updateCashPrice();

        emit RedeemedBonds(msg.sender, redeemAmount);
    }

    function allocateSeigniorage()
        external
        onlyOneBlock
        checkMigration
        checkStartTime
        checkEpoch
        checkOperator
    {
        _updateCashPrice();
        uint256 cashPrice = _getCashPrice(oracle);
        // circulating supply
        uint256 cashSupply = IERC20(cash).totalSupply().sub(
            accumulatedSeigniorage
        );

        // bond reward
        if (cashPrice <= cashPriceBondReward) {
            uint256 rewardAmount = IERC20(bond).totalSupply().div(100);
            IBasisAsset(bond).mint(bondRewardPool, rewardAmount);
            IONBRewardPool(bondRewardPool).notifyRewardAmount(rewardAmount);
            emit BondReward(block.timestamp, rewardAmount);
        }    

        // add debt
        if (cashPrice <= cashPriceFloor) {
            uint256 addDebt = cashSupply.mul(debtAddRate).div(100);
            uint256 maxDebt = cashSupply.mul(maxDebtRate).div(100);
            accumulatedDebt = accumulatedDebt.add(addDebt);
            if (accumulatedDebt > maxDebt) {
                accumulatedDebt = maxDebt;
            }
            bondPriceOnONC = bondPriceOnONC.sub(bondPriceOnONCDelta);
            if (bondPriceOnONC <= minBondPriceOnONC) {
                bondPriceOnONC = minBondPriceOnONC;
            }
        }

        // clear the debt
        if (cashPrice > cashPriceFloor) {
            accumulatedDebt = 0;    
            bondPriceOnONC = 10**18;
        }

        if (cashPrice <= cashPriceCeiling) {
            return; // just advance epoch instead revert
        }
        
        uint256 percentage = cashPrice.sub(cashPriceOne);
        uint256 seigniorage = cashSupply.mul(percentage).div(1e18);
        uint256 maxSeigniorage = cashSupply.mul(maxInflationRate).div(100);
        if (seigniorage > maxSeigniorage) {
            seigniorage = maxSeigniorage;
        }
        IBasisAsset(cash).mint(address(this), seigniorage);

        // ======================== BIP-3
        uint256 fundReserve = seigniorage.mul(fundAllocationRate).div(100);
        if (fundReserve > 0) {
            IERC20(cash).safeApprove(fund, fundReserve);
            ISimpleERCFund(fund).deposit(
                cash,
                fundReserve,
                'Treasury: Seigniorage Allocation'
            );
            emit ContributionPoolFunded(now, fundReserve);
        }

        seigniorage = seigniorage.sub(fundReserve);

        // ======================== BIP-4
        uint256 treasuryReserve = Math.min(
            seigniorage.div(2),                 // only 50% inflation to treasury
            IERC20(bond).totalSupply().sub(accumulatedSeigniorage)
        );
        if (treasuryReserve > 0) {
            accumulatedSeigniorage = accumulatedSeigniorage.add(
                treasuryReserve
            );
            emit TreasuryFunded(now, treasuryReserve);
        }

        // boardroom
        uint256 boardroomReserve = seigniorage.sub(treasuryReserve);
        if (boardroomReserve > 0) {
            uint256 shareBoardroomReserve = boardroomReserve.mul(6).div(10);
            uint256 lpBoardroomReserve = boardroomReserve.sub(shareBoardroomReserve);
            IERC20(cash).safeApprove(shareBoardroom, shareBoardroomReserve);
            IBoardroom(shareBoardroom).allocateSeigniorage(shareBoardroomReserve);
            IERC20(cash).safeApprove(lpBoardroom, lpBoardroomReserve);
            IBoardroom(lpBoardroom).allocateSeigniorage(lpBoardroomReserve);
            emit BoardroomFunded(now, boardroomReserve);
        }
    }

    // GOV
    event Initialized(address indexed executor, uint256 at);
    event Migration(address indexed target);
    event ContributionPoolChanged(address indexed operator, address newFund);
    event ContributionPoolRateChanged(
        address indexed operator,
        uint256 newRate
    );
    event MaxInflationRateChanged(
        address indexed operator,
        uint256 newRate
    );
    event DebtAddRateChanged(
        address indexed operator,
        uint256 newRate
    );
    event MaxDebtRateChanged(
        address indexed operator,
        uint256 newRate
    );

    // CORE
    event RedeemedBonds(address indexed from, uint256 amount);
    event BoughtBonds(address indexed from, uint256 amount);
    event TreasuryFunded(uint256 timestamp, uint256 seigniorage);
    event BoardroomFunded(uint256 timestamp, uint256 seigniorage);
    event BondReward(uint256 timestamp, uint256 seigniorage);
    event ContributionPoolFunded(uint256 timestamp, uint256 seigniorage);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_cash","type":"address"},{"internalType":"address","name":"_bond","type":"address"},{"internalType":"address","name":"_share","type":"address"},{"internalType":"address","name":"_oracle","type":"address"},{"internalType":"address","name":"_shareBoardroom","type":"address"},{"internalType":"address","name":"_lpBoardroom","type":"address"},{"internalType":"address","name":"_bondRewardPool","type":"address"},{"internalType":"address","name":"_fund","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"BoardroomFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"BondReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BoughtBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"address","name":"newFund","type":"address"}],"name":"ContributionPoolChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"ContributionPoolFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"ContributionPoolRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"DebtAddRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"executor","type":"address"},{"indexed":false,"internalType":"uint256","name":"at","type":"uint256"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"MaxDebtRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"MaxInflationRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"}],"name":"Migration","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","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":"allocateSeigniorage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bond","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bondPriceOnONC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bondPriceOnONCDelta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bondRewardPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyBonds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cash","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cashPriceBondReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cashPriceCeiling","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cashPriceFloor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cashPriceOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"debtAddRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundAllocationRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDebt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOraclePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_accumulatedSeigniorage","type":"uint256"},{"internalType":"uint256","name":"_accumulatedDebt","type":"uint256"},{"internalType":"uint256","name":"_bondPriceOnONC","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"legacyTreasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBoardroom","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDebtRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxInflationRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBondPriceOnONC","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":"oracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeemBonds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setDebtAddRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFund","type":"address"}],"name":"setFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setFundAllocationRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_legacyTreasury","type":"address"}],"name":"setLegacyTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setMaxDebtRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setMaxInflationRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_period","type":"uint256"}],"name":"setPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_starttime","type":"uint256"}],"name":"setStarttime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"share","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"shareBoardroom","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102a05760003560e01c80636b19ad1611610167578063a9cfc46e116100ce578063c5967c2611610087578063c5967c2614610547578063c828371e1461054f578063ce5494bb14610557578063d1bb06e41461057d578063e189ce1414610585578063f2fde38b146105a2576102a0565b8063a9cfc46e14610517578063aef0006b1461051f578063b60d428814610527578063b97dd9e21461052f578063c1aa390014610537578063c52e88ca1461053f576102a0565b80638da5cb5b116101205780638da5cb5b146104bd578063904b8b66146104c557806395b1828a146104e2578063961be391146104ff5780639a2f5f7714610507578063a8d5fd651461050f576102a0565b80636b19ad161461046c578063715018a614610474578063796da7af1461047c5780637dc0d1d01461048457806380d859111461048c5780638502935a146104b5576102a0565b80631cfddd181161020b578063570ca735116101c4578063570ca7351461042757806357fee4df1461042f57806359bf5d39146104375780635b7561791461043f57806364c9ec6f146104475780636913c33e1461044f576102a0565b80631cfddd18146103d95780631ed24195146103e157806323ced135146103e957806329605e77146103f15780632c678c64146104175780634456eda21461041f576102a0565b8063100ac47c1161025d578063100ac47c1461036b57806310c4df741461037357806311dd8f1e1461039057806314a6bf0f146103ad578063158ef93e146103b557806315bb8fae146103d1576102a0565b8063040d3494146102a55780630457ab8c146102cd5780630922482c146102ea5780630e21750f1461030e5780630f3a9f65146103345780630f9f238714610351575b600080fd5b6102cb600480360360208110156102bb57600080fd5b50356001600160a01b03166105c8565b005b6102cb600480360360208110156102e357600080fd5b5035610633565b6102f261071a565b604080516001600160a01b039092168252519081900360200190f35b6102cb6004803603602081101561032457600080fd5b50356001600160a01b0316610729565b6102cb6004803603602081101561034a57600080fd5b50356107d3565b610359610821565b60408051918252519081900360200190f35b610359610827565b6102cb6004803603602081101561038957600080fd5b503561082d565b6102cb600480360360208110156103a657600080fd5b50356108b4565b61035961093b565b6103bd610941565b604080519115158252519081900360200190f35b61035961094f565b610359610955565b61035961095b565b610359610961565b6102cb6004803603602081101561040757600080fd5b50356001600160a01b0316610967565b6103bd6109cb565b6103bd6109d4565b6102f26109fa565b610359610a09565b610359610a0f565b6102cb610a15565b6102f2611685565b6102cb6004803603602081101561046557600080fd5b5035611694565b61035961171b565b6102cb611721565b6103596117c3565b6102f26117e0565b6102cb600480360360608110156104a257600080fd5b50803590602081013590604001356117ef565b6103596118fc565b6102f2611902565b6102cb600480360360208110156104db57600080fd5b5035611911565b6102cb600480360360208110156104f857600080fd5b5035611fda565b6102f2612061565b6102f2612070565b6102f261207f565b61035961208e565b610359612094565b6102f261209a565b6103596120af565b6103596120b5565b6102f26120bb565b6103596120ca565b6103596120ef565b6102cb6004803603602081101561056d57600080fd5b50356001600160a01b03166120f5565b6102f2612add565b6102cb6004803603602081101561059b57600080fd5b5035612aec565b6102cb600480360360208110156105b857600080fd5b50356001600160a01b031661310c565b6002546001600160a01b031633146106115760405162461bcd60e51b8152600401808060200182810382526024815260200180613ba26024913960400191505060405180910390fd5b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b61063b6132a9565b6001546001600160a01b0390811691161461068b576040805162461bcd60e51b81526020600482018190526024820152600080516020613b52833981519152604482015290519081900360640190fd5b42600454116106d1576040805162461bcd60e51b815260206004820152600d60248201526c185b1c9958591e481cdd185c9d609a1b604482015290519081900360640190fd5b428111610715576040805162461bcd60e51b815260206004820152600d60248201526c696e76616c696420706172616d60981b604482015290519081900360640190fd5b600455565b600c546001600160a01b031681565b6002546001600160a01b031633146107725760405162461bcd60e51b8152600401808060200182810382526024815260200180613ba26024913960400191505060405180910390fd5b600680546001600160a01b03831662010000810262010000600160b01b031990921691909117909155604080519182525133917f970b0c70d6e9879d19345f9dbfd8bacae71546478b8bb2d8a56ad8927d3d436e919081900360200190a250565b6002546001600160a01b0316331461081c5760405162461bcd60e51b8152600401808060200182810382526024815260200180613ba26024913960400191505060405180910390fd5b600355565b60105481565b60145481565b6002546001600160a01b031633146108765760405162461bcd60e51b8152600401808060200182810382526024815260200180613ba26024913960400191505060405180910390fd5b601881905560408051828152905133917fe344886237060fdc30b875bcd8c08660b7b8b7bc04f9bfa6d85dcebcaaca5d0e919081900360200190a250565b6002546001600160a01b031633146108fd5760405162461bcd60e51b8152600401808060200182810382526024815260200180613ba26024913960400191505060405180910390fd5b601a81905560408051828152905133917fc5a18e1e1ce8593a56e8f43ad6b1638097e7b62ad8cf3ed2660b7cc4e562d9b4919081900360200190a250565b60135490565b600654610100900460ff1681565b60115481565b60195481565b60035490565b600f5481565b61096f6132a9565b6001546001600160a01b039081169116146109bf576040805162461bcd60e51b81526020600482018190526024820152600080516020613b52833981519152604482015290519081900360640190fd5b6109c8816132ad565b50565b60065460ff1681565b6002546000906001600160a01b03166109eb6132a9565b6001600160a01b031614905090565b6002546001600160a01b031690565b60155481565b60125490565b610a1d61334a565b15610a595760405162461bcd60e51b8152600401808060200182810382526026815260200180613bf06026913960400191505060405180910390fd5b610a61613369565b15610a9d5760405162461bcd60e51b8152600401808060200182810382526026815260200180613bf06026913960400191505060405180910390fd5b60065460ff1615610aea576040805162461bcd60e51b8152602060048201526012602482015271151c99585cdd5c9e4e881b5a59dc985d195960721b604482015290519081900360640190fd5b600454421015610b3a576040805162461bcd60e51b8152602060048201526016602482015275115c1bd8da0e881b9bdd081cdd185c9d1959081e595d60521b604482015290519081900360640190fd5b610b426120ca565b421015610b8b576040805162461bcd60e51b8152602060048201526012602482015271115c1bd8da0e881b9bdd08185b1b1bddd95960721b604482015290519081900360640190fd5b6007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610bcf57600080fd5b505afa158015610be3573d6000803e3d6000fd5b505050506040513d6020811015610bf957600080fd5b50516001600160a01b0316148015610c8757506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610c5057600080fd5b505afa158015610c64573d6000803e3d6000fd5b505050506040513d6020811015610c7a57600080fd5b50516001600160a01b0316145b8015610d0957506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610cd257600080fd5b505afa158015610ce6573d6000803e3d6000fd5b505050506040513d6020811015610cfc57600080fd5b50516001600160a01b0316145b8015610d8b5750600a546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610d5457600080fd5b505afa158015610d68573d6000803e3d6000fd5b505050506040513d6020811015610d7e57600080fd5b50516001600160a01b0316145b8015610e0d5750600b546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610dd657600080fd5b505afa158015610dea573d6000803e3d6000fd5b505050506040513d6020811015610e0057600080fd5b50516001600160a01b0316145b8015610e8f5750600c546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610e5857600080fd5b505afa158015610e6c573d6000803e3d6000fd5b505050506040513d6020811015610e8257600080fd5b50516001600160a01b0316145b610ece576040805162461bcd60e51b815260206004820152601e6024820152600080516020613b32833981519152604482015290519081900360640190fd5b610ed6613388565b600d54600090610eee906001600160a01b03166133e8565b90506000610f78601254600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610f4657600080fd5b505afa158015610f5a573d6000803e3d6000fd5b505050506040513d6020811015610f7057600080fd5b5051906134a4565b9050601154821161113357600061100a6064600860009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610fd857600080fd5b505afa158015610fec573d6000803e3d6000fd5b505050506040513d602081101561100257600080fd5b505190613267565b600854600c54604080516340c10f1960e01b81526001600160a01b0392831660048201526024810185905290519394509116916340c10f19916044808201926020929091908290030181600087803b15801561106557600080fd5b505af1158015611079573d6000803e3d6000fd5b505050506040513d602081101561108f57600080fd5b5050600c5460408051633c6b16ab60e01b81526004810184905290516001600160a01b0390921691633c6b16ab9160248082019260009290919082900301818387803b1580156110de57600080fd5b505af11580156110f2573d6000803e3d6000fd5b5050604080514281526020810185905281517f111ff7c68ae6f398665e79c3ddff95e1609bcf1913d22ee48d505ecf088562639450908190039091019150a1505b60105482116111c457600061115e60646111586019548561320590919063ffffffff16565b90613267565b9050600061117c6064611158601a548661320590919063ffffffff16565b60135490915061118c90836134e6565b601381905581101561119e5760138190555b6016546014546111ad916134a4565b6014819055601554106111c1576015546014555b50505b6010548211156111e0576000601355670de0b6b3a76400006014555b600f5482116111f0575050611639565b6000611207600e54846134a490919063ffffffff16565b90506000611221670de0b6b3a76400006111588585613205565b9050600061123f60646111586018548761320590919063ffffffff16565b90508082111561124d578091505b600754604080516340c10f1960e01b81523060048201526024810185905290516001600160a01b03909216916340c10f19916044808201926020929091908290030181600087803b1580156112a157600080fd5b505af11580156112b5573d6000803e3d6000fd5b505050506040513d60208110156112cb57600080fd5b50506017546000906112e590606490611158908690613205565b905080156113f857600654600754611311916001600160a01b0391821691620100009091041683613540565b60065460075460408051635ff03ed360e11b81526001600160a01b0392831660048201526024810185905260606044820152602060648201527f54726561737572793a20536569676e696f7261676520416c6c6f636174696f6e60848201529051620100009093049091169163bfe07da69160a48082019260009290919082900301818387803b1580156113a457600080fd5b505af11580156113b8573d6000803e3d6000fd5b5050604080514281526020810185905281517f4caa64211297e9263667fef70732dc65ca7a8e8c60dc72539ed94518628212d09450908190039091019150a15b61140283826134a4565b92506000611463611414856002613267565b601254600854604080516318160ddd60e01b8152905161145e93926001600160a01b0316916318160ddd916004808301926020929190829003018186803b158015610f4657600080fd5b613658565b905080156114b75760125461147890826134e6565b601255604080514281526020810183905281517ff705142bf09f04297640495ddf7c59b7fd6f51894c5aea9602d631cf05f0efc2929181900390910190a15b60006114c385836134a4565b905080156116305760006114dd600a611158846006613205565b905060006114eb83836134a4565b600a5460075491925061150b916001600160a01b03908116911684613540565b600a54604080516397ffe1d760e01b81526004810185905290516001600160a01b03909216916397ffe1d79160248082019260009290919082900301818387803b15801561155857600080fd5b505af115801561156c573d6000803e3d6000fd5b5050600b5460075461158d93506001600160a01b0390811692501683613540565b600b54604080516397ffe1d760e01b81526004810184905290516001600160a01b03909216916397ffe1d79160248082019260009290919082900301818387803b1580156115da57600080fd5b505af11580156115ee573d6000803e3d6000fd5b5050604080514281526020810187905281517f03ca7276ab7799bf73fb79d27ff0610cd7049574f2508ef8445162833d439aea9450908190039091019150a150505b50505050505050505b6005546116479060016134e6565b600555436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055565b6008546001600160a01b031681565b6002546001600160a01b031633146116dd5760405162461bcd60e51b8152600401808060200182810382526024815260200180613ba26024913960400191505060405180910390fd5b601981905560408051828152905133917ff36ed3a90cdf84bb7d1a733a0830c68b75d4690503031cce77d2c98081e15728919081900360200190a250565b601a5481565b6117296132a9565b6001546001600160a01b03908116911614611779576040805162461bcd60e51b81526020600482018190526024820152600080516020613b52833981519152604482015290519081900360640190fd5b6001546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600180546001600160a01b0319169055565b600d546000906117db906001600160a01b03166133e8565b905090565b600d546001600160a01b031681565b600654610100900460ff1615611844576040805162461bcd60e51b8152602060048201526015602482015274151c99585cdd5c9e4e881a5b9a5d1a585b1a5e9959605a1b604482015290519081900360640190fd5b601b546001600160a01b031633146118a3576040805162461bcd60e51b815260206004820152601c60248201527f54726561737572793a206f6e206c656761637920747265617375727900000000604482015290519081900360640190fd5b6012839055601382905560148190556006805461ff00191661010017905560408051438152905133917f25ff68dd81b34665b5ba7e553ee5511bf6812e12adb4a7e2c0d9e26b3099ce79919081900360200190a2505050565b60185481565b6001546001600160a01b031690565b61191961334a565b156119555760405162461bcd60e51b8152600401808060200182810382526026815260200180613bf06026913960400191505060405180910390fd5b61195d613369565b156119995760405162461bcd60e51b8152600401808060200182810382526026815260200180613bf06026913960400191505060405180910390fd5b60065460ff16156119e6576040805162461bcd60e51b8152602060048201526012602482015271151c99585cdd5c9e4e881b5a59dc985d195960721b604482015290519081900360640190fd5b600454421015611a36576040805162461bcd60e51b8152602060048201526016602482015275115c1bd8da0e881b9bdd081cdd185c9d1959081e595d60521b604482015290519081900360640190fd5b6007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611a7a57600080fd5b505afa158015611a8e573d6000803e3d6000fd5b505050506040513d6020811015611aa457600080fd5b50516001600160a01b0316148015611b3257506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611afb57600080fd5b505afa158015611b0f573d6000803e3d6000fd5b505050506040513d6020811015611b2557600080fd5b50516001600160a01b0316145b8015611bb457506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611b7d57600080fd5b505afa158015611b91573d6000803e3d6000fd5b505050506040513d6020811015611ba757600080fd5b50516001600160a01b0316145b8015611c365750600a546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611bff57600080fd5b505afa158015611c13573d6000803e3d6000fd5b505050506040513d6020811015611c2957600080fd5b50516001600160a01b0316145b8015611cb85750600b546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611c8157600080fd5b505afa158015611c95573d6000803e3d6000fd5b505050506040513d6020811015611cab57600080fd5b50516001600160a01b0316145b8015611d3a5750600c546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611d0357600080fd5b505afa158015611d17573d6000803e3d6000fd5b505050506040513d6020811015611d2d57600080fd5b50516001600160a01b0316145b611d79576040805162461bcd60e51b815260206004820152601e6024820152600080516020613b32833981519152604482015290519081900360640190fd5b600d54600090611d91906001600160a01b03166133e8565b9050600e548110611dd35760405162461bcd60e51b8152600401808060200182810382526032815260200180613a4c6032913960400191505060405180910390fd5b6000611e028361145e601454611dfc670de0b6b3a764000060135461320590919063ffffffff16565b90613205565b905060008111611e435760405162461bcd60e51b8152600401808060200182810382526030815260200180613b726030913960400191505060405180910390fd5b601454600090611e5f9061115884670de0b6b3a7640000613205565b6007546040805163079cc67960e41b81523360048201526024810186905290519293506001600160a01b03909116916379cc67909160448082019260009290919082900301818387803b158015611eb557600080fd5b505af1158015611ec9573d6000803e3d6000fd5b5050600854604080516340c10f1960e01b81523360048201526024810186905290516001600160a01b0390921693506340c10f1992506044808201926020929091908290030181600087803b158015611f2157600080fd5b505af1158015611f35573d6000803e3d6000fd5b505050506040513d6020811015611f4b57600080fd5b5050601354611f5a90826134a4565b601355611f65613388565b60408051838152905133917fdbf5270c3cf4729fec4fdac76fda864aa4f3d14d657ad21772ac28f627141ed9919081900360200190a25050436000908152602081815260408083203284529091528082208054600160ff19918216811790925533845291909220805490911690911790555050565b6002546001600160a01b031633146120235760405162461bcd60e51b8152600401808060200182810382526024815260200180613ba26024913960400191505060405180910390fd5b601781905560408051828152905133917f25ba333c9a98f8f18bb40ff507a4a1fb423614f442759c754d038a9de3f81cf3919081900360200190a250565b6007546001600160a01b031681565b600b546001600160a01b031681565b6009546001600160a01b031681565b600e5481565b60165481565b6006546201000090046001600160a01b031681565b60055490565b60175481565b600a546001600160a01b031681565b60006117db6120e660035460055461320590919063ffffffff16565b600454906134e6565b60045490565b6002546001600160a01b0316331461213e5760405162461bcd60e51b8152600401808060200182810382526024815260200180613ba26024913960400191505060405180910390fd5b6007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561218257600080fd5b505afa158015612196573d6000803e3d6000fd5b505050506040513d60208110156121ac57600080fd5b50516001600160a01b031614801561223a57506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561220357600080fd5b505afa158015612217573d6000803e3d6000fd5b505050506040513d602081101561222d57600080fd5b50516001600160a01b0316145b80156122bc57506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561228557600080fd5b505afa158015612299573d6000803e3d6000fd5b505050506040513d60208110156122af57600080fd5b50516001600160a01b0316145b801561233e5750600a546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561230757600080fd5b505afa15801561231b573d6000803e3d6000fd5b505050506040513d602081101561233157600080fd5b50516001600160a01b0316145b80156123c05750600b546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561238957600080fd5b505afa15801561239d573d6000803e3d6000fd5b505050506040513d60208110156123b357600080fd5b50516001600160a01b0316145b80156124425750600c546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561240b57600080fd5b505afa15801561241f573d6000803e3d6000fd5b505050506040513d602081101561243557600080fd5b50516001600160a01b0316145b612481576040805162461bcd60e51b815260206004820152601e6024820152600080516020613b32833981519152604482015290519081900360640190fd5b60065460ff16156124ce576040805162461bcd60e51b8152602060048201526012602482015271151c99585cdd5c9e4e881b5a59dc985d195960721b604482015290519081900360640190fd5b600754604080516329605e7760e01b81526001600160a01b038481166004830152915191909216916329605e7791602480830192600092919082900301818387803b15801561251c57600080fd5b505af1158015612530573d6000803e3d6000fd5b50506007546040805163f2fde38b60e01b81526001600160a01b038681166004830152915191909216935063f2fde38b9250602480830192600092919082900301818387803b15801561258257600080fd5b505af1158015612596573d6000803e3d6000fd5b5050600754604080516370a0823160e01b815230600482015290516001600160a01b03909216935063a9059cbb9250849184916370a08231916024808301926020929190829003018186803b1580156125ee57600080fd5b505afa158015612602573d6000803e3d6000fd5b505050506040513d602081101561261857600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b15801561266957600080fd5b505af115801561267d573d6000803e3d6000fd5b505050506040513d602081101561269357600080fd5b5050600854604080516329605e7760e01b81526001600160a01b038481166004830152915191909216916329605e7791602480830192600092919082900301818387803b1580156126e357600080fd5b505af11580156126f7573d6000803e3d6000fd5b50506008546040805163f2fde38b60e01b81526001600160a01b038681166004830152915191909216935063f2fde38b9250602480830192600092919082900301818387803b15801561274957600080fd5b505af115801561275d573d6000803e3d6000fd5b5050600854604080516370a0823160e01b815230600482015290516001600160a01b03909216935063a9059cbb9250849184916370a08231916024808301926020929190829003018186803b1580156127b557600080fd5b505afa1580156127c9573d6000803e3d6000fd5b505050506040513d60208110156127df57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b15801561283057600080fd5b505af1158015612844573d6000803e3d6000fd5b505050506040513d602081101561285a57600080fd5b5050600954604080516329605e7760e01b81526001600160a01b038481166004830152915191909216916329605e7791602480830192600092919082900301818387803b1580156128aa57600080fd5b505af11580156128be573d6000803e3d6000fd5b50506009546040805163f2fde38b60e01b81526001600160a01b038681166004830152915191909216935063f2fde38b9250602480830192600092919082900301818387803b15801561291057600080fd5b505af1158015612924573d6000803e3d6000fd5b5050600954604080516370a0823160e01b815230600482015290516001600160a01b03909216935063a9059cbb9250849184916370a08231916024808301926020929190829003018186803b15801561297c57600080fd5b505afa158015612990573d6000803e3d6000fd5b505050506040513d60208110156129a657600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b1580156129f757600080fd5b505af1158015612a0b573d6000803e3d6000fd5b505050506040513d6020811015612a2157600080fd5b5050601254601354601454604080516380d8591160e01b8152600481019490945260248401929092526044830152516001600160a01b038316916380d8591191606480830192600092919082900301818387803b158015612a8157600080fd5b505af1158015612a95573d6000803e3d6000fd5b50506006805460ff1916600117905550506040516001600160a01b038216907f0caca70b66aed56b0630989a049110023c5a3f37e0ea4b6ce96fc747663f3ebc90600090a250565b601b546001600160a01b031681565b612af461334a565b15612b305760405162461bcd60e51b8152600401808060200182810382526026815260200180613bf06026913960400191505060405180910390fd5b612b38613369565b15612b745760405162461bcd60e51b8152600401808060200182810382526026815260200180613bf06026913960400191505060405180910390fd5b60065460ff1615612bc1576040805162461bcd60e51b8152602060048201526012602482015271151c99585cdd5c9e4e881b5a59dc985d195960721b604482015290519081900360640190fd5b600454421015612c11576040805162461bcd60e51b8152602060048201526016602482015275115c1bd8da0e881b9bdd081cdd185c9d1959081e595d60521b604482015290519081900360640190fd5b6007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015612c5557600080fd5b505afa158015612c69573d6000803e3d6000fd5b505050506040513d6020811015612c7f57600080fd5b50516001600160a01b0316148015612d0d57506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015612cd657600080fd5b505afa158015612cea573d6000803e3d6000fd5b505050506040513d6020811015612d0057600080fd5b50516001600160a01b0316145b8015612d8f57506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015612d5857600080fd5b505afa158015612d6c573d6000803e3d6000fd5b505050506040513d6020811015612d8257600080fd5b50516001600160a01b0316145b8015612e115750600a546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015612dda57600080fd5b505afa158015612dee573d6000803e3d6000fd5b505050506040513d6020811015612e0457600080fd5b50516001600160a01b0316145b8015612e935750600b546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015612e5c57600080fd5b505afa158015612e70573d6000803e3d6000fd5b505050506040513d6020811015612e8657600080fd5b50516001600160a01b0316145b8015612f155750600c546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015612ede57600080fd5b505afa158015612ef2573d6000803e3d6000fd5b505050506040513d6020811015612f0857600080fd5b50516001600160a01b0316145b612f54576040805162461bcd60e51b815260206004820152601e6024820152600080516020613b32833981519152604482015290519081900360640190fd5b600d54600090612f6c906001600160a01b03166133e8565b9050600e548111612fae5760405162461bcd60e51b8152600401808060200182810382526030815260200180613aab6030913960400191505060405180910390fd5b6000612fbc60125484613658565b905060008111612ffd5760405162461bcd60e51b815260040180806020018281038252602e815260200180613a1e602e913960400191505060405180910390fd5b60125461300a90826134a4565b6012556008546040805163079cc67960e41b81523360048201526024810184905290516001600160a01b03909216916379cc67909160448082019260009290919082900301818387803b15801561306057600080fd5b505af1158015613074573d6000803e3d6000fd5b505060075461309092506001600160a01b03169050338361366e565b613098613388565b60408051828152905133917f9c3478f12dce08d85673d802af16ed5b9ebab8420ffd7b145d65d3157084b2ce919081900360200190a25050436000908152602081815260408083203284529091528082208054600160ff199182168117909255338452919092208054909116909117905550565b6131146132a9565b6001546001600160a01b03908116911614613164576040805162461bcd60e51b81526020600482018190526024820152600080516020613b52833981519152604482015290519081900360640190fd5b6001600160a01b0381166131a95760405162461bcd60e51b81526004018080602001828103825260268152602001806139f86026913960400191505060405180910390fd5b6001546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b60008261321457506000613261565b8282028284828161322157fe5b041461325e5760405162461bcd60e51b8152600401808060200182810382526021815260200180613adb6021913960400191505060405180910390fd5b90505b92915050565b600061325e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136c0565b3390565b6001600160a01b0381166132f25760405162461bcd60e51b815260040180806020018281038252602d815260200180613a7e602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600280546001600160a01b0319166001600160a01b0392909216919091179055565b4360009081526020818152604080832032845290915290205460ff1690565b4360009081526020818152604080832033845290915290205460ff1690565b600d60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156133d857600080fd5b505af19250505080156109c85750565b60075460408051633ddac95360e01b81526001600160a01b039283166004820152670de0b6b3a764000060248201529051600092841691633ddac953916044808301926020929190829003018186803b15801561344457600080fd5b505afa92505050801561346957506040513d602081101561346457600080fd5b505160015b6132615760405162461bcd60e51b8152600401808060200182810382526036815260200180613afc6036913960400191505060405180910390fd5b600061325e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613762565b60008282018381101561325e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b8015806135c6575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561359857600080fd5b505afa1580156135ac573d6000803e3d6000fd5b505050506040513d60208110156135c257600080fd5b5051155b6136015760405162461bcd60e51b8152600401808060200182810382526036815260200180613c166036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526136539084906137bc565b505050565b6000818310613667578161325e565b5090919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526136539084906137bc565b6000818361374c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156137115781810151838201526020016136f9565b50505050905090810190601f16801561373e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161375857fe5b0495945050505050565b600081848411156137b45760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156137115781810151838201526020016136f9565b505050900390565b6060613811826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661386d9092919063ffffffff16565b8051909150156136535780806020019051602081101561383057600080fd5b50516136535760405162461bcd60e51b815260040180806020018281038252602a815260200180613bc6602a913960400191505060405180910390fd5b606061387c8484600085613884565b949350505050565b606061388f856139f1565b6138e0576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061391f5780518252601f199092019160209182019101613900565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613981576040519150601f19603f3d011682016040523d82523d6000602084013e613986565b606091505b5091509150811561399a57915061387c9050565b8051156139aa5780518082602001fd5b60405162461bcd60e51b81526020600482018181528651602484015286518793919283926044019190850190808383600083156137115781810151838201526020016136f9565b3b15159056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737354726561737572793a2063616e6e6f742072656465656d20626f6e64732077697468207a65726f20616d6f756e7454726561737572793a20636173685072696365206e6f7420656c696769626c6520666f7220626f6e642070757263686173656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f7254726561737572793a20636173685072696365206e6f7420656c696769626c6520666f7220626f6e642072656465656d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7754726561737572793a206661696c656420746f20636f6e73756c7420636173682070726963652066726f6d20746865206f7261636c6554726561737572793a206e656564206d6f7265207065726d697373696f6e00004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657254726561737572793a2063616e6e6f7420707572636861736520626f6e64732077697468207a65726f20616d6f756e746f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564436f6e747261637447756172643a206f6e6520626c6f636b2c206f6e652066756e6374696f6e5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122030145ab5052ed1a62417a883ac949f09646de5393bc45d90bb77d2962a4db7d464736f6c634300060c0033

Deployed Bytecode Sourcemap

35739:12802:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39520:123;;;;;;;;;;;;;;;;-1:-1:-1;39520:123:0;-1:-1:-1;;;;;39520:123:0;;:::i;:::-;;34417:205;;;;;;;;;;;;;;;;-1:-1:-1;34417:205:0;;:::i;36298:29::-;;;:::i;:::-;;;;-1:-1:-1;;;;;36298:29:0;;;;;;;;;;;;;;41147:147;;;;;;;;;;;;;;;;-1:-1:-1;41147:147:0;-1:-1:-1;;;;;41147:147:0;;:::i;34272:93::-;;;;;;;;;;;;;;;;-1:-1:-1;34272:93:0;;:::i;36539:29::-;;;:::i;:::-;;;;;;;;;;;;;;;;36709;;;:::i;41480:162::-;;;;;;;;;;;;;;;;-1:-1:-1;41480:162:0;;:::i;41805:147::-;;;;;;;;;;;;;;;;-1:-1:-1;41805:147:0;;:::i;38952:90::-;;;:::i;36060:31::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;36575:34;;;:::i;36925:30::-;;;:::i;33916:83::-;;;:::i;36501:31::-;;;:::i;32545:115::-;;;;;;;;;;;;;;;;-1:-1:-1;32545:115:0;-1:-1:-1;;;;;32545:115:0;;:::i;36025:28::-;;;:::i;32437:100::-;;;:::i;32172:85::-;;;:::i;36745:32::-;;;:::i;38831:100::-;;;:::i;43869:3644::-;;;:::i;36176:19::-;;;:::i;41650:147::-;;;;;;;;;;;;;;;;-1:-1:-1;41650:147:0;;:::i;36962:31::-;;;:::i;31213:148::-;;;:::i;39065:103::-;;;:::i;36411:21::-;;;:::i;39651:523::-;;;;;;;;;;;;;;;;-1:-1:-1;39651:523:0;;;;;;;;;;;;:::i;36876:36::-;;;:::i;30571:79::-;;;:::i;42117:925::-;;;;;;;;;;;;;;;;-1:-1:-1;42117:925:0;;:::i;41302:170::-;;;;;;;;;;;;;;;;-1:-1:-1;41302:170:0;;:::i;36150:19::-;;;:::i;36265:26::-;;;:::i;36202:20::-;;;:::i;36467:27::-;;;:::i;36784:34::-;;;:::i;36124:19::-;;;:::i;33820:88::-;;;:::i;36827:37::-;;;:::i;36229:29::-;;;:::i;34104:114::-;;;:::i;34007:89::-;;;:::i;40182:957::-;;;;;;;;;;;;;;;;-1:-1:-1;40182:957:0;-1:-1:-1;;;;;40182:957:0;;:::i;37029:29::-;;;:::i;43050:811::-;;;;;;;;;;;;;;;;-1:-1:-1;43050:811:0;;:::i;31516:244::-;;;;;;;;;;;;;;;;-1:-1:-1;31516:244:0;-1:-1:-1;;;;;31516:244:0;;:::i;39520:123::-;32322:9;;-1:-1:-1;;;;;32322:9:0;32335:10;32322:23;32300:109;;;;-1:-1:-1;;;32300:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39603:14:::1;:32:::0;;-1:-1:-1;;;;;;39603:32:0::1;-1:-1:-1::0;;;;;39603:32:0;;;::::1;::::0;;;::::1;::::0;;39520:123::o;34417:205::-;30793:12;:10;:12::i;:::-;30783:6;;-1:-1:-1;;;;;30783:6:0;;;:22;;;30775:67;;;;;-1:-1:-1;;;30775:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30775:67:0;;;;;;;;;;;;;;;34507:3:::1;34495:9;;:15;34487:41;;;::::0;;-1:-1:-1;;;34487:41:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;34487:41:0;;;;;;;;;;;;;::::1;;34560:3;34547:10;:16;34539:42;;;::::0;;-1:-1:-1;;;34539:42:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;34539:42:0;;;;;;;;;;;;;::::1;;34592:9;:22:::0;34417:205::o;36298:29::-;;;-1:-1:-1;;;;;36298:29:0;;:::o;41147:147::-;32322:9;;-1:-1:-1;;;;;32322:9:0;32335:10;32322:23;32300:109;;;;-1:-1:-1;;;32300:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41212:4:::1;:14:::0;;-1:-1:-1;;;;;41212:14:0;::::1;::::0;;::::1;-1:-1:-1::0;;;;;;41212:14:0;;::::1;::::0;;;::::1;::::0;;;41242:44:::1;::::0;;;;;;41266:10:::1;::::0;41242:44:::1;::::0;;;;;::::1;::::0;;::::1;41147:147:::0;:::o;34272:93::-;32322:9;;-1:-1:-1;;;;;32322:9:0;32335:10;32322:23;32300:109;;;;-1:-1:-1;;;32300:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34341:6:::1;:16:::0;34272:93::o;36539:29::-;;;;:::o;36709:::-;;;;:::o;41480:162::-;32322:9;;-1:-1:-1;;;;;32322:9:0;32335:10;32322:23;32300:109;;;;-1:-1:-1;;;32300:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41554:16:::1;:23:::0;;;41593:41:::1;::::0;;;;;;;41617:10:::1;::::0;41593:41:::1;::::0;;;;;::::1;::::0;;::::1;41480:162:::0;:::o;41805:147::-;32322:9;;-1:-1:-1;;;;;32322:9:0;32335:10;32322:23;32300:109;;;;-1:-1:-1;;;32300:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41874:11:::1;:18:::0;;;41908:36:::1;::::0;;;;;;;41927:10:::1;::::0;41908:36:::1;::::0;;;;;::::1;::::0;;::::1;41805:147:::0;:::o;38952:90::-;39019:15;;38952:90;:::o;36060:31::-;;;;;;;;;:::o;36575:34::-;;;;:::o;36925:30::-;;;;:::o;33916:83::-;33985:6;;33916:83;:::o;36501:31::-;;;;:::o;32545:115::-;30793:12;:10;:12::i;:::-;30783:6;;-1:-1:-1;;;;;30783:6:0;;;:22;;;30775:67;;;;;-1:-1:-1;;;30775:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30775:67:0;;;;;;;;;;;;;;;32621:31:::1;32639:12;32621:17;:31::i;:::-;32545:115:::0;:::o;36025:28::-;;;;;;:::o;32437:100::-;32520:9;;32480:4;;-1:-1:-1;;;;;32520:9:0;32504:12;:10;:12::i;:::-;-1:-1:-1;;;;;32504:25:0;;32497:32;;32437:100;:::o;32172:85::-;32240:9;;-1:-1:-1;;;;;32240:9:0;32172:85;:::o;36745:32::-;;;;:::o;38831:100::-;38901:22;;38831:100;:::o;43869:3644::-;35127:28;:26;:28::i;:::-;35126:29;35104:117;;;;-1:-1:-1;;;35104:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35255:28;:26;:28::i;:::-;35254:29;35232:117;;;;-1:-1:-1;;;35232:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38167:8:::1;::::0;::::1;;38166:9;38158:40;;;::::0;;-1:-1:-1;;;38158:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38158:40:0;;;;;;;;;;;;;::::1;;33556:9:::2;;33549:3;:16;;33541:51;;;::::0;;-1:-1:-1;;;33541:51:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;33541:51:0;;;;;;;;;;;;;::::2;;33668:16:::3;:14;:16::i;:::-;33661:3;:23;;33653:54;;;::::0;;-1:-1:-1;;;33653:54:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;33653:54:0;;;;;;;;;;;;;::::3;;38296:4:::4;::::0;38284:28:::4;::::0;;-1:-1:-1;;;38284:28:0;;;;38324:4:::4;::::0;-1:-1:-1;;;;;38296:4:0::4;::::0;38284:26:::4;::::0;:28:::4;::::0;;::::4;::::0;::::4;::::0;;;;;;;;38296:4;38284:28;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;38284:28:0;-1:-1:-1;;;;;38284:45:0::4;;:111:::0;::::4;;;-1:-1:-1::0;38362:4:0::4;::::0;38350:28:::4;::::0;;-1:-1:-1;;;38350:28:0;;;;38390:4:::4;::::0;-1:-1:-1;;;;;38362:4:0::4;::::0;38350:26:::4;::::0;:28:::4;::::0;;::::4;::::0;::::4;::::0;;;;;;;;38362:4;38350:28;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;38350:28:0;-1:-1:-1;;;;;38350:45:0::4;;38284:111;:178;;;;-1:-1:-1::0;38428:5:0::4;::::0;38416:29:::4;::::0;;-1:-1:-1;;;38416:29:0;;;;38457:4:::4;::::0;-1:-1:-1;;;;;38428:5:0::4;::::0;38416:27:::4;::::0;:29:::4;::::0;;::::4;::::0;::::4;::::0;;;;;;;;38428:5;38416:29;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;38416:29:0;-1:-1:-1;;;;;38416:46:0::4;;38284:178;:251;;;;-1:-1:-1::0;38492:14:0::4;::::0;38483:35:::4;::::0;;-1:-1:-1;;;38483:35:0;;;;38530:4:::4;::::0;-1:-1:-1;;;;;38492:14:0::4;::::0;38483:33:::4;::::0;:35:::4;::::0;;::::4;::::0;::::4;::::0;;;;;;;;38492:14;38483:35;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;38483:35:0;-1:-1:-1;;;;;38483:52:0::4;;38284:251;:321;;;;-1:-1:-1::0;38565:11:0::4;::::0;38556:32:::4;::::0;;-1:-1:-1;;;38556:32:0;;;;38600:4:::4;::::0;-1:-1:-1;;;;;38565:11:0::4;::::0;38556:30:::4;::::0;:32:::4;::::0;;::::4;::::0;::::4;::::0;;;;;;;;38565:11;38556:32;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;38556:32:0;-1:-1:-1;;;;;38556:49:0::4;;38284:321;:394;;;;-1:-1:-1::0;38635:14:0::4;::::0;38626:35:::4;::::0;;-1:-1:-1;;;38626:35:0;;;;38673:4:::4;::::0;-1:-1:-1;;;;;38635:14:0::4;::::0;38626:33:::4;::::0;:35:::4;::::0;;::::4;::::0;::::4;::::0;;;;;;;;38635:14;38626:35;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;38626:35:0;-1:-1:-1;;;;;38626:52:0::4;;38284:394;38262:474;;;::::0;;-1:-1:-1;;;38262:474:0;;::::4;;::::0;::::4;::::0;::::4;::::0;;;;-1:-1:-1;;;;;;;;;;;38262:474:0;;;;;;;;;;;;;::::4;;44047:18:::5;:16;:18::i;:::-;44110:6;::::0;44076:17:::5;::::0;44096:21:::5;::::0;-1:-1:-1;;;;;44110:6:0::5;44096:13;:21::i;:::-;44076:41;;44159:18;44180:78;44225:22;;44187:4;;;;;;;;;-1:-1:-1::0;;;;;44187:4:0::5;-1:-1:-1::0;;;;;44180:24:0::5;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::5;;;;;;;;;;;;::::0;::::5;;;;;;;;;;;;;;;;;;;::::0;::::5;;-1:-1:-1::0;44180:26:0;;:30:::5;:78::i;:::-;44159:99;;44312:19;;44299:9;:32;44295:329;;44348:20;44371:35;44402:3;44378:4;;;;;;;;;-1:-1:-1::0;;;;;44378:4:0::5;-1:-1:-1::0;;;;;44371:24:0::5;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::5;;;;;;;;;;;;::::0;::::5;;;;;;;;;;;;;;;;;;;::::0;::::5;;-1:-1:-1::0;44371:26:0;;:30:::5;:35::i;:::-;44433:4;::::0;44444:14:::5;::::0;44421:52:::5;::::0;;-1:-1:-1;;;44421:52:0;;-1:-1:-1;;;;;44444:14:0;;::::5;44421:52;::::0;::::5;::::0;;;;;;;;;44348:58;;-1:-1:-1;44433:4:0;::::5;::::0;44421:22:::5;::::0;:52;;;;;::::5;::::0;;;;;;;;;44433:4:::5;::::0;44421:52;::::5;;::::0;::::5;;;;::::0;::::5;;;;;;;;;;;;::::0;::::5;;;;;;;;;;;;;;;;;;;::::0;::::5;;-1:-1:-1::0;;44503:14:0::5;::::0;44488:63:::5;::::0;;-1:-1:-1;;;44488:63:0;;::::5;::::0;::::5;::::0;;;;;-1:-1:-1;;;;;44503:14:0;;::::5;::::0;44488:49:::5;::::0;:63;;;;;44503:14:::5;::::0;44488:63;;;;;;;;44503:14;;44488:63;::::5;;::::0;::::5;;;;::::0;::::5;;;;;;;;;;;;::::0;::::5;;;;;-1:-1:-1::0;;44571:41:0::5;::::0;;44582:15:::5;44571:41:::0;;::::5;::::0;::::5;::::0;;;;;::::5;::::0;-1:-1:-1;44571:41:0;;;;;;;;-1:-1:-1;44571:41:0::5;44295:329;;44678:14;;44665:9;:27;44661:544;;44709:15;44727:36;44759:3;44727:27;44742:11;;44727:10;:14;;:27;;;;:::i;:::-;:31:::0;::::5;:36::i;:::-;44709:54;;44778:15;44796:36;44828:3;44796:27;44811:11;;44796:10;:14;;:27;;;;:::i;:36::-;44865:15;::::0;44778:54;;-1:-1:-1;44865:28:0::5;::::0;44885:7;44865:19:::5;:28::i;:::-;44847:15;:46:::0;;;44912:25;-1:-1:-1;44908:91:0::5;;;44958:15;:25:::0;;;44908:91:::5;45049:19;::::0;45030:14:::5;::::0;:39:::5;::::0;:18:::5;:39::i;:::-;45013:14;:56:::0;;;45106:17:::5;::::0;-1:-1:-1;45084:110:0::5;;45161:17;::::0;45144:14:::5;:34:::0;45084:110:::5;44661:544;;;45260:14;;45248:9;:26;45244:120;;;45309:1;45291:15;:19:::0;45346:6:::5;45329:14;:23:::0;45244:120:::5;45393:16;;45380:9;:29;45376:105;;45426:7;;;;45376:105;45501:18;45522:27;45536:12;;45522:9;:13;;:27;;;;:::i;:::-;45501:48:::0;-1:-1:-1;45560:19:0::5;45582:36;45613:4;45582:26;:10:::0;45501:48;45582:14:::5;:26::i;:36::-;45560:58;;45629:22;45654:41;45691:3;45654:32;45669:16;;45654:10;:14;;:32;;;;:::i;:41::-;45629:66;;45724:14;45710:11;:28;45706:89;;;45769:14;45755:28;;45706:89;45817:4;::::0;45805:50:::5;::::0;;-1:-1:-1;;;45805:50:0;;45836:4:::5;45805:50;::::0;::::5;::::0;;;;;;;;;-1:-1:-1;;;;;45817:4:0;;::::5;::::0;45805:22:::5;::::0;:50;;;;;::::5;::::0;;;;;;;;;45817:4:::5;::::0;45805:50;::::5;;::::0;::::5;;;;::::0;::::5;;;;;;;;;;;;::::0;::::5;;;;;;;;;;;;;;;;;;;::::0;::::5;;-1:-1:-1::0;;45949:18:0::5;::::0;45911:19:::5;::::0;45933:44:::5;::::0;45973:3:::5;::::0;45933:35:::5;::::0;:11;;:15:::5;:35::i;:44::-;45911:66:::0;-1:-1:-1;45992:15:0;;45988:315:::5;;46049:4;::::0;46031::::5;::::0;46024:43:::5;::::0;-1:-1:-1;;;;;46031:4:0;;::::5;::::0;46049;;;::::5;;46055:11:::0;46024:24:::5;:43::i;:::-;46097:4;::::0;46129::::5;::::0;46082:149:::5;::::0;;-1:-1:-1;;;46082:149:0;;-1:-1:-1;;;;;46129:4:0;;::::5;46082:149;::::0;::::5;::::0;;;;;;;;;;;;::::5;::::0;;;;::::5;::::0;;;;;;46097:4;;;::::5;::::0;;::::5;::::0;46082:28:::5;::::0;:149;;;;;-1:-1:-1;;46082:149:0;;;;;;;;-1:-1:-1;46097:4:0;46082:149;::::5;;::::0;::::5;;;;::::0;::::5;;;;;;;;;;;;::::0;::::5;;;;;-1:-1:-1::0;;46251:40:0::5;::::0;;46274:3:::5;46251:40:::0;;::::5;::::0;::::5;::::0;;;;;::::5;::::0;-1:-1:-1;46251:40:0;;;;;;;;-1:-1:-1;46251:40:0::5;45988:315;46329:28;:11:::0;46345;46329:15:::5;:28::i;:::-;46315:42:::0;-1:-1:-1;46413:23:0::5;46439:171;46462:18;46315:42:::0;46478:1:::5;46462:15;:18::i;:::-;46576:22;::::0;46552:4:::5;::::0;46545:26:::5;::::0;;-1:-1:-1;;;46545:26:0;;;;:54:::5;::::0;46576:22;-1:-1:-1;;;;;46552:4:0::5;::::0;46545:24:::5;::::0;:26:::5;::::0;;::::5;::::0;::::5;::::0;;;;;;;;46552:4;46545:26;::::5;;::::0;::::5;;;;::::0;::::5;:54;46439:8;:171::i;:::-;46413:197:::0;-1:-1:-1;46625:19:0;;46621:208:::5;;46686:22;::::0;:75:::5;::::0;46731:15;46686:26:::5;:75::i;:::-;46661:22;:100:::0;46781:36:::5;::::0;;46796:3:::5;46781:36:::0;;::::5;::::0;::::5;::::0;;;;;::::5;::::0;;;;;;;;;::::5;46621:208;46863:24;46890:32;:11:::0;46906:15;46890::::5;:32::i;:::-;46863:59:::0;-1:-1:-1;46937:20:0;;46933:573:::5;;46974:29;47006:31;47034:2;47006:23;:16:::0;47027:1:::5;47006:20;:23::i;:31::-;46974:63:::0;-1:-1:-1;47052:26:0::5;47081:43;:16:::0;46974:63;47081:20:::5;:43::i;:::-;47164:14;::::0;47146:4:::5;::::0;47052:72;;-1:-1:-1;47139:63:0::5;::::0;-1:-1:-1;;;;;47146:4:0;;::::5;::::0;47164:14:::5;47180:21:::0;47139:24:::5;:63::i;:::-;47228:14;::::0;47217:69:::5;::::0;;-1:-1:-1;;;47217:69:0;;::::5;::::0;::::5;::::0;;;;;-1:-1:-1;;;;;47228:14:0;;::::5;::::0;47217:46:::5;::::0;:69;;;;;47228:14:::5;::::0;47217:69;;;;;;;;47228:14;;47217:69;::::5;;::::0;::::5;;;;::::0;::::5;;;;;;;;;;;;::::0;::::5;;;;;-1:-1:-1::0;;47326:11:0::5;::::0;47308:4:::5;::::0;47301:57:::5;::::0;-1:-1:-1;;;;;;47308:4:0;;::::5;::::0;-1:-1:-1;47326:11:0::5;47339:18:::0;47301:24:::5;:57::i;:::-;47384:11;::::0;47373:63:::5;::::0;;-1:-1:-1;;;47373:63:0;;::::5;::::0;::::5;::::0;;;;;-1:-1:-1;;;;;47384:11:0;;::::5;::::0;47373:43:::5;::::0;:63;;;;;47384:11:::5;::::0;47373:63;;;;;;;;47384:11;;47373:63;::::5;;::::0;::::5;;;;::::0;::::5;;;;;;;;;;;;::::0;::::5;;;;;-1:-1:-1::0;;47456:38:0::5;::::0;;47472:3:::5;47456:38:::0;;::::5;::::0;::::5;::::0;;;;;::::5;::::0;-1:-1:-1;47456:38:0;;;;;;;;-1:-1:-1;47456:38:0::5;46933:573;;;38749:1;;;;;;;;;33742:5:::3;::::0;:12:::3;::::0;33752:1:::3;33742:9;:12::i;:::-;33734:5;:20:::0;35384:12;35376:7;:21;;;;;;;;;;;35398:9;35376:32;;;;;;;;:39;;35411:4;-1:-1:-1;;35376:39:0;;;;;;;;35448:10;35426:33;;;;;;:40;;;;;;;;;;43869:3644::o;36176:19::-;;;-1:-1:-1;;;;;36176:19:0;;:::o;41650:147::-;32322:9;;-1:-1:-1;;;;;32322:9:0;32335:10;32322:23;32300:109;;;;-1:-1:-1;;;32300:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41719:11:::1;:18:::0;;;41753:36:::1;::::0;;;;;;;41772:10:::1;::::0;41753:36:::1;::::0;;;;;::::1;::::0;;::::1;41650:147:::0;:::o;36962:31::-;;;;:::o;31213:148::-;30793:12;:10;:12::i;:::-;30783:6;;-1:-1:-1;;;;;30783:6:0;;;:22;;;30775:67;;;;;-1:-1:-1;;;30775:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30775:67:0;;;;;;;;;;;;;;;31304:6:::1;::::0;31283:40:::1;::::0;31320:1:::1;::::0;-1:-1:-1;;;;;31304:6:0::1;::::0;31283:40:::1;::::0;31320:1;;31283:40:::1;31334:6;:19:::0;;-1:-1:-1;;;;;;31334:19:0::1;::::0;;31213:148::o;39065:103::-;39153:6;;39112:7;;39139:21;;-1:-1:-1;;;;;39153:6:0;39139:13;:21::i;:::-;39132:28;;39065:103;:::o;36411:21::-;;;-1:-1:-1;;;;;36411:21:0;;:::o;39651:523::-;39816:11;;;;;;;39815:12;39807:46;;;;;-1:-1:-1;;;39807:46:0;;;;;;;;;;;;-1:-1:-1;;;39807:46:0;;;;;;;;;;;;;;;39886:14;;-1:-1:-1;;;;;39886:14:0;39872:10;:28;39864:69;;;;;-1:-1:-1;;;39864:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39946:22;:48;;;40005:15;:34;;;40050:14;:32;;;40095:11;:18;;-1:-1:-1;;40095:18:0;;;;;40129:37;;;40153:12;40129:37;;;;40141:10;;40129:37;;;;;;;;;;39651:523;;;:::o;36876:36::-;;;;:::o;30571:79::-;30636:6;;-1:-1:-1;;;;;30636:6:0;30571:79;:::o;42117:925::-;35127:28;:26;:28::i;:::-;35126:29;35104:117;;;;-1:-1:-1;;;35104:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35255:28;:26;:28::i;:::-;35254:29;35232:117;;;;-1:-1:-1;;;35232:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38167:8:::1;::::0;::::1;;38166:9;38158:40;;;::::0;;-1:-1:-1;;;38158:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38158:40:0;;;;;;;;;;;;;::::1;;33556:9:::2;;33549:3;:16;;33541:51;;;::::0;;-1:-1:-1;;;33541:51:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;33541:51:0;;;;;;;;;;;;;::::2;;38296:4:::3;::::0;38284:28:::3;::::0;;-1:-1:-1;;;38284:28:0;;;;38324:4:::3;::::0;-1:-1:-1;;;;;38296:4:0::3;::::0;38284:26:::3;::::0;:28:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;38296:4;38284:28;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;38284:28:0;-1:-1:-1;;;;;38284:45:0::3;;:111:::0;::::3;;;-1:-1:-1::0;38362:4:0::3;::::0;38350:28:::3;::::0;;-1:-1:-1;;;38350:28:0;;;;38390:4:::3;::::0;-1:-1:-1;;;;;38362:4:0::3;::::0;38350:26:::3;::::0;:28:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;38362:4;38350:28;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;38350:28:0;-1:-1:-1;;;;;38350:45:0::3;;38284:111;:178;;;;-1:-1:-1::0;38428:5:0::3;::::0;38416:29:::3;::::0;;-1:-1:-1;;;38416:29:0;;;;38457:4:::3;::::0;-1:-1:-1;;;;;38428:5:0::3;::::0;38416:27:::3;::::0;:29:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;38428:5;38416:29;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;38416:29:0;-1:-1:-1;;;;;38416:46:0::3;;38284:178;:251;;;;-1:-1:-1::0;38492:14:0::3;::::0;38483:35:::3;::::0;;-1:-1:-1;;;38483:35:0;;;;38530:4:::3;::::0;-1:-1:-1;;;;;38492:14:0::3;::::0;38483:33:::3;::::0;:35:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;38492:14;38483:35;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;38483:35:0;-1:-1:-1;;;;;38483:52:0::3;;38284:251;:321;;;;-1:-1:-1::0;38565:11:0::3;::::0;38556:32:::3;::::0;;-1:-1:-1;;;38556:32:0;;;;38600:4:::3;::::0;-1:-1:-1;;;;;38565:11:0::3;::::0;38556:30:::3;::::0;:32:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;38565:11;38556:32;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;38556:32:0;-1:-1:-1;;;;;38556:49:0::3;;38284:321;:394;;;;-1:-1:-1::0;38635:14:0::3;::::0;38626:35:::3;::::0;;-1:-1:-1;;;38626:35:0;;;;38673:4:::3;::::0;-1:-1:-1;;;;;38635:14:0::3;::::0;38626:33:::3;::::0;:35:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;38635:14;38626:35;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;38626:35:0;-1:-1:-1;;;;;38626:52:0::3;;38284:394;38262:474;;;::::0;;-1:-1:-1;;;38262:474:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;;;;;;;;;38262:474:0;;;;;;;;;;;;;::::3;;42312:6:::4;::::0;42278:17:::4;::::0;42298:21:::4;::::0;-1:-1:-1;;;;;42312:6:0::4;42298:13;:21::i;:::-;42278:41;;42364:12;;42352:9;:24;42330:138;;;;-1:-1:-1::0;;;42330:138:0::4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42481:18;42502:100;42525:6;42546:45;42576:14;;42546:25;42566:4;42546:15;;:19;;:25;;;;:::i;:::-;:29:::0;::::4;:45::i;42502:100::-;42481:121;;42634:1;42621:10;:14;42613:75;;;;-1:-1:-1::0;;;42613:75:0::4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42751:14;::::0;42701:22:::4;::::0;42726:40:::4;::::0;:20:::4;:10:::0;42741:4:::4;42726:14;:20::i;:40::-;42789:4;::::0;42777:50:::4;::::0;;-1:-1:-1;;;42777:50:0;;42804:10:::4;42777:50;::::0;::::4;::::0;;;;;;;;;42701:65;;-1:-1:-1;;;;;;42789:4:0;;::::4;::::0;42777:26:::4;::::0;:50;;;;;42789:4:::4;::::0;42777:50;;;;;;;;42789:4;;42777:50;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;-1:-1:-1::0;;42850:4:0::4;::::0;42838:50:::4;::::0;;-1:-1:-1;;;42838:50:0;;42861:10:::4;42838:50;::::0;::::4;::::0;;;;;;;;;-1:-1:-1;;;;;42850:4:0;;::::4;::::0;-1:-1:-1;42838:22:0::4;::::0;-1:-1:-1;42838:50:0;;;;;::::4;::::0;;;;;;;;;42850:4:::4;::::0;42838:50;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;;42917:15:0::4;::::0;:35:::4;::::0;42937:14;42917:19:::4;:35::i;:::-;42899:15;:53:::0;42963:18:::4;:16;:18::i;:::-;42999:35;::::0;;;;;;;43011:10:::4;::::0;42999:35:::4;::::0;;;;;::::4;::::0;;::::4;-1:-1:-1::0;;35384:12:0;35376:7;:21;;;;;;;;;;;35398:9;35376:32;;;;;;;;:39;;35411:4;-1:-1:-1;;35376:39:0;;;;;;;;35448:10;35426:33;;;;;;:40;;;;;;;;;;-1:-1:-1;;42117:925:0:o;41302:170::-;32322:9;;-1:-1:-1;;;;;32322:9:0;32335:10;32322:23;32300:109;;;;-1:-1:-1;;;32300:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41378:18:::1;:25:::0;;;41419:45:::1;::::0;;;;;;;41447:10:::1;::::0;41419:45:::1;::::0;;;;;::::1;::::0;;::::1;41302:170:::0;:::o;36150:19::-;;;-1:-1:-1;;;;;36150:19:0;;:::o;36265:26::-;;;-1:-1:-1;;;;;36265:26:0;;:::o;36202:20::-;;;-1:-1:-1;;;;;36202:20:0;;:::o;36467:27::-;;;;:::o;36784:34::-;;;;:::o;36124:19::-;;;;;;-1:-1:-1;;;;;36124:19:0;;:::o;33820:88::-;33895:5;;33820:88;:::o;36827:37::-;;;;:::o;36229:29::-;;;-1:-1:-1;;;;;36229:29:0;;:::o;34104:114::-;34151:7;34178:32;34192:17;34202:6;;34192:5;;:9;;:17;;;;:::i;:::-;34178:9;;;:13;:32::i;34007:89::-;34079:9;;34007:89;:::o;40182:957::-;32322:9;;-1:-1:-1;;;;;32322:9:0;32335:10;32322:23;32300:109;;;;-1:-1:-1;;;32300:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38296:4:::1;::::0;38284:28:::1;::::0;;-1:-1:-1;;;38284:28:0;;;;38324:4:::1;::::0;-1:-1:-1;;;;;38296:4:0::1;::::0;38284:26:::1;::::0;:28:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;38296:4;38284:28;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38284:28:0;-1:-1:-1;;;;;38284:45:0::1;;:111:::0;::::1;;;-1:-1:-1::0;38362:4:0::1;::::0;38350:28:::1;::::0;;-1:-1:-1;;;38350:28:0;;;;38390:4:::1;::::0;-1:-1:-1;;;;;38362:4:0::1;::::0;38350:26:::1;::::0;:28:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;38362:4;38350:28;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38350:28:0;-1:-1:-1;;;;;38350:45:0::1;;38284:111;:178;;;;-1:-1:-1::0;38428:5:0::1;::::0;38416:29:::1;::::0;;-1:-1:-1;;;38416:29:0;;;;38457:4:::1;::::0;-1:-1:-1;;;;;38428:5:0::1;::::0;38416:27:::1;::::0;:29:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;38428:5;38416:29;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38416:29:0;-1:-1:-1;;;;;38416:46:0::1;;38284:178;:251;;;;-1:-1:-1::0;38492:14:0::1;::::0;38483:35:::1;::::0;;-1:-1:-1;;;38483:35:0;;;;38530:4:::1;::::0;-1:-1:-1;;;;;38492:14:0::1;::::0;38483:33:::1;::::0;:35:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;38492:14;38483:35;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38483:35:0;-1:-1:-1;;;;;38483:52:0::1;;38284:251;:321;;;;-1:-1:-1::0;38565:11:0::1;::::0;38556:32:::1;::::0;;-1:-1:-1;;;38556:32:0;;;;38600:4:::1;::::0;-1:-1:-1;;;;;38565:11:0::1;::::0;38556:30:::1;::::0;:32:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;38565:11;38556:32;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38556:32:0;-1:-1:-1;;;;;38556:49:0::1;;38284:321;:394;;;;-1:-1:-1::0;38635:14:0::1;::::0;38626:35:::1;::::0;;-1:-1:-1;;;38626:35:0;;;;38673:4:::1;::::0;-1:-1:-1;;;;;38635:14:0::1;::::0;38626:33:::1;::::0;:35:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;38635:14;38626:35;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38626:35:0;-1:-1:-1;;;;;38626:52:0::1;;38284:394;38262:474;;;::::0;;-1:-1:-1;;;38262:474:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;38262:474:0;;;;;;;;;;;;;::::1;;40269:8:::2;::::0;::::2;;40268:9;40260:40;;;::::0;;-1:-1:-1;;;40260:40:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;40260:40:0;;;;;;;;;;;;;::::2;;40339:4;::::0;40330:39:::2;::::0;;-1:-1:-1;;;40330:39:0;;-1:-1:-1;;;;;40330:39:0;;::::2;;::::0;::::2;::::0;;;40339:4;;;::::2;::::0;40330:31:::2;::::0;:39;;;;;40339:4:::2;::::0;40330:39;;;;;;;40339:4;;40330:39;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;40389:4:0::2;::::0;40380:40:::2;::::0;;-1:-1:-1;;;40380:40:0;;-1:-1:-1;;;;;40380:40:0;;::::2;;::::0;::::2;::::0;;;40389:4;;;::::2;::::0;-1:-1:-1;40380:32:0::2;::::0;-1:-1:-1;40380:40:0;;;;;40389:4:::2;::::0;40380:40;;;;;;;40389:4;;40380:40;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;40438:4:0::2;::::0;40461:37:::2;::::0;;-1:-1:-1;;;40461:37:0;;40492:4:::2;40461:37;::::0;::::2;::::0;;;-1:-1:-1;;;;;40438:4:0;;::::2;::::0;-1:-1:-1;40431:21:0::2;::::0;-1:-1:-1;40453:6:0;;40438:4;;40461:22:::2;::::0;:37;;;;;::::2;::::0;;;;;;;;40438:4;40461:37;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;40461:37:0;40431:68:::2;::::0;;-1:-1:-1;;;;;;40431:68:0::2;::::0;;;;;;-1:-1:-1;;;;;40431:68:0;;::::2;;::::0;::::2;::::0;;;;;;;;;;;;;;40461:37:::2;::::0;40431:68;;;;;;;-1:-1:-1;40431:68:0;;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;;40538:4:0::2;::::0;40529:39:::2;::::0;;-1:-1:-1;;;40529:39:0;;-1:-1:-1;;;;;40529:39:0;;::::2;;::::0;::::2;::::0;;;40538:4;;;::::2;::::0;40529:31:::2;::::0;:39;;;;;40538:4:::2;::::0;40529:39;;;;;;;40538:4;;40529:39;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;40588:4:0::2;::::0;40579:40:::2;::::0;;-1:-1:-1;;;40579:40:0;;-1:-1:-1;;;;;40579:40:0;;::::2;;::::0;::::2;::::0;;;40588:4;;;::::2;::::0;-1:-1:-1;40579:32:0::2;::::0;-1:-1:-1;40579:40:0;;;;;40588:4:::2;::::0;40579:40;;;;;;;40588:4;;40579:40;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;40637:4:0::2;::::0;40660:37:::2;::::0;;-1:-1:-1;;;40660:37:0;;40691:4:::2;40660:37;::::0;::::2;::::0;;;-1:-1:-1;;;;;40637:4:0;;::::2;::::0;-1:-1:-1;40630:21:0::2;::::0;-1:-1:-1;40652:6:0;;40637:4;;40660:22:::2;::::0;:37;;;;;::::2;::::0;;;;;;;;40637:4;40660:37;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;40660:37:0;40630:68:::2;::::0;;-1:-1:-1;;;;;;40630:68:0::2;::::0;;;;;;-1:-1:-1;;;;;40630:68:0;;::::2;;::::0;::::2;::::0;;;;;;;;;;;;;;40660:37:::2;::::0;40630:68;;;;;;;-1:-1:-1;40630:68:0;;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;;40738:5:0::2;::::0;40729:40:::2;::::0;;-1:-1:-1;;;40729:40:0;;-1:-1:-1;;;;;40729:40:0;;::::2;;::::0;::::2;::::0;;;40738:5;;;::::2;::::0;40729:32:::2;::::0;:40;;;;;40738:5:::2;::::0;40729:40;;;;;;;40738:5;;40729:40;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;40789:5:0::2;::::0;40780:41:::2;::::0;;-1:-1:-1;;;40780:41:0;;-1:-1:-1;;;;;40780:41:0;;::::2;;::::0;::::2;::::0;;;40789:5;;;::::2;::::0;-1:-1:-1;40780:33:0::2;::::0;-1:-1:-1;40780:41:0;;;;;40789:5:::2;::::0;40780:41;;;;;;;40789:5;;40780:41;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;40839:5:0::2;::::0;40863:38:::2;::::0;;-1:-1:-1;;;40863:38:0;;40895:4:::2;40863:38;::::0;::::2;::::0;;;-1:-1:-1;;;;;40839:5:0;;::::2;::::0;-1:-1:-1;40832:22:0::2;::::0;-1:-1:-1;40855:6:0;;40839:5;;40863:23:::2;::::0;:38;;;;;::::2;::::0;;;;;;;;40839:5;40863:38;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;40863:38:0;40832:70:::2;::::0;;-1:-1:-1;;;;;;40832:70:0::2;::::0;;;;;;-1:-1:-1;;;;;40832:70:0;;::::2;;::::0;::::2;::::0;;;;;;;;;;;;;;40863:38:::2;::::0;40832:70;;;;;;;-1:-1:-1;40832:70:0;;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;;40977:22:0::2;::::0;41015:15:::2;::::0;41045:14:::2;::::0;40934:136:::2;::::0;;-1:-1:-1;;;40934:136:0;;::::2;::::0;::::2;::::0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40934:28:0;::::2;::::0;::::2;::::0;:136;;;;;-1:-1:-1;;40934:136:0;;;;;;;-1:-1:-1;40934:28:0;:136;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;41083:8:0::2;:15:::0;;-1:-1:-1;;41083:15:0::2;41094:4;41083:15;::::0;;-1:-1:-1;;41114:17:0::2;::::0;-1:-1:-1;;;;;41114:17:0;::::2;::::0;::::2;::::0;41083:8:::2;::::0;41114:17:::2;40182:957:::0;:::o;37029:29::-;;;-1:-1:-1;;;;;37029:29:0;;:::o;43050:811::-;35127:28;:26;:28::i;:::-;35126:29;35104:117;;;;-1:-1:-1;;;35104:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35255:28;:26;:28::i;:::-;35254:29;35232:117;;;;-1:-1:-1;;;35232:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38167:8:::1;::::0;::::1;;38166:9;38158:40;;;::::0;;-1:-1:-1;;;38158:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38158:40:0;;;;;;;;;;;;;::::1;;33556:9:::2;;33549:3;:16;;33541:51;;;::::0;;-1:-1:-1;;;33541:51:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;33541:51:0;;;;;;;;;;;;;::::2;;38296:4:::3;::::0;38284:28:::3;::::0;;-1:-1:-1;;;38284:28:0;;;;38324:4:::3;::::0;-1:-1:-1;;;;;38296:4:0::3;::::0;38284:26:::3;::::0;:28:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;38296:4;38284:28;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;38284:28:0;-1:-1:-1;;;;;38284:45:0::3;;:111:::0;::::3;;;-1:-1:-1::0;38362:4:0::3;::::0;38350:28:::3;::::0;;-1:-1:-1;;;38350:28:0;;;;38390:4:::3;::::0;-1:-1:-1;;;;;38362:4:0::3;::::0;38350:26:::3;::::0;:28:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;38362:4;38350:28;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;38350:28:0;-1:-1:-1;;;;;38350:45:0::3;;38284:111;:178;;;;-1:-1:-1::0;38428:5:0::3;::::0;38416:29:::3;::::0;;-1:-1:-1;;;38416:29:0;;;;38457:4:::3;::::0;-1:-1:-1;;;;;38428:5:0::3;::::0;38416:27:::3;::::0;:29:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;38428:5;38416:29;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;38416:29:0;-1:-1:-1;;;;;38416:46:0::3;;38284:178;:251;;;;-1:-1:-1::0;38492:14:0::3;::::0;38483:35:::3;::::0;;-1:-1:-1;;;38483:35:0;;;;38530:4:::3;::::0;-1:-1:-1;;;;;38492:14:0::3;::::0;38483:33:::3;::::0;:35:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;38492:14;38483:35;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;38483:35:0;-1:-1:-1;;;;;38483:52:0::3;;38284:251;:321;;;;-1:-1:-1::0;38565:11:0::3;::::0;38556:32:::3;::::0;;-1:-1:-1;;;38556:32:0;;;;38600:4:::3;::::0;-1:-1:-1;;;;;38565:11:0::3;::::0;38556:30:::3;::::0;:32:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;38565:11;38556:32;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;38556:32:0;-1:-1:-1;;;;;38556:49:0::3;;38284:321;:394;;;;-1:-1:-1::0;38635:14:0::3;::::0;38626:35:::3;::::0;;-1:-1:-1;;;38626:35:0;;;;38673:4:::3;::::0;-1:-1:-1;;;;;38635:14:0::3;::::0;38626:33:::3;::::0;:35:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;38635:14;38626:35;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;38626:35:0;-1:-1:-1;;;;;38626:52:0::3;;38284:394;38262:474;;;::::0;;-1:-1:-1;;;38262:474:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;;;;;;;;;38262:474:0;;;;;;;;;;;;;::::3;;43248:6:::4;::::0;43214:17:::4;::::0;43234:21:::4;::::0;-1:-1:-1;;;;;43248:6:0::4;43234:13;:21::i;:::-;43214:41;;43300:12;;43288:9;:24;43266:136;;;;-1:-1:-1::0;;;43266:136:0::4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43415:20;43438:40;43447:22;;43471:6;43438:8;:40::i;:::-;43415:63;;43512:1;43497:12;:16;43489:75;;;;-1:-1:-1::0;;;43489:75:0::4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43602:22;::::0;:40:::4;::::0;43629:12;43602:26:::4;:40::i;:::-;43577:22;:65:::0;43665:4:::4;::::0;43653:52:::4;::::0;;-1:-1:-1;;;43653:52:0;;43680:10:::4;43653:52;::::0;::::4;::::0;;;;;;;;;-1:-1:-1;;;;;43665:4:0;;::::4;::::0;43653:26:::4;::::0;:52;;;;;43665:4:::4;::::0;43653:52;;;;;;;;43665:4;;43653:52;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;-1:-1:-1::0;;43723:4:0::4;::::0;43716:51:::4;::::0;-1:-1:-1;;;;;;43723:4:0::4;::::0;-1:-1:-1;43742:10:0::4;43754:12:::0;43716:25:::4;:51::i;:::-;43778:18;:16;:18::i;:::-;43814:39;::::0;;;;;;;43828:10:::4;::::0;43814:39:::4;::::0;;;;;::::4;::::0;;::::4;-1:-1:-1::0;;35384:12:0;35376:7;:21;;;;;;;;;;;35398:9;35376:32;;;;;;;;:39;;35411:4;-1:-1:-1;;35376:39:0;;;;;;;;35448:10;35426:33;;;;;;:40;;;;;;;;;;-1:-1:-1;43050:811:0:o;31516:244::-;30793:12;:10;:12::i;:::-;30783:6;;-1:-1:-1;;;;;30783:6:0;;;:22;;;30775:67;;;;;-1:-1:-1;;;30775:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30775:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31605:22:0;::::1;31597:73;;;;-1:-1:-1::0;;;31597:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31707:6;::::0;31686:38:::1;::::0;-1:-1:-1;;;;;31686:38:0;;::::1;::::0;31707:6:::1;::::0;31686:38:::1;::::0;31707:6:::1;::::0;31686:38:::1;31735:6;:17:::0;;-1:-1:-1;;;;;;31735:17:0::1;-1:-1:-1::0;;;;;31735:17:0;;;::::1;::::0;;;::::1;::::0;;31516:244::o;5966:471::-;6024:7;6269:6;6265:47;;-1:-1:-1;6299:1:0;6292:8;;6265:47;6336:5;;;6340:1;6336;:5;:1;6360:5;;;;;:10;6352:56;;;;-1:-1:-1;;;6352:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6428:1;-1:-1:-1;5966:471:0;;;;;:::o;6913:132::-;6971:7;6998:39;7002:1;7005;6998:39;;;;;;;;;;;;;;;;;:3;:39::i;29123:106::-;29211:10;29123:106;:::o;32668:294::-;-1:-1:-1;;;;;32759:26:0;;32737:121;;;;-1:-1:-1;;;32737:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32874:45;;-1:-1:-1;;;;;32874:45:0;;;32902:1;;32874:45;;32902:1;;32874:45;32930:9;:24;;-1:-1:-1;;;;;;32930:24:0;-1:-1:-1;;;;;32930:24:0;;;;;;;;;;32668:294::o;34802:125::-;34895:12;34863:4;34887:21;;;;;;;;;;;34909:9;34887:32;;;;;;;;;;34802:125;:::o;34935:126::-;35028:12;34996:4;35020:21;;;;;;;;;;;35042:10;35020:33;;;;;;;;;;34935:126;:::o;42013:96::-;42073:6;;;;;;;;;-1:-1:-1;;;;;42073:6:0;-1:-1:-1;;;;;42065:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42013:96::o;39176:292::-;39288:4;;39263:36;;;-1:-1:-1;;;39263:36:0;;-1:-1:-1;;;;;39288:4:0;;;39263:36;;;;39294:4;39263:36;;;;;;39239:7;;39263:24;;;;;:36;;;;;;;;;;;;;;:24;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39263:36:0;;;39259:202;;39385:64;;-1:-1:-1;;;39385:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5076:136;5134:7;5161:43;5165:1;5168;5161:43;;;;;;;;;;;;;;;;;:3;:43::i;4612:181::-;4670:7;4702:5;;;4726:6;;;;4718:46;;;;;-1:-1:-1;;;4718:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16436:622;16806:10;;;16805:62;;-1:-1:-1;16822:39:0;;;-1:-1:-1;;;16822:39:0;;16846:4;16822:39;;;;-1:-1:-1;;;;;16822:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16822:39:0;:44;16805:62;16797:152;;;;-1:-1:-1;;;16797:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16987:62;;;-1:-1:-1;;;;;16987:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16987:62:0;-1:-1:-1;;;16987:62:0;;;16960:90;;16980:5;;16960:19;:90::i;:::-;16436:622;;;:::o;459:106::-;517:7;548:1;544;:5;:13;;556:1;544:13;;;-1:-1:-1;552:1:0;;459:106;-1:-1:-1;459:106:0:o;15777:177::-;15887:58;;;-1:-1:-1;;;;;15887:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15887:58:0;-1:-1:-1;;;15887:58:0;;;15860:86;;15880:5;;15860:19;:86::i;7541:278::-;7627:7;7662:12;7655:5;7647:28;;;;-1:-1:-1;;;7647:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7686:9;7702:1;7698;:5;;;;;;;7541:278;-1:-1:-1;;;;;7541:278:0:o;5515:192::-;5601:7;5637:12;5629:6;;;;5621:29;;;;-1:-1:-1;;;5621:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5673:5:0;;;5515:192::o;18082:761::-;18506:23;18532:69;18560:4;18532:69;;;;;;;;;;;;;;;;;18540:5;-1:-1:-1;;;;;18532:27:0;;;:69;;;;;:::i;:::-;18616:17;;18506:95;;-1:-1:-1;18616:21:0;18612:224;;18758:10;18747:30;;;;;;;;;;;;;;;-1:-1:-1;18747:30:0;18739:85;;;;-1:-1:-1;;;18739:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12756:196;12859:12;12891:53;12914:6;12922:4;12928:1;12931:12;12891:22;:53::i;:::-;12884:60;12756:196;-1:-1:-1;;;;12756:196:0:o;14133:979::-;14263:12;14296:18;14307:6;14296:10;:18::i;:::-;14288:60;;;;;-1:-1:-1;;;14288:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14422:12;14436:23;14463:6;-1:-1:-1;;;;;14463:11:0;14483:8;14494:4;14463:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14463:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14421:78;;;;14514:7;14510:595;;;14545:10;-1:-1:-1;14538:17:0;;-1:-1:-1;14538:17:0;14510:595;14659:17;;:21;14655:439;;14922:10;14916:17;14983:15;14970:10;14966:2;14962:19;14955:44;14870:148;15058:20;;-1:-1:-1;;;15058:20:0;;;;;;;;;;;;;;;;;15065:12;;15058:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9838:422;10205:20;10244:8;;;9838:422::o

Swarm Source

ipfs://30145ab5052ed1a62417a883ac949f09646de5393bc45d90bb77d2962a4db7d4

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

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