Overview
S Balance
0 S
S Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Treasury
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-01-22 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev 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; } } /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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); } } } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } library Babylonian { function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } // else z = 0 } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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; } } contract Operator is Context, Ownable { address private _operator; event OperatorTransferred(address indexed previousOperator, address indexed newOperator); constructor() internal { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); } function operator() public view returns (address) { return _operator; } modifier onlyOperator() { require(_operator == msg.sender, "operator: caller is not the operator"); _; } function isOperator() public view returns (bool) { return _msgSender() == _operator; } function transferOperator(address newOperator_) public onlyOwner { _transferOperator(newOperator_); } function _transferOperator(address newOperator_) internal { require(newOperator_ != address(0), "operator: zero address given for new operator"); emit OperatorTransferred(address(0), newOperator_); _operator = newOperator_; } } contract ContractGuard { mapping(uint256 => mapping(address => bool)) private _status; function checkSameOriginReentranted() internal view returns (bool) { return _status[block.number][tx.origin]; } function checkSameSenderReentranted() internal view returns (bool) { return _status[block.number][msg.sender]; } modifier onlyOneBlock() { require(!checkSameOriginReentranted(), "ContractGuard: one block, one function"); require(!checkSameSenderReentranted(), "ContractGuard: one block, one function"); _; _status[block.number][tx.origin] = true; _status[block.number][msg.sender] = true; } } interface IBasisAsset { function mint(address recipient, uint256 amount) external returns (bool); function burn(uint256 amount) external; function burnFrom(address from, uint256 amount) external; function isOperator() external returns (bool); function operator() external view returns (address); function transferOperator(address newOperator_) external; } interface IOracle { function update() external; function consult(address _token, uint256 _amountIn) external view returns (uint144 amountOut); function twap(address _token, uint256 _amountIn) external view returns (uint144 _amountOut); } interface IBoardroom { function balanceOf(address _mason) external view returns (uint256); function earned(address _mason) external view returns (uint256); function canWithdraw(address _mason) external view returns (bool); function canClaimReward(address _mason) external view returns (bool); function epoch() external view returns (uint256); function nextEpochPoint() external view returns (uint256); function getTombPrice() external view returns (uint256); function setOperator(address _operator) external; function setLockUp(uint256 _withdrawLockupEpochs, uint256 _rewardLockupEpochs) external; function stake(uint256 _amount) external; function withdraw(uint256 _amount) external; function exit() external; function claimReward() external; function allocateSeigniorage(uint256 _amount) external; function governanceRecoverUnsupported(address _token, uint256 _amount, address _to) external; } contract Treasury is ContractGuard { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; /* ========= CONSTANT VARIABLES ======== */ uint256 public constant PERIOD = 6 hours; /* ========== STATE VARIABLES ========== */ // governance address public operator; // flags bool public initialized = false; // epoch uint256 public startTime; uint256 public epoch = 0; uint256 public epochSupplyContractionLeft = 0; // exclusions from total supply address[] public excludedFromTotalSupply; // core components address public stomb; address public stbond; address public stshare; address public boardroom; address public stombOracle; // price uint256 public stombPriceOne; uint256 public stombPriceCeiling; uint256 public seigniorageSaved; uint256[] public supplyTiers; uint256[] public maxExpansionTiers; uint256 public maxSupplyExpansionPercent; uint256 public bondDepletionFloorPercent; uint256 public seigniorageExpansionFloorPercent; uint256 public maxSupplyContractionPercent; uint256 public maxDebtRatioPercent; // 28 first epochs (1 week) with 4.5% expansion regardless of STOMB price uint256 public bootstrapEpochs; uint256 public bootstrapSupplyExpansionPercent; /* =================== Added variables =================== */ uint256 public previousEpochStombPrice; uint256 public maxDiscountRate; // when purchasing bond uint256 public maxPremiumRate; // when redeeming bond uint256 public discountPercent; uint256 public premiumThreshold; uint256 public premiumPercent; uint256 public mintingFactorForPayingDebt; // print extra STOMB during debt phase address public daoFund; uint256 public daoFundSharedPercent; address public devFund; uint256 public devFundSharedPercent; /* =================== Events =================== */ event Initialized(address indexed executor, uint256 at); event BurnedBonds(address indexed from, uint256 bondAmount); event RedeemedBonds( address indexed from, uint256 stombAmount, uint256 bondAmount ); event BoughtBonds( address indexed from, uint256 stombAmount, uint256 bondAmount ); event TreasuryFunded(uint256 timestamp, uint256 seigniorage); event BoardroomFunded(uint256 timestamp, uint256 seigniorage); event DaoFundFunded(uint256 timestamp, uint256 seigniorage); event DevFundFunded(uint256 timestamp, uint256 seigniorage); /* =================== Modifier =================== */ modifier onlyOperator() { require(operator == msg.sender, "Treasury: caller is not the operator"); _; } modifier checkCondition() { require(now >= startTime, "Treasury: not started yet"); _; } modifier checkEpoch() { require(now >= nextEpochPoint(), "Treasury: not opened yet"); _; epoch = epoch.add(1); epochSupplyContractionLeft = (getStombPrice() > stombPriceCeiling) ? 0 : getStombCirculatingSupply() .mul(maxSupplyContractionPercent) .div(10000); } modifier checkOperator() { require( IBasisAsset(stomb).operator() == address(this) && IBasisAsset(stbond).operator() == address(this) && IBasisAsset(stshare).operator() == address(this) && Operator(boardroom).operator() == address(this), "Treasury: need more permission" ); _; } modifier notInitialized() { require(!initialized, "Treasury: already initialized"); _; } /* ========== VIEW FUNCTIONS ========== */ function isInitialized() public view returns (bool) { return initialized; } // epoch function nextEpochPoint() public view returns (uint256) { return startTime.add(epoch.mul(PERIOD)); } // oracle function getStombPrice() public view returns (uint256 stombPrice) { try IOracle(stombOracle).consult(stomb, 1e18) returns ( uint144 price ) { return uint256(price).mul(1e12); } catch { revert("Treasury: failed to consult STOMB price from the oracle"); } } function getStombUpdatedPrice() public view returns (uint256 _stombPrice) { try IOracle(stombOracle).twap(stomb, 1e18) returns (uint144 price) { return uint256(price).mul(1e12); } catch { revert("Treasury: failed to consult STOMB price from the oracle"); } } // budget function getReserve() public view returns (uint256) { return seigniorageSaved; } function getBurnableStombLeft() public view returns (uint256 _burnableStombLeft) { uint256 _stombPrice = getStombPrice(); if (_stombPrice <= stombPriceOne) { uint256 _stombSupply = getStombCirculatingSupply(); uint256 _bondMaxSupply = _stombSupply .mul(maxDebtRatioPercent) .div(10000); uint256 _bondSupply = IERC20(stbond).totalSupply(); if (_bondMaxSupply > _bondSupply) { uint256 _maxMintableBond = _bondMaxSupply.sub(_bondSupply); uint256 _maxBurnableStomb = _maxMintableBond .mul(_stombPrice) .div(1e18); _burnableStombLeft = Math.min( epochSupplyContractionLeft, _maxBurnableStomb ); } } } function getRedeemableBonds() public view returns (uint256 _redeemableBonds) { uint256 _stombPrice = getStombPrice(); if (_stombPrice > stombPriceCeiling) { uint256 _totalStomb = IERC20(stomb).balanceOf(address(this)); uint256 _rate = getBondPremiumRate(); if (_rate > 0) { _redeemableBonds = _totalStomb.mul(1e18).div(_rate); } } } function getBondDiscountRate() public view returns (uint256 _rate) { uint256 _stombPrice = getStombPrice(); if (_stombPrice <= stombPriceOne) { if (discountPercent == 0) { // no discount _rate = stombPriceOne; } else { uint256 _bondAmount = stombPriceOne.mul(1e18).div( _stombPrice ); // to burn 1 STOMB uint256 _discountAmount = _bondAmount .sub(stombPriceOne) .mul(discountPercent) .div(10000); _rate = stombPriceOne.add(_discountAmount); if (maxDiscountRate > 0 && _rate > maxDiscountRate) { _rate = maxDiscountRate; } } } } function getBondPremiumRate() public view returns (uint256 _rate) { uint256 _stombPrice = getStombPrice(); if (_stombPrice > stombPriceCeiling) { uint256 _stombPricePremiumThreshold = stombPriceOne .mul(premiumThreshold) .div(100); if (_stombPrice >= _stombPricePremiumThreshold) { //Price > 1.10 uint256 _premiumAmount = _stombPrice .sub(stombPriceOne) .mul(premiumPercent) .div(10000); _rate = stombPriceOne.add(_premiumAmount); if (maxPremiumRate > 0 && _rate > maxPremiumRate) { _rate = maxPremiumRate; } } else { // no premium bonus _rate = stombPriceOne; } } } /* ========== GOVERNANCE ========== */ function initialize( address _stomb, address _stbond, address _stshare, address _stombOracle, address _boardroom, uint256 _startTime ) public notInitialized { stomb = _stomb; stbond = _stbond; stshare = _stshare; stombOracle = _stombOracle; boardroom = _boardroom; startTime = _startTime; stombPriceOne = 10 ** 18; stombPriceCeiling = stombPriceOne.mul(101).div(100); // Dynamic max expansion percent supplyTiers = [ 0 ether, 500000 ether, 1000000 ether, 1500000 ether, 2000000 ether, 5000000 ether, 10000000 ether, 20000000 ether, 50000000 ether ]; maxExpansionTiers = [450, 400, 350, 300, 250, 200, 150, 125, 100]; maxSupplyExpansionPercent = 400; // Upto 4.0% supply for expansion bondDepletionFloorPercent = 10000; // 100% of Bond supply for depletion floor seigniorageExpansionFloorPercent = 3500; // At least 35% of expansion reserved for boardroom maxSupplyContractionPercent = 300; // Upto 3.0% supply for contraction (to burn STOMB and mint tBOND) maxDebtRatioPercent = 3500; // Upto 35% supply of tBOND to purchase premiumThreshold = 110; premiumPercent = 7000; // First 28 epochs with 4.5% expansion bootstrapEpochs = 28; bootstrapSupplyExpansionPercent = 450; // set seigniorageSaved to it's balance seigniorageSaved = IERC20(stomb).balanceOf(address(this)); initialized = true; operator = msg.sender; emit Initialized(msg.sender, block.number); } function setOperator(address _operator) external onlyOperator { operator = _operator; } function setBoardroom(address _boardroom) external onlyOperator { boardroom = _boardroom; } function setStombOracle(address _stombOracle) external onlyOperator { stombOracle = _stombOracle; } function setExcludedFromTotalSupply( address _excluded ) external onlyOperator { excludedFromTotalSupply.push(_excluded); } function setStombPriceCeiling( uint256 _stombPriceCeiling ) external onlyOperator { require( _stombPriceCeiling >= stombPriceOne && _stombPriceCeiling <= stombPriceOne.mul(120).div(100), "out of range" ); // [$1.0, $1.2] stombPriceCeiling = _stombPriceCeiling; } function setMaxSupplyExpansionPercents( uint256 _maxSupplyExpansionPercent ) external onlyOperator { require( _maxSupplyExpansionPercent >= 10 && _maxSupplyExpansionPercent <= 1000, "_maxSupplyExpansionPercent: out of range" ); // [0.1%, 10%] maxSupplyExpansionPercent = _maxSupplyExpansionPercent; } function setSupplyTiersEntry( uint8 _index, uint256 _value ) external onlyOperator returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require(_index < 9, "Index has to be lower than count of tiers"); if (_index > 0) { require(_value > supplyTiers[_index - 1]); } if (_index < 8) { require(_value < supplyTiers[_index + 1]); } supplyTiers[_index] = _value; return true; } function setMaxExpansionTiersEntry( uint8 _index, uint256 _value ) external onlyOperator returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require(_index < 9, "Index has to be lower than count of tiers"); require(_value >= 10 && _value <= 1000, "_value: out of range"); // [0.1%, 10%] maxExpansionTiers[_index] = _value; return true; } function setBondDepletionFloorPercent( uint256 _bondDepletionFloorPercent ) external onlyOperator { require( _bondDepletionFloorPercent >= 500 && _bondDepletionFloorPercent <= 10000, "out of range" ); // [5%, 100%] bondDepletionFloorPercent = _bondDepletionFloorPercent; } function setMaxSupplyContractionPercent( uint256 _maxSupplyContractionPercent ) external onlyOperator { require( _maxSupplyContractionPercent >= 100 && _maxSupplyContractionPercent <= 1500, "out of range" ); // [0.1%, 15%] maxSupplyContractionPercent = _maxSupplyContractionPercent; } function setMaxDebtRatioPercent( uint256 _maxDebtRatioPercent ) external onlyOperator { require( _maxDebtRatioPercent >= 1000 && _maxDebtRatioPercent <= 10000, "out of range" ); // [10%, 100%] maxDebtRatioPercent = _maxDebtRatioPercent; } function setBootstrap( uint256 _bootstrapEpochs, uint256 _bootstrapSupplyExpansionPercent ) external onlyOperator { require(_bootstrapEpochs <= 120, "_bootstrapEpochs: out of range"); // <= 1 month require( _bootstrapSupplyExpansionPercent >= 100 && _bootstrapSupplyExpansionPercent <= 1000, "_bootstrapSupplyExpansionPercent: out of range" ); // [1%, 10%] bootstrapEpochs = _bootstrapEpochs; bootstrapSupplyExpansionPercent = _bootstrapSupplyExpansionPercent; } function setExtraFunds( address _daoFund, uint256 _daoFundSharedPercent, address _devFund, uint256 _devFundSharedPercent ) external onlyOperator { require(_daoFund != address(0), "zero"); require(_daoFundSharedPercent <= 3000, "out of range"); // <= 30% require(_devFund != address(0), "zero"); require(_devFundSharedPercent <= 1000, "out of range"); // <= 10% daoFund = _daoFund; daoFundSharedPercent = _daoFundSharedPercent; devFund = _devFund; devFundSharedPercent = _devFundSharedPercent; } function setMaxDiscountRate( uint256 _maxDiscountRate ) external onlyOperator { maxDiscountRate = _maxDiscountRate; } function setMaxPremiumRate(uint256 _maxPremiumRate) external onlyOperator { maxPremiumRate = _maxPremiumRate; } function setDiscountPercent( uint256 _discountPercent ) external onlyOperator { require(_discountPercent <= 20000, "_discountPercent is over 200%"); discountPercent = _discountPercent; } function setPremiumThreshold( uint256 _premiumThreshold ) external onlyOperator { require( _premiumThreshold >= stombPriceCeiling, "_premiumThreshold exceeds stombPriceCeiling" ); require( _premiumThreshold <= 150, "_premiumThreshold is higher than 1.5" ); premiumThreshold = _premiumThreshold; } function setPremiumPercent(uint256 _premiumPercent) external onlyOperator { require(_premiumPercent <= 20000, "_premiumPercent is over 200%"); premiumPercent = _premiumPercent; } function setMintingFactorForPayingDebt( uint256 _mintingFactorForPayingDebt ) external onlyOperator { require( _mintingFactorForPayingDebt >= 10000 && _mintingFactorForPayingDebt <= 20000, "_mintingFactorForPayingDebt: out of range" ); // [100%, 200%] mintingFactorForPayingDebt = _mintingFactorForPayingDebt; } /* ========== MUTABLE FUNCTIONS ========== */ function _updateStombPrice() internal { try IOracle(stombOracle).update() {} catch {} } function getStombCirculatingSupply() public view returns (uint256) { IERC20 stombErc20 = IERC20(stomb); uint256 totalSupply = stombErc20.totalSupply(); uint256 balanceExcluded = 0; for ( uint8 entryId = 0; entryId < excludedFromTotalSupply.length; ++entryId ) { balanceExcluded = balanceExcluded.add( stombErc20.balanceOf(excludedFromTotalSupply[entryId]) ); } return totalSupply.sub(balanceExcluded); } function buyBonds( uint256 _stombAmount, uint256 targetPrice ) external onlyOneBlock checkCondition checkOperator { require( _stombAmount > 0, "Treasury: cannot purchase bonds with zero amount" ); uint256 stombPrice = getStombPrice(); require(stombPrice == targetPrice, "Treasury: STOMB price moved"); require( stombPrice < stombPriceOne, // price < $1 "Treasury: stombPrice not eligible for bond purchase" ); require( _stombAmount <= epochSupplyContractionLeft, "Treasury: not enough bond left to purchase" ); uint256 _rate = getBondDiscountRate(); require(_rate > 0, "Treasury: invalid bond rate"); uint256 _bondAmount = _stombAmount.mul(_rate).div(1e18); uint256 stombSupply = getStombCirculatingSupply(); uint256 newBondSupply = IERC20(stbond).totalSupply().add(_bondAmount); require( newBondSupply <= stombSupply.mul(maxDebtRatioPercent).div(10000), "over max debt ratio" ); IBasisAsset(stomb).burnFrom(msg.sender, _stombAmount); IBasisAsset(stbond).mint(msg.sender, _bondAmount); epochSupplyContractionLeft = epochSupplyContractionLeft.sub( _stombAmount ); _updateStombPrice(); emit BoughtBonds(msg.sender, _stombAmount, _bondAmount); } function redeemBonds( uint256 _bondAmount, uint256 targetPrice ) external onlyOneBlock checkCondition checkOperator { require( _bondAmount > 0, "Treasury: cannot redeem bonds with zero amount" ); uint256 stombPrice = getStombPrice(); require(stombPrice == targetPrice, "Treasury: STOMB price moved"); require( stombPrice > stombPriceCeiling, // price > $1.01 "Treasury: stombPrice not eligible for bond purchase" ); uint256 _rate = getBondPremiumRate(); require(_rate > 0, "Treasury: invalid bond rate"); uint256 _stombAmount = _bondAmount.mul(_rate).div(1e18); require( IERC20(stomb).balanceOf(address(this)) >= _stombAmount, "Treasury: treasury has no more budget" ); seigniorageSaved = seigniorageSaved.sub( Math.min(seigniorageSaved, _stombAmount) ); IBasisAsset(stbond).burnFrom(msg.sender, _bondAmount); IERC20(stomb).safeTransfer(msg.sender, _stombAmount); _updateStombPrice(); emit RedeemedBonds(msg.sender, _stombAmount, _bondAmount); } function _sendToBoardroom(uint256 _amount) internal { IBasisAsset(stomb).mint(address(this), _amount); uint256 _daoFundSharedAmount = 0; if (daoFundSharedPercent > 0) { _daoFundSharedAmount = _amount.mul(daoFundSharedPercent).div(10000); IERC20(stomb).transfer(daoFund, _daoFundSharedAmount); emit DaoFundFunded(now, _daoFundSharedAmount); } uint256 _devFundSharedAmount = 0; if (devFundSharedPercent > 0) { _devFundSharedAmount = _amount.mul(devFundSharedPercent).div(10000); IERC20(stomb).transfer(devFund, _devFundSharedAmount); emit DevFundFunded(now, _devFundSharedAmount); } _amount = _amount.sub(_daoFundSharedAmount).sub(_devFundSharedAmount); IERC20(stomb).safeApprove(boardroom, 0); IERC20(stomb).safeApprove(boardroom, _amount); IBoardroom(boardroom).allocateSeigniorage(_amount); emit BoardroomFunded(now, _amount); } function _calculateMaxSupplyExpansionPercent( uint256 _stombSupply ) internal returns (uint256) { for (uint8 tierId = 8; tierId >= 0; --tierId) { if (_stombSupply >= supplyTiers[tierId]) { maxSupplyExpansionPercent = maxExpansionTiers[tierId]; break; } } return maxSupplyExpansionPercent; } function allocateSeigniorage() external onlyOneBlock checkCondition checkEpoch checkOperator { _updateStombPrice(); previousEpochStombPrice = getStombPrice(); uint256 stombSupply = getStombCirculatingSupply().sub( seigniorageSaved ); if (epoch < bootstrapEpochs) { // 28 first epochs with 4.5% expansion _sendToBoardroom( stombSupply.mul(bootstrapSupplyExpansionPercent).div(10000) ); } else { if (previousEpochStombPrice > stombPriceCeiling) { // Expansion ($STOMB Price > 1 $S): there is some seigniorage to be allocated uint256 bondSupply = IERC20(stbond).totalSupply(); uint256 _percentage = previousEpochStombPrice.sub( stombPriceOne ); uint256 _savedForBond; uint256 _savedForBoardroom; uint256 _mse = _calculateMaxSupplyExpansionPercent( stombSupply ).mul(1e14); if (_percentage > _mse) { _percentage = _mse; } if ( seigniorageSaved >= bondSupply.mul(bondDepletionFloorPercent).div(10000) ) { // saved enough to pay debt, mint as usual rate _savedForBoardroom = stombSupply.mul(_percentage).div( 1e18 ); } else { // have not saved enough to pay debt, mint more uint256 _seigniorage = stombSupply.mul(_percentage).div( 1e18 ); _savedForBoardroom = _seigniorage .mul(seigniorageExpansionFloorPercent) .div(10000); _savedForBond = _seigniorage.sub(_savedForBoardroom); if (mintingFactorForPayingDebt > 0) { _savedForBond = _savedForBond .mul(mintingFactorForPayingDebt) .div(10000); } } if (_savedForBoardroom > 0) { _sendToBoardroom(_savedForBoardroom); } if (_savedForBond > 0) { seigniorageSaved = seigniorageSaved.add(_savedForBond); IBasisAsset(stomb).mint(address(this), _savedForBond); emit TreasuryFunded(now, _savedForBond); } } } } function governanceRecoverUnsupported( IERC20 _token, uint256 _amount, address _to ) external onlyOperator { // do not allow to drain core tokens require(address(_token) != address(stomb), "stomb"); require(address(_token) != address(stbond), "bond"); require(address(_token) != address(stshare), "share"); _token.safeTransfer(_to, _amount); } function boardroomSetOperator(address _operator) external onlyOperator { IBoardroom(boardroom).setOperator(_operator); } function boardroomSetLockUp( uint256 _withdrawLockupEpochs, uint256 _rewardLockupEpochs ) external onlyOperator { IBoardroom(boardroom).setLockUp( _withdrawLockupEpochs, _rewardLockupEpochs ); } function boardroomAllocateSeigniorage( uint256 amount ) external onlyOperator { IBoardroom(boardroom).allocateSeigniorage(amount); } function boardroomGovernanceRecoverUnsupported( address _token, uint256 _amount, address _to ) external onlyOperator { IBoardroom(boardroom).governanceRecoverUnsupported( _token, _amount, _to ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"BoardroomFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"stombAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bondAmount","type":"uint256"}],"name":"BoughtBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"bondAmount","type":"uint256"}],"name":"BurnedBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"DaoFundFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"DevFundFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"executor","type":"address"},{"indexed":false,"internalType":"uint256","name":"at","type":"uint256"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"stombAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bondAmount","type":"uint256"}],"name":"RedeemedBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"TreasuryFunded","type":"event"},{"inputs":[],"name":"PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allocateSeigniorage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"boardroom","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"boardroomAllocateSeigniorage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"boardroomGovernanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawLockupEpochs","type":"uint256"},{"internalType":"uint256","name":"_rewardLockupEpochs","type":"uint256"}],"name":"boardroomSetLockUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"boardroomSetOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bondDepletionFloorPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bootstrapEpochs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bootstrapSupplyExpansionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stombAmount","type":"uint256"},{"internalType":"uint256","name":"targetPrice","type":"uint256"}],"name":"buyBonds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"daoFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoFundSharedPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundSharedPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epochSupplyContractionLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"excludedFromTotalSupply","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBondDiscountRate","outputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBondPremiumRate","outputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnableStombLeft","outputs":[{"internalType":"uint256","name":"_burnableStombLeft","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRedeemableBonds","outputs":[{"internalType":"uint256","name":"_redeemableBonds","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStombCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStombPrice","outputs":[{"internalType":"uint256","name":"stombPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStombUpdatedPrice","outputs":[{"internalType":"uint256","name":"_stombPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stomb","type":"address"},{"internalType":"address","name":"_stbond","type":"address"},{"internalType":"address","name":"_stshare","type":"address"},{"internalType":"address","name":"_stombOracle","type":"address"},{"internalType":"address","name":"_boardroom","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDebtRatioPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDiscountRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxExpansionTiers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPremiumRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyContractionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyExpansionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingFactorForPayingDebt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextEpochPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"previousEpochStombPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bondAmount","type":"uint256"},{"internalType":"uint256","name":"targetPrice","type":"uint256"}],"name":"redeemBonds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seigniorageExpansionFloorPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seigniorageSaved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_boardroom","type":"address"}],"name":"setBoardroom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bondDepletionFloorPercent","type":"uint256"}],"name":"setBondDepletionFloorPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bootstrapEpochs","type":"uint256"},{"internalType":"uint256","name":"_bootstrapSupplyExpansionPercent","type":"uint256"}],"name":"setBootstrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_discountPercent","type":"uint256"}],"name":"setDiscountPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_excluded","type":"address"}],"name":"setExcludedFromTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_daoFund","type":"address"},{"internalType":"uint256","name":"_daoFundSharedPercent","type":"uint256"},{"internalType":"address","name":"_devFund","type":"address"},{"internalType":"uint256","name":"_devFundSharedPercent","type":"uint256"}],"name":"setExtraFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxDebtRatioPercent","type":"uint256"}],"name":"setMaxDebtRatioPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxDiscountRate","type":"uint256"}],"name":"setMaxDiscountRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setMaxExpansionTiersEntry","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPremiumRate","type":"uint256"}],"name":"setMaxPremiumRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyContractionPercent","type":"uint256"}],"name":"setMaxSupplyContractionPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyExpansionPercent","type":"uint256"}],"name":"setMaxSupplyExpansionPercents","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintingFactorForPayingDebt","type":"uint256"}],"name":"setMintingFactorForPayingDebt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_premiumPercent","type":"uint256"}],"name":"setPremiumPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_premiumThreshold","type":"uint256"}],"name":"setPremiumThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stombOracle","type":"address"}],"name":"setStombOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stombPriceCeiling","type":"uint256"}],"name":"setStombPriceCeiling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setSupplyTiersEntry","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stbond","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stomb","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stombOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stombPriceCeiling","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stombPriceOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stshare","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supplyTiers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526001805460ff60a01b191690556000600381905560045534801561002757600080fd5b506147ca806100376000396000f3fe608060405234801561001057600080fd5b50600436106104335760003560e01c806382cad83811610236578063b3ab15fb1161013b578063d4b14944116100c3578063ea41cd1911610087578063ea41cd19146109b7578063f14698de146109bf578063f50f8681146109c7578063f8cd4d72146109e4578063fcb6f00814610a0757610433565b8063d4b1494414610971578063d98f249514610997578063da3ed4191461099f578063dc914762146109a7578063e90b2454146109af57610433565b8063bcc81f191161010a578063bcc81f1914610902578063c5967c261461093c578063c8412d0214610944578063c8f987f31461094c578063cecce38e1461095457610433565b8063b3ab15fb146108a6578063b3ffc777146108cc578063b4d1d795146108f2578063b8a878f9146108fa57610433565b806395b6ef0c116101be578063a0487eea1161018d578063a0487eea14610808578063a204452b14610825578063a3ec30fe14610842578063ad41e9c914610878578063b06ce14a1461088057610433565b806395b6ef0c1461077a57806398b762a1146107c657806399820025146107e35780639cd3cbdc1461080057610433565b80638ee9ab0c116102055780638ee9ab0c146106dd578063900cf0cf1461070357806391bbfed51461070b578063940e60641461072e578063953287c31461075457610433565b806382cad83814610693578063874106cc146106b05780638c664db6146106b85780638d934f74146106d557610433565b80634013a08e1161033c57806359bf5d39116102c45780636372dd34116102935780636372dd341461066b578063705175161461067357806372c054f91461067b57806378e979251461068357806381d11eaf1461068b57610433565b806359bf5d391461064b5780635a0fc79c146106535780635b7561791461065b5780635e02c51e1461066357610433565b806354575af41161030b57806354575af4146105c557806354f04a11146105fb57806355ebdeef1461061e578063570ca73514610626578063591663e11461062e57610433565b80634013a08e1461057b57806340af7ba5146105835780634390d2a8146105a0578063499f3f19146105a857610433565b8063158ef93e116103bf5780632e9c7b651161038e5780632e9c7b65146105535780633117cf331461055b578063392e53cd146105635780633a80e4a01461056b5780633ed2bef71461057357610433565b8063158ef93e1461050357806322f832cd1461051f57806329ef1919146105275780632cf7521d1461052f57610433565b80630b5bcec7116104065780630b5bcec7146104965780630cf60175146104b35780630db7eb0b146104bb578063118ebbf9146104c3578063154ec2db146104e657610433565b806301a937831461043857806303be7e7614610457578063049e9d791461047157806304e5c7b114610479575b600080fd5b6104556004803603602081101561044e57600080fd5b5035610a0f565b005b61045f610ac0565b60408051918252519081900360200190f35b61045f610ac6565b6104556004803603602081101561048f57600080fd5b5035610bd4565b610455600480360360208110156104ac57600080fd5b5035610ca3565b61045f610d3f565b61045f610dea565b610455600480360360408110156104d957600080fd5b5080359060200135610e8c565b610455600480360360208110156104fc57600080fd5b50356114e9565b61050b61158e565b604080519115158252519081900360200190f35b61045f61159e565b61045f6115a4565b6105376115aa565b604080516001600160a01b039092168252519081900360200190f35b61045f6115b9565b61045f6115bf565b61050b611708565b61045f611718565b61045f61171e565b61045f611724565b6104556004803603602081101561059957600080fd5b503561172a565b6105376117cf565b610455600480360360208110156105be57600080fd5b50356117de565b610455600480360360608110156105db57600080fd5b506001600160a01b0381358116916020810135916040909101351661187b565b6104556004803603604081101561061157600080fd5b50803590602001356119bf565b61045f6120fe565b610537612104565b6104556004803603602081101561064457600080fd5b5035612113565b61045f6121b5565b61045f6121bb565b6104556121c1565b610537612873565b610537612882565b610537612891565b61045f6128a0565b61045f612958565b61045f61295e565b610537600480360360208110156106a957600080fd5b5035612964565b61045f61298b565b610455600480360360208110156106ce57600080fd5b5035612991565b610537612a33565b610455600480360360208110156106f357600080fd5b50356001600160a01b0316612a42565b61045f612add565b6104556004803603604081101561072157600080fd5b5080359060200135612ae3565b61050b6004803603604081101561074457600080fd5b5060ff8135169060200135612bdb565b6104556004803603602081101561076a57600080fd5b50356001600160a01b0316612cf7565b610455600480360360c081101561079057600080fd5b506001600160a01b0381358116916020810135821691604082013581169160608101358216916080820135169060a00135612d62565b610455600480360360208110156107dc57600080fd5b503561304f565b61045f600480360360208110156107f957600080fd5b503561309d565b6105376130bb565b61045f6004803603602081101561081e57600080fd5b50356130ca565b6104556004803603602081101561083b57600080fd5b50356130d7565b6104556004803603606081101561085857600080fd5b506001600160a01b03813581169160208101359160409091013516613125565b61045f6131e8565b6104556004803603602081101561089657600080fd5b50356001600160a01b03166131ee565b610455600480360360208110156108bc57600080fd5b50356001600160a01b0316613285565b610455600480360360208110156108e257600080fd5b50356001600160a01b03166132f0565b61045f61335b565b61045f613361565b6104556004803603608081101561091857600080fd5b506001600160a01b0381358116916020810135916040820135169060600135613367565b61045f6134fc565b61045f613526565b61045f61352c565b6104556004803603602081101561096a57600080fd5b5035613532565b61050b6004803603604081101561098757600080fd5b5060ff81351690602001356135d3565b61045f6136cd565b61045f6136d3565b61045f6136d9565b61045f6137c6565b61045f6137cc565b61045f61382e565b610455600480360360208110156109dd57600080fd5b5035613834565b610455600480360360408110156109fa57600080fd5b50803590602001356138ee565b61045f6139a7565b6001546001600160a01b03163314610a585760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600954604080516397ffe1d760e01b81526004810184905290516001600160a01b03909216916397ffe1d79160248082019260009290919082900301818387803b158015610aa557600080fd5b505af1158015610ab9573d6000803e3d6000fd5b5050505050565b60215481565b600080610ad16137cc565b9050600b548111610bd0576000610ae66115bf565b90506000610b0b612710610b05601454856139ad90919063ffffffff16565b90613a0d565b90506000600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b5d57600080fd5b505afa158015610b71573d6000803e3d6000fd5b505050506040513d6020811015610b8757600080fd5b5051905080821115610bcc576000610b9f8383613a4f565b90506000610bb9670de0b6b3a7640000610b0584896139ad565b9050610bc760045482613a91565b965050505b5050505b5090565b6001546001600160a01b03163314610c1d5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600c54811015610c5e5760405162461bcd60e51b815260040180806020018281038252602b81526020018061476a602b913960400191505060405180910390fd5b6096811115610c9e5760405162461bcd60e51b815260040180806020018281038252602481526020018061451d6024913960400191505060405180910390fd5b601b55565b6001546001600160a01b03163314610cec5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600a8110158015610cff57506103e88111155b610d3a5760405162461bcd60e51b81526004018080602001828103825260288152602001806145e06028913960400191505060405180910390fd5b601055565b600080610d4a6137cc565b9050600b548111610bd057601a54610d6657600b549150610bd0565b6000610d8982610b05670de0b6b3a7640000600b546139ad90919063ffffffff16565b90506000610db4612710610b05601a54610dae600b5487613a4f90919063ffffffff16565b906139ad565b600b54909150610dc49082613aa7565b93506000601854118015610dd9575060185484115b15610de45760185493505b50505090565b600080610df56137cc565b9050600c54811115610bd0576000610e1f6064610b05601b54600b546139ad90919063ffffffff16565b9050808210610e81576000610e4b612710610b05601c54610dae600b5488613a4f90919063ffffffff16565b600b54909150610e5b9082613aa7565b93506000601954118015610e70575060195484115b15610e7b5760195493505b50610e87565b600b5492505b505090565b610e94613b01565b15610ed05760405162461bcd60e51b81526004018080602001828103825260268152602001806146b66026913960400191505060405180910390fd5b610ed8613b20565b15610f145760405162461bcd60e51b81526004018080602001828103825260268152602001806146b66026913960400191505060405180910390fd5b600254421015610f67576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610fab57600080fd5b505afa158015610fbf573d6000803e3d6000fd5b505050506040513d6020811015610fd557600080fd5b50516001600160a01b031614801561106357506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561102c57600080fd5b505afa158015611040573d6000803e3d6000fd5b505050506040513d602081101561105657600080fd5b50516001600160a01b0316145b80156110e557506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b1580156110ae57600080fd5b505afa1580156110c2573d6000803e3d6000fd5b505050506040513d60208110156110d857600080fd5b50516001600160a01b0316145b801561116757506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561113057600080fd5b505afa158015611144573d6000803e3d6000fd5b505050506040513d602081101561115a57600080fd5b50516001600160a01b0316145b6111b8576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b600082116111f75760405162461bcd60e51b815260040180806020018281038252602e8152602001806144ef602e913960400191505060405180910390fd5b60006112016137cc565b9050818114611257576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a2053544f4d42207072696365206d6f7665640000000000604482015290519081900360640190fd5b600c5481116112975760405162461bcd60e51b81526004018080602001828103825260338152602001806144bc6033913960400191505060405180910390fd5b60006112a1610dea565b9050600081116112f8576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e6420726174650000000000604482015290519081900360640190fd5b6000611310670de0b6b3a7640000610b0587856139ad565b600654604080516370a0823160e01b8152306004820152905192935083926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561136057600080fd5b505afa158015611374573d6000803e3d6000fd5b505050506040513d602081101561138a57600080fd5b505110156113c95760405162461bcd60e51b81526004018080602001828103825260258152602001806145416025913960400191505060405180910390fd5b6113e16113d8600d5483613a91565b600d5490613a4f565b600d556007546040805163079cc67960e41b81523360048201526024810188905290516001600160a01b03909216916379cc67909160448082019260009290919082900301818387803b15801561143757600080fd5b505af115801561144b573d6000803e3d6000fd5b505060065461146792506001600160a01b031690503383613b3f565b61146f613b91565b6040805182815260208101879052815133927f51e0d16595cabc591e64da08e45bb223577e5b9a39cd947b4ddc3472b2dd8878928290030190a25050436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055505050565b6001546001600160a01b031633146115325760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b614e20811115611589576040805162461bcd60e51b815260206004820152601d60248201527f5f646973636f756e7450657263656e74206973206f7665722032303025000000604482015290519081900360640190fd5b601a55565b600154600160a01b900460ff1681565b60125481565b601a5481565b6006546001600160a01b031681565b60195481565b600654604080516318160ddd60e01b815290516000926001600160a01b031691839183916318160ddd916004808301926020929190829003018186803b15801561160857600080fd5b505afa15801561161c573d6000803e3d6000fd5b505050506040513d602081101561163257600080fd5b505190506000805b60055460ff821610156116f4576116ea846001600160a01b03166370a0823160058460ff168154811061166957fe5b60009182526020918290200154604080516001600160e01b031960e086901b1681526001600160a01b0390921660048301525160248083019392829003018186803b1580156116b757600080fd5b505afa1580156116cb573d6000803e3d6000fd5b505050506040513d60208110156116e157600080fd5b50518390613aa7565b915060010161163a565b506116ff8282613a4f565b93505050505b90565b600154600160a01b900460ff1690565b60175481565b600b5481565b601d5481565b6001546001600160a01b031633146117735760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b614e208111156117ca576040805162461bcd60e51b815260206004820152601c60248201527f5f7072656d69756d50657263656e74206973206f766572203230302500000000604482015290519081900360640190fd5b601c55565b6020546001600160a01b031681565b6001546001600160a01b031633146118275760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b612710811015801561183b5750614e208111155b6118765760405162461bcd60e51b81526004018080602001828103825260298152602001806145b76029913960400191505060405180910390fd5b601d55565b6001546001600160a01b031633146118c45760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6006546001600160a01b038481169116141561190f576040805162461bcd60e51b815260206004820152600560248201526439ba37b6b160d91b604482015290519081900360640190fd5b6007546001600160a01b038481169116141561195b576040805162461bcd60e51b81526020600480830191909152602482015263189bdb9960e21b604482015290519081900360640190fd5b6008546001600160a01b03848116911614156119a6576040805162461bcd60e51b8152602060048201526005602482015264736861726560d81b604482015290519081900360640190fd5b6119ba6001600160a01b0384168284613b3f565b505050565b6119c7613b01565b15611a035760405162461bcd60e51b81526004018080602001828103825260268152602001806146b66026913960400191505060405180910390fd5b611a0b613b20565b15611a475760405162461bcd60e51b81526004018080602001828103825260268152602001806146b66026913960400191505060405180910390fd5b600254421015611a9a576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611ade57600080fd5b505afa158015611af2573d6000803e3d6000fd5b505050506040513d6020811015611b0857600080fd5b50516001600160a01b0316148015611b9657506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611b5f57600080fd5b505afa158015611b73573d6000803e3d6000fd5b505050506040513d6020811015611b8957600080fd5b50516001600160a01b0316145b8015611c1857506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611be157600080fd5b505afa158015611bf5573d6000803e3d6000fd5b505050506040513d6020811015611c0b57600080fd5b50516001600160a01b0316145b8015611c9a57506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611c6357600080fd5b505afa158015611c77573d6000803e3d6000fd5b505050506040513d6020811015611c8d57600080fd5b50516001600160a01b0316145b611ceb576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b60008211611d2a5760405162461bcd60e51b81526004018080602001828103825260308152602001806145876030913960400191505060405180910390fd5b6000611d346137cc565b9050818114611d8a576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a2053544f4d42207072696365206d6f7665640000000000604482015290519081900360640190fd5b600b548110611dca5760405162461bcd60e51b81526004018080602001828103825260338152602001806144bc6033913960400191505060405180910390fd5b600454831115611e0b5760405162461bcd60e51b815260040180806020018281038252602a815260200180614712602a913960400191505060405180910390fd5b6000611e15610d3f565b905060008111611e6c576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e6420726174650000000000604482015290519081900360640190fd5b6000611e84670de0b6b3a7640000610b0587856139ad565b90506000611e906115bf565b90506000611f1883600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611ee657600080fd5b505afa158015611efa573d6000803e3d6000fd5b505050506040513d6020811015611f1057600080fd5b505190613aa7565b9050611f35612710610b05601454856139ad90919063ffffffff16565b811115611f7f576040805162461bcd60e51b81526020600482015260136024820152726f766572206d6178206465627420726174696f60681b604482015290519081900360640190fd5b6006546040805163079cc67960e41b8152336004820152602481018a905290516001600160a01b03909216916379cc67909160448082019260009290919082900301818387803b158015611fd257600080fd5b505af1158015611fe6573d6000803e3d6000fd5b5050600754604080516340c10f1960e01b81523360048201526024810188905290516001600160a01b0390921693506340c10f1992506044808201926020929091908290030181600087803b15801561203e57600080fd5b505af1158015612052573d6000803e3d6000fd5b505050506040513d602081101561206857600080fd5b50506004546120779088613a4f565b600455612082613b91565b6040805188815260208101859052815133927f73017f1b70789e2e66759eeb3c7ec11f59e6eedb55d921cfaec5410dd42a4799928290030190a25050436000908152602081815260408083203284529091528082208054600160ff19918216811790925533845291909220805490911690911790555050505050565b601f5481565b6001546001600160a01b031681565b6001546001600160a01b0316331461215c5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6103e8811015801561217057506127108111155b6121b0576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601455565b600d5490565b600d5481565b6121c9613b01565b156122055760405162461bcd60e51b81526004018080602001828103825260268152602001806146b66026913960400191505060405180910390fd5b61220d613b20565b156122495760405162461bcd60e51b81526004018080602001828103825260268152602001806146b66026913960400191505060405180910390fd5b60025442101561229c576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6122a46134fc565b4210156122f8576040805162461bcd60e51b815260206004820152601860248201527f54726561737572793a206e6f74206f70656e6564207965740000000000000000604482015290519081900360640190fd5b6006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561233c57600080fd5b505afa158015612350573d6000803e3d6000fd5b505050506040513d602081101561236657600080fd5b50516001600160a01b03161480156123f457506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b1580156123bd57600080fd5b505afa1580156123d1573d6000803e3d6000fd5b505050506040513d60208110156123e757600080fd5b50516001600160a01b0316145b801561247657506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561243f57600080fd5b505afa158015612453573d6000803e3d6000fd5b505050506040513d602081101561246957600080fd5b50516001600160a01b0316145b80156124f857506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b1580156124c157600080fd5b505afa1580156124d5573d6000803e3d6000fd5b505050506040513d60208110156124eb57600080fd5b50516001600160a01b0316145b612549576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b612551613b91565b6125596137cc565b601755600d546000906125749061256e6115bf565b90613a4f565b905060155460035410156125aa576125a56125a0612710610b05601654856139ad90919063ffffffff16565b613bf5565b6127f7565b600c5460175411156127f757600754604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b1580156125fb57600080fd5b505afa15801561260f573d6000803e3d6000fd5b505050506040513d602081101561262557600080fd5b5051600b5460175491925060009161263c91613a4f565b90506000806000612656655af3107a4000610dae88613f35565b905080841115612664578093505b61267f612710610b05601154886139ad90919063ffffffff16565b600d54106126a45761269d670de0b6b3a7640000610b0588876139ad565b9150612710565b60006126bc670de0b6b3a7640000610b0589886139ad565b90506126d9612710610b05601254846139ad90919063ffffffff16565b92506126e58184613a4f565b601d549094501561270e5761270b612710610b05601d54876139ad90919063ffffffff16565b93505b505b811561271f5761271f82613bf5565b82156127f157600d546127329084613aa7565b600d55600654604080516340c10f1960e01b81523060048201526024810186905290516001600160a01b03909216916340c10f19916044808201926020929091908290030181600087803b15801561278957600080fd5b505af115801561279d573d6000803e3d6000fd5b505050506040513d60208110156127b357600080fd5b5050604080514281526020810185905281517ff705142bf09f04297640495ddf7c59b7fd6f51894c5aea9602d631cf05f0efc2929181900390910190a15b50505050505b50600354612806906001613aa7565b600355600c546128146137cc565b116128325761282d612710610b05601354610dae6115bf565b612835565b60005b600455436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055565b6009546001600160a01b031681565b6008546001600160a01b031681565b6007546001600160a01b031681565b6000806128ab6137cc565b9050600c54811115610bd057600654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561290257600080fd5b505afa158015612916573d6000803e3d6000fd5b505050506040513d602081101561292c57600080fd5b50519050600061293a610dea565b90508015610de4576116ff81610b0584670de0b6b3a76400006139ad565b60025481565b60115481565b6005818154811061297157fe5b6000918252602090912001546001600160a01b0316905081565b60165481565b6001546001600160a01b031633146129da5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6101f481101580156129ee57506127108111155b612a2e576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601155565b601e546001600160a01b031681565b6001546001600160a01b03163314612a8b5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600580546001810182556000919091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319166001600160a01b0392909216919091179055565b60035481565b6001546001600160a01b03163314612b2c5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6078821115612b82576040805162461bcd60e51b815260206004820152601e60248201527f5f626f6f74737472617045706f6368733a206f7574206f662072616e67650000604482015290519081900360640190fd5b60648110158015612b9557506103e88111155b612bd05760405162461bcd60e51b815260040180806020018281038252602e81526020018061473c602e913960400191505060405180910390fd5b601591909155601655565b6001546000906001600160a01b03163314612c275760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b60098360ff1610612c695760405162461bcd60e51b81526004018080602001828103825260298152602001806146086029913960400191505060405180910390fd5b60ff831615612c9b57600e6001840360ff1681548110612c8557fe5b90600052602060002001548211612c9b57600080fd5b60088360ff161015612cd057600e8360010160ff1681548110612cba57fe5b90600052602060002001548210612cd057600080fd5b81600e8460ff1681548110612ce157fe5b6000918252602090912001555060015b92915050565b6001546001600160a01b03163314612d405760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600154600160a01b900460ff1615612dc1576040805162461bcd60e51b815260206004820152601d60248201527f54726561737572793a20616c726561647920696e697469616c697a6564000000604482015290519081900360640190fd5b600680546001600160a01b03199081166001600160a01b0389811691909117909255600780548216888416179055600880548216878416179055600a80548216868416179055600980549091169184169190911790556002819055670de0b6b3a7640000600b819055612e3c90606490610b059060656139ad565b600c556040805161012081018252600081526969e10de76676d0800000602082015269d3c21bcecceda1000000918101919091526a013da329b633647180000060608201526a01a784379d99db4200000060808201526a0422ca8b0a00a42500000060a08201526a084595161401484a00000060c08201526a108b2a2c2802909400000060e08201526a295be96e64066972000000610100820152612ee590600e90600961440f565b5060408051610120810182526101c28152610190602082015261015e9181019190915261012c606082015260fa608082015260c860a0820152609660c0820152607d60e08201526064610100820152612f4290600f906009614465565b50610190601055612710601155610dac601281905561012c601355601455606e601b55611b58601c9081556015556101c2601655600654604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015612fc157600080fd5b505afa158015612fd5573d6000803e3d6000fd5b505050506040513d6020811015612feb57600080fd5b5051600d55600180546001600160a01b031960ff60a01b19909116600160a01b1716339081179091556040805143815290517f25ff68dd81b34665b5ba7e553ee5511bf6812e12adb4a7e2c0d9e26b3099ce799181900360200190a2505050505050565b6001546001600160a01b031633146130985760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b601855565b600e81815481106130aa57fe5b600091825260209091200154905081565b600a546001600160a01b031681565b600f81815481106130aa57fe5b6001546001600160a01b031633146131205760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b601955565b6001546001600160a01b0316331461316e5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b60095460408051631515d6bd60e21b81526001600160a01b038681166004830152602482018690528481166044830152915191909216916354575af491606480830192600092919082900301818387803b1580156131cb57600080fd5b505af11580156131df573d6000803e3d6000fd5b50505050505050565b600c5481565b6001546001600160a01b031633146132375760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6009546040805163b3ab15fb60e01b81526001600160a01b0384811660048301529151919092169163b3ab15fb91602480830192600092919082900301818387803b158015610aa557600080fd5b6001546001600160a01b031633146132ce5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031633146133395760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b61546081565b60185481565b6001546001600160a01b031633146133b05760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6001600160a01b0384166133f4576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b610bb883111561343a576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b6001600160a01b03821661347e576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b6103e88111156134c4576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601e80546001600160a01b03199081166001600160a01b0396871617909155601f939093556020805490931691909316179055602155565b60006135216135186154606003546139ad90919063ffffffff16565b60025490613aa7565b905090565b601c5481565b601b5481565b6001546001600160a01b0316331461357b5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6064811015801561358e57506105dc8111155b6135ce576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601355565b6001546000906001600160a01b0316331461361f5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b60098360ff16106136615760405162461bcd60e51b81526004018080602001828103825260298152602001806146086029913960400191505060405180910390fd5b600a821015801561367457506103e88211155b6136bc576040805162461bcd60e51b81526020600482015260146024820152735f76616c75653a206f7574206f662072616e676560601b604482015290519081900360640190fd5b81600f8460ff1681548110612ce157fe5b60105481565b60145481565b600a5460065460408051630d01142560e31b81526001600160a01b039283166004820152670de0b6b3a7640000602482015290516000939290921691636808a12891604480820192602092909190829003018186803b15801561373b57600080fd5b505afa92505050801561376057506040513d602081101561375b57600080fd5b505160015b61379b5760405162461bcd60e51b81526004018080602001828103825260378152602001806146316037913960400191505060405180910390fd5b6137be71ffffffffffffffffffffffffffffffffffff821664e8d4a510006139ad565b915050611705565b60135481565b600a5460065460408051633ddac95360e01b81526001600160a01b039283166004820152670de0b6b3a7640000602482015290516000939290921691633ddac95391604480820192602092909190829003018186803b15801561373b57600080fd5b60155481565b6001546001600160a01b0316331461387d5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600b5481101580156138a957506138a56064610b056078600b546139ad90919063ffffffff16565b8111155b6138e9576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b600c55565b6001546001600160a01b031633146139375760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b60095460408051632ffaaa0960e01b8152600481018590526024810184905290516001600160a01b0390921691632ffaaa099160448082019260009290919082900301818387803b15801561398b57600080fd5b505af115801561399f573d6000803e3d6000fd5b505050505050565b60045481565b6000826139bc57506000612cf1565b828202828482816139c957fe5b0414613a065760405162461bcd60e51b81526004018080602001828103825260218152602001806145666021913960400191505060405180910390fd5b9392505050565b6000613a0683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f92565b6000613a0683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614034565b6000818310613aa05781613a06565b5090919050565b600082820183811015613a06576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b4360009081526020818152604080832032845290915290205460ff1690565b4360009081526020818152604080832033845290915290205460ff1690565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526119ba90849061408e565b600a60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613be157600080fd5b505af1925050508015613bf2575060015b50565b600654604080516340c10f1960e01b81523060048201526024810184905290516001600160a01b03909216916340c10f19916044808201926020929091908290030181600087803b158015613c4957600080fd5b505af1158015613c5d573d6000803e3d6000fd5b505050506040513d6020811015613c7357600080fd5b5050601f5460009015613d5e57613c9b612710610b05601f54856139ad90919063ffffffff16565b600654601e546040805163a9059cbb60e01b81526001600160a01b03928316600482015260248101859052905193945091169163a9059cbb916044808201926020929091908290030181600087803b158015613cf657600080fd5b505af1158015613d0a573d6000803e3d6000fd5b505050506040513d6020811015613d2057600080fd5b5050604080514281526020810183905281517fcb3f34aaa3445b461e6da5492dc89e5c257a59fa598131f3b6bbc97a3638e409929181900390910190a15b60215460009015613e4457613d84612710610b05602154866139ad90919063ffffffff16565b600654602080546040805163a9059cbb60e01b81526001600160a01b03928316600482015260248101869052905194955092169263a9059cbb9260448082019392918290030181600087803b158015613ddc57600080fd5b505af1158015613df0573d6000803e3d6000fd5b505050506040513d6020811015613e0657600080fd5b5050604080514281526020810183905281517fdc8b715b18523e58b7fd0da53259dfa91efd91df4a854d94b136e3333a3b9395929181900390910190a15b613e528161256e8585613a4f565b600954600654919450613e73916001600160a01b039081169116600061413f565b600954600654613e90916001600160a01b0391821691168561413f565b600954604080516397ffe1d760e01b81526004810186905290516001600160a01b03909216916397ffe1d79160248082019260009290919082900301818387803b158015613edd57600080fd5b505af1158015613ef1573d6000803e3d6000fd5b5050604080514281526020810187905281517f03ca7276ab7799bf73fb79d27ff0610cd7049574f2508ef8445162833d439aea9450908190039091019150a1505050565b600060085b600e8160ff1681548110613f4a57fe5b90600052602060002001548310613f7f57600f8160ff1681548110613f6b57fe5b600091825260209091200154601055613f88565b60001901613f3a565b5050601054919050565b6000818361401e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613fe3578181015183820152602001613fcb565b50505050905090810190601f1680156140105780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161402a57fe5b0495945050505050565b600081848411156140865760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613fe3578181015183820152602001613fcb565b505050900390565b60606140e3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166142529092919063ffffffff16565b8051909150156119ba5780806020019051602081101561410257600080fd5b50516119ba5760405162461bcd60e51b815260040180806020018281038252602a81526020018061468c602a913960400191505060405180910390fd5b8015806141c5575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561419757600080fd5b505afa1580156141ab573d6000803e3d6000fd5b505050506040513d60208110156141c157600080fd5b5051155b6142005760405162461bcd60e51b81526004018080602001828103825260368152602001806146dc6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526119ba90849061408e565b60606142618484600085614269565b949350505050565b6060614274856143d6565b6142c5576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106143045780518252601f1990920191602091820191016142e5565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614366576040519150601f19603f3d011682016040523d82523d6000602084013e61436b565b606091505b5091509150811561437f5791506142619050565b80511561438f5780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315613fe3578181015183820152602001613fcb565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590614261575050151592915050565b828054828255906000526020600020908101928215614459579160200282015b8281111561445957825182906affffffffffffffffffffff1690559160200191906001019061442f565b50610bd09291506144a6565b828054828255906000526020600020908101928215614459579160200282015b82811115614459578251829061ffff16905591602001919060010190614485565b5b80821115610bd057600081556001016144a756fe54726561737572793a2073746f6d625072696365206e6f7420656c696769626c6520666f7220626f6e6420707572636861736554726561737572793a2063616e6e6f742072656465656d20626f6e64732077697468207a65726f20616d6f756e745f7072656d69756d5468726573686f6c6420697320686967686572207468616e20312e3554726561737572793a20747265617375727920686173206e6f206d6f726520627564676574536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7754726561737572793a2063616e6e6f7420707572636861736520626f6e64732077697468207a65726f20616d6f756e745f6d696e74696e67466163746f72466f72506179696e67446562743a206f7574206f662072616e67655f6d6178537570706c79457870616e73696f6e50657263656e743a206f7574206f662072616e6765496e6465782068617320746f206265206c6f776572207468616e20636f756e74206f6620746965727354726561737572793a206661696c656420746f20636f6e73756c742053544f4d422070726963652066726f6d20746865206f7261636c6554726561737572793a2063616c6c6572206973206e6f7420746865206f70657261746f725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564436f6e747261637447756172643a206f6e6520626c6f636b2c206f6e652066756e6374696f6e5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636554726561737572793a206e6f7420656e6f75676820626f6e64206c65667420746f2070757263686173655f626f6f747374726170537570706c79457870616e73696f6e50657263656e743a206f7574206f662072616e67655f7072656d69756d5468726573686f6c6420657863656564732073746f6d6250726963654365696c696e67a26469706673582212206418196f40011fa87f78a074b98c451282f74341bd39fa48e202529660854fd864736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106104335760003560e01c806382cad83811610236578063b3ab15fb1161013b578063d4b14944116100c3578063ea41cd1911610087578063ea41cd19146109b7578063f14698de146109bf578063f50f8681146109c7578063f8cd4d72146109e4578063fcb6f00814610a0757610433565b8063d4b1494414610971578063d98f249514610997578063da3ed4191461099f578063dc914762146109a7578063e90b2454146109af57610433565b8063bcc81f191161010a578063bcc81f1914610902578063c5967c261461093c578063c8412d0214610944578063c8f987f31461094c578063cecce38e1461095457610433565b8063b3ab15fb146108a6578063b3ffc777146108cc578063b4d1d795146108f2578063b8a878f9146108fa57610433565b806395b6ef0c116101be578063a0487eea1161018d578063a0487eea14610808578063a204452b14610825578063a3ec30fe14610842578063ad41e9c914610878578063b06ce14a1461088057610433565b806395b6ef0c1461077a57806398b762a1146107c657806399820025146107e35780639cd3cbdc1461080057610433565b80638ee9ab0c116102055780638ee9ab0c146106dd578063900cf0cf1461070357806391bbfed51461070b578063940e60641461072e578063953287c31461075457610433565b806382cad83814610693578063874106cc146106b05780638c664db6146106b85780638d934f74146106d557610433565b80634013a08e1161033c57806359bf5d39116102c45780636372dd34116102935780636372dd341461066b578063705175161461067357806372c054f91461067b57806378e979251461068357806381d11eaf1461068b57610433565b806359bf5d391461064b5780635a0fc79c146106535780635b7561791461065b5780635e02c51e1461066357610433565b806354575af41161030b57806354575af4146105c557806354f04a11146105fb57806355ebdeef1461061e578063570ca73514610626578063591663e11461062e57610433565b80634013a08e1461057b57806340af7ba5146105835780634390d2a8146105a0578063499f3f19146105a857610433565b8063158ef93e116103bf5780632e9c7b651161038e5780632e9c7b65146105535780633117cf331461055b578063392e53cd146105635780633a80e4a01461056b5780633ed2bef71461057357610433565b8063158ef93e1461050357806322f832cd1461051f57806329ef1919146105275780632cf7521d1461052f57610433565b80630b5bcec7116104065780630b5bcec7146104965780630cf60175146104b35780630db7eb0b146104bb578063118ebbf9146104c3578063154ec2db146104e657610433565b806301a937831461043857806303be7e7614610457578063049e9d791461047157806304e5c7b114610479575b600080fd5b6104556004803603602081101561044e57600080fd5b5035610a0f565b005b61045f610ac0565b60408051918252519081900360200190f35b61045f610ac6565b6104556004803603602081101561048f57600080fd5b5035610bd4565b610455600480360360208110156104ac57600080fd5b5035610ca3565b61045f610d3f565b61045f610dea565b610455600480360360408110156104d957600080fd5b5080359060200135610e8c565b610455600480360360208110156104fc57600080fd5b50356114e9565b61050b61158e565b604080519115158252519081900360200190f35b61045f61159e565b61045f6115a4565b6105376115aa565b604080516001600160a01b039092168252519081900360200190f35b61045f6115b9565b61045f6115bf565b61050b611708565b61045f611718565b61045f61171e565b61045f611724565b6104556004803603602081101561059957600080fd5b503561172a565b6105376117cf565b610455600480360360208110156105be57600080fd5b50356117de565b610455600480360360608110156105db57600080fd5b506001600160a01b0381358116916020810135916040909101351661187b565b6104556004803603604081101561061157600080fd5b50803590602001356119bf565b61045f6120fe565b610537612104565b6104556004803603602081101561064457600080fd5b5035612113565b61045f6121b5565b61045f6121bb565b6104556121c1565b610537612873565b610537612882565b610537612891565b61045f6128a0565b61045f612958565b61045f61295e565b610537600480360360208110156106a957600080fd5b5035612964565b61045f61298b565b610455600480360360208110156106ce57600080fd5b5035612991565b610537612a33565b610455600480360360208110156106f357600080fd5b50356001600160a01b0316612a42565b61045f612add565b6104556004803603604081101561072157600080fd5b5080359060200135612ae3565b61050b6004803603604081101561074457600080fd5b5060ff8135169060200135612bdb565b6104556004803603602081101561076a57600080fd5b50356001600160a01b0316612cf7565b610455600480360360c081101561079057600080fd5b506001600160a01b0381358116916020810135821691604082013581169160608101358216916080820135169060a00135612d62565b610455600480360360208110156107dc57600080fd5b503561304f565b61045f600480360360208110156107f957600080fd5b503561309d565b6105376130bb565b61045f6004803603602081101561081e57600080fd5b50356130ca565b6104556004803603602081101561083b57600080fd5b50356130d7565b6104556004803603606081101561085857600080fd5b506001600160a01b03813581169160208101359160409091013516613125565b61045f6131e8565b6104556004803603602081101561089657600080fd5b50356001600160a01b03166131ee565b610455600480360360208110156108bc57600080fd5b50356001600160a01b0316613285565b610455600480360360208110156108e257600080fd5b50356001600160a01b03166132f0565b61045f61335b565b61045f613361565b6104556004803603608081101561091857600080fd5b506001600160a01b0381358116916020810135916040820135169060600135613367565b61045f6134fc565b61045f613526565b61045f61352c565b6104556004803603602081101561096a57600080fd5b5035613532565b61050b6004803603604081101561098757600080fd5b5060ff81351690602001356135d3565b61045f6136cd565b61045f6136d3565b61045f6136d9565b61045f6137c6565b61045f6137cc565b61045f61382e565b610455600480360360208110156109dd57600080fd5b5035613834565b610455600480360360408110156109fa57600080fd5b50803590602001356138ee565b61045f6139a7565b6001546001600160a01b03163314610a585760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600954604080516397ffe1d760e01b81526004810184905290516001600160a01b03909216916397ffe1d79160248082019260009290919082900301818387803b158015610aa557600080fd5b505af1158015610ab9573d6000803e3d6000fd5b5050505050565b60215481565b600080610ad16137cc565b9050600b548111610bd0576000610ae66115bf565b90506000610b0b612710610b05601454856139ad90919063ffffffff16565b90613a0d565b90506000600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b5d57600080fd5b505afa158015610b71573d6000803e3d6000fd5b505050506040513d6020811015610b8757600080fd5b5051905080821115610bcc576000610b9f8383613a4f565b90506000610bb9670de0b6b3a7640000610b0584896139ad565b9050610bc760045482613a91565b965050505b5050505b5090565b6001546001600160a01b03163314610c1d5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600c54811015610c5e5760405162461bcd60e51b815260040180806020018281038252602b81526020018061476a602b913960400191505060405180910390fd5b6096811115610c9e5760405162461bcd60e51b815260040180806020018281038252602481526020018061451d6024913960400191505060405180910390fd5b601b55565b6001546001600160a01b03163314610cec5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600a8110158015610cff57506103e88111155b610d3a5760405162461bcd60e51b81526004018080602001828103825260288152602001806145e06028913960400191505060405180910390fd5b601055565b600080610d4a6137cc565b9050600b548111610bd057601a54610d6657600b549150610bd0565b6000610d8982610b05670de0b6b3a7640000600b546139ad90919063ffffffff16565b90506000610db4612710610b05601a54610dae600b5487613a4f90919063ffffffff16565b906139ad565b600b54909150610dc49082613aa7565b93506000601854118015610dd9575060185484115b15610de45760185493505b50505090565b600080610df56137cc565b9050600c54811115610bd0576000610e1f6064610b05601b54600b546139ad90919063ffffffff16565b9050808210610e81576000610e4b612710610b05601c54610dae600b5488613a4f90919063ffffffff16565b600b54909150610e5b9082613aa7565b93506000601954118015610e70575060195484115b15610e7b5760195493505b50610e87565b600b5492505b505090565b610e94613b01565b15610ed05760405162461bcd60e51b81526004018080602001828103825260268152602001806146b66026913960400191505060405180910390fd5b610ed8613b20565b15610f145760405162461bcd60e51b81526004018080602001828103825260268152602001806146b66026913960400191505060405180910390fd5b600254421015610f67576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610fab57600080fd5b505afa158015610fbf573d6000803e3d6000fd5b505050506040513d6020811015610fd557600080fd5b50516001600160a01b031614801561106357506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561102c57600080fd5b505afa158015611040573d6000803e3d6000fd5b505050506040513d602081101561105657600080fd5b50516001600160a01b0316145b80156110e557506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b1580156110ae57600080fd5b505afa1580156110c2573d6000803e3d6000fd5b505050506040513d60208110156110d857600080fd5b50516001600160a01b0316145b801561116757506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561113057600080fd5b505afa158015611144573d6000803e3d6000fd5b505050506040513d602081101561115a57600080fd5b50516001600160a01b0316145b6111b8576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b600082116111f75760405162461bcd60e51b815260040180806020018281038252602e8152602001806144ef602e913960400191505060405180910390fd5b60006112016137cc565b9050818114611257576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a2053544f4d42207072696365206d6f7665640000000000604482015290519081900360640190fd5b600c5481116112975760405162461bcd60e51b81526004018080602001828103825260338152602001806144bc6033913960400191505060405180910390fd5b60006112a1610dea565b9050600081116112f8576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e6420726174650000000000604482015290519081900360640190fd5b6000611310670de0b6b3a7640000610b0587856139ad565b600654604080516370a0823160e01b8152306004820152905192935083926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561136057600080fd5b505afa158015611374573d6000803e3d6000fd5b505050506040513d602081101561138a57600080fd5b505110156113c95760405162461bcd60e51b81526004018080602001828103825260258152602001806145416025913960400191505060405180910390fd5b6113e16113d8600d5483613a91565b600d5490613a4f565b600d556007546040805163079cc67960e41b81523360048201526024810188905290516001600160a01b03909216916379cc67909160448082019260009290919082900301818387803b15801561143757600080fd5b505af115801561144b573d6000803e3d6000fd5b505060065461146792506001600160a01b031690503383613b3f565b61146f613b91565b6040805182815260208101879052815133927f51e0d16595cabc591e64da08e45bb223577e5b9a39cd947b4ddc3472b2dd8878928290030190a25050436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055505050565b6001546001600160a01b031633146115325760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b614e20811115611589576040805162461bcd60e51b815260206004820152601d60248201527f5f646973636f756e7450657263656e74206973206f7665722032303025000000604482015290519081900360640190fd5b601a55565b600154600160a01b900460ff1681565b60125481565b601a5481565b6006546001600160a01b031681565b60195481565b600654604080516318160ddd60e01b815290516000926001600160a01b031691839183916318160ddd916004808301926020929190829003018186803b15801561160857600080fd5b505afa15801561161c573d6000803e3d6000fd5b505050506040513d602081101561163257600080fd5b505190506000805b60055460ff821610156116f4576116ea846001600160a01b03166370a0823160058460ff168154811061166957fe5b60009182526020918290200154604080516001600160e01b031960e086901b1681526001600160a01b0390921660048301525160248083019392829003018186803b1580156116b757600080fd5b505afa1580156116cb573d6000803e3d6000fd5b505050506040513d60208110156116e157600080fd5b50518390613aa7565b915060010161163a565b506116ff8282613a4f565b93505050505b90565b600154600160a01b900460ff1690565b60175481565b600b5481565b601d5481565b6001546001600160a01b031633146117735760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b614e208111156117ca576040805162461bcd60e51b815260206004820152601c60248201527f5f7072656d69756d50657263656e74206973206f766572203230302500000000604482015290519081900360640190fd5b601c55565b6020546001600160a01b031681565b6001546001600160a01b031633146118275760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b612710811015801561183b5750614e208111155b6118765760405162461bcd60e51b81526004018080602001828103825260298152602001806145b76029913960400191505060405180910390fd5b601d55565b6001546001600160a01b031633146118c45760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6006546001600160a01b038481169116141561190f576040805162461bcd60e51b815260206004820152600560248201526439ba37b6b160d91b604482015290519081900360640190fd5b6007546001600160a01b038481169116141561195b576040805162461bcd60e51b81526020600480830191909152602482015263189bdb9960e21b604482015290519081900360640190fd5b6008546001600160a01b03848116911614156119a6576040805162461bcd60e51b8152602060048201526005602482015264736861726560d81b604482015290519081900360640190fd5b6119ba6001600160a01b0384168284613b3f565b505050565b6119c7613b01565b15611a035760405162461bcd60e51b81526004018080602001828103825260268152602001806146b66026913960400191505060405180910390fd5b611a0b613b20565b15611a475760405162461bcd60e51b81526004018080602001828103825260268152602001806146b66026913960400191505060405180910390fd5b600254421015611a9a576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611ade57600080fd5b505afa158015611af2573d6000803e3d6000fd5b505050506040513d6020811015611b0857600080fd5b50516001600160a01b0316148015611b9657506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611b5f57600080fd5b505afa158015611b73573d6000803e3d6000fd5b505050506040513d6020811015611b8957600080fd5b50516001600160a01b0316145b8015611c1857506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611be157600080fd5b505afa158015611bf5573d6000803e3d6000fd5b505050506040513d6020811015611c0b57600080fd5b50516001600160a01b0316145b8015611c9a57506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611c6357600080fd5b505afa158015611c77573d6000803e3d6000fd5b505050506040513d6020811015611c8d57600080fd5b50516001600160a01b0316145b611ceb576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b60008211611d2a5760405162461bcd60e51b81526004018080602001828103825260308152602001806145876030913960400191505060405180910390fd5b6000611d346137cc565b9050818114611d8a576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a2053544f4d42207072696365206d6f7665640000000000604482015290519081900360640190fd5b600b548110611dca5760405162461bcd60e51b81526004018080602001828103825260338152602001806144bc6033913960400191505060405180910390fd5b600454831115611e0b5760405162461bcd60e51b815260040180806020018281038252602a815260200180614712602a913960400191505060405180910390fd5b6000611e15610d3f565b905060008111611e6c576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e6420726174650000000000604482015290519081900360640190fd5b6000611e84670de0b6b3a7640000610b0587856139ad565b90506000611e906115bf565b90506000611f1883600760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611ee657600080fd5b505afa158015611efa573d6000803e3d6000fd5b505050506040513d6020811015611f1057600080fd5b505190613aa7565b9050611f35612710610b05601454856139ad90919063ffffffff16565b811115611f7f576040805162461bcd60e51b81526020600482015260136024820152726f766572206d6178206465627420726174696f60681b604482015290519081900360640190fd5b6006546040805163079cc67960e41b8152336004820152602481018a905290516001600160a01b03909216916379cc67909160448082019260009290919082900301818387803b158015611fd257600080fd5b505af1158015611fe6573d6000803e3d6000fd5b5050600754604080516340c10f1960e01b81523360048201526024810188905290516001600160a01b0390921693506340c10f1992506044808201926020929091908290030181600087803b15801561203e57600080fd5b505af1158015612052573d6000803e3d6000fd5b505050506040513d602081101561206857600080fd5b50506004546120779088613a4f565b600455612082613b91565b6040805188815260208101859052815133927f73017f1b70789e2e66759eeb3c7ec11f59e6eedb55d921cfaec5410dd42a4799928290030190a25050436000908152602081815260408083203284529091528082208054600160ff19918216811790925533845291909220805490911690911790555050505050565b601f5481565b6001546001600160a01b031681565b6001546001600160a01b0316331461215c5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6103e8811015801561217057506127108111155b6121b0576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601455565b600d5490565b600d5481565b6121c9613b01565b156122055760405162461bcd60e51b81526004018080602001828103825260268152602001806146b66026913960400191505060405180910390fd5b61220d613b20565b156122495760405162461bcd60e51b81526004018080602001828103825260268152602001806146b66026913960400191505060405180910390fd5b60025442101561229c576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6122a46134fc565b4210156122f8576040805162461bcd60e51b815260206004820152601860248201527f54726561737572793a206e6f74206f70656e6564207965740000000000000000604482015290519081900360640190fd5b6006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561233c57600080fd5b505afa158015612350573d6000803e3d6000fd5b505050506040513d602081101561236657600080fd5b50516001600160a01b03161480156123f457506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b1580156123bd57600080fd5b505afa1580156123d1573d6000803e3d6000fd5b505050506040513d60208110156123e757600080fd5b50516001600160a01b0316145b801561247657506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561243f57600080fd5b505afa158015612453573d6000803e3d6000fd5b505050506040513d602081101561246957600080fd5b50516001600160a01b0316145b80156124f857506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b1580156124c157600080fd5b505afa1580156124d5573d6000803e3d6000fd5b505050506040513d60208110156124eb57600080fd5b50516001600160a01b0316145b612549576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b612551613b91565b6125596137cc565b601755600d546000906125749061256e6115bf565b90613a4f565b905060155460035410156125aa576125a56125a0612710610b05601654856139ad90919063ffffffff16565b613bf5565b6127f7565b600c5460175411156127f757600754604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b1580156125fb57600080fd5b505afa15801561260f573d6000803e3d6000fd5b505050506040513d602081101561262557600080fd5b5051600b5460175491925060009161263c91613a4f565b90506000806000612656655af3107a4000610dae88613f35565b905080841115612664578093505b61267f612710610b05601154886139ad90919063ffffffff16565b600d54106126a45761269d670de0b6b3a7640000610b0588876139ad565b9150612710565b60006126bc670de0b6b3a7640000610b0589886139ad565b90506126d9612710610b05601254846139ad90919063ffffffff16565b92506126e58184613a4f565b601d549094501561270e5761270b612710610b05601d54876139ad90919063ffffffff16565b93505b505b811561271f5761271f82613bf5565b82156127f157600d546127329084613aa7565b600d55600654604080516340c10f1960e01b81523060048201526024810186905290516001600160a01b03909216916340c10f19916044808201926020929091908290030181600087803b15801561278957600080fd5b505af115801561279d573d6000803e3d6000fd5b505050506040513d60208110156127b357600080fd5b5050604080514281526020810185905281517ff705142bf09f04297640495ddf7c59b7fd6f51894c5aea9602d631cf05f0efc2929181900390910190a15b50505050505b50600354612806906001613aa7565b600355600c546128146137cc565b116128325761282d612710610b05601354610dae6115bf565b612835565b60005b600455436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055565b6009546001600160a01b031681565b6008546001600160a01b031681565b6007546001600160a01b031681565b6000806128ab6137cc565b9050600c54811115610bd057600654604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561290257600080fd5b505afa158015612916573d6000803e3d6000fd5b505050506040513d602081101561292c57600080fd5b50519050600061293a610dea565b90508015610de4576116ff81610b0584670de0b6b3a76400006139ad565b60025481565b60115481565b6005818154811061297157fe5b6000918252602090912001546001600160a01b0316905081565b60165481565b6001546001600160a01b031633146129da5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6101f481101580156129ee57506127108111155b612a2e576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601155565b601e546001600160a01b031681565b6001546001600160a01b03163314612a8b5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600580546001810182556000919091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319166001600160a01b0392909216919091179055565b60035481565b6001546001600160a01b03163314612b2c5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6078821115612b82576040805162461bcd60e51b815260206004820152601e60248201527f5f626f6f74737472617045706f6368733a206f7574206f662072616e67650000604482015290519081900360640190fd5b60648110158015612b9557506103e88111155b612bd05760405162461bcd60e51b815260040180806020018281038252602e81526020018061473c602e913960400191505060405180910390fd5b601591909155601655565b6001546000906001600160a01b03163314612c275760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b60098360ff1610612c695760405162461bcd60e51b81526004018080602001828103825260298152602001806146086029913960400191505060405180910390fd5b60ff831615612c9b57600e6001840360ff1681548110612c8557fe5b90600052602060002001548211612c9b57600080fd5b60088360ff161015612cd057600e8360010160ff1681548110612cba57fe5b90600052602060002001548210612cd057600080fd5b81600e8460ff1681548110612ce157fe5b6000918252602090912001555060015b92915050565b6001546001600160a01b03163314612d405760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600154600160a01b900460ff1615612dc1576040805162461bcd60e51b815260206004820152601d60248201527f54726561737572793a20616c726561647920696e697469616c697a6564000000604482015290519081900360640190fd5b600680546001600160a01b03199081166001600160a01b0389811691909117909255600780548216888416179055600880548216878416179055600a80548216868416179055600980549091169184169190911790556002819055670de0b6b3a7640000600b819055612e3c90606490610b059060656139ad565b600c556040805161012081018252600081526969e10de76676d0800000602082015269d3c21bcecceda1000000918101919091526a013da329b633647180000060608201526a01a784379d99db4200000060808201526a0422ca8b0a00a42500000060a08201526a084595161401484a00000060c08201526a108b2a2c2802909400000060e08201526a295be96e64066972000000610100820152612ee590600e90600961440f565b5060408051610120810182526101c28152610190602082015261015e9181019190915261012c606082015260fa608082015260c860a0820152609660c0820152607d60e08201526064610100820152612f4290600f906009614465565b50610190601055612710601155610dac601281905561012c601355601455606e601b55611b58601c9081556015556101c2601655600654604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015612fc157600080fd5b505afa158015612fd5573d6000803e3d6000fd5b505050506040513d6020811015612feb57600080fd5b5051600d55600180546001600160a01b031960ff60a01b19909116600160a01b1716339081179091556040805143815290517f25ff68dd81b34665b5ba7e553ee5511bf6812e12adb4a7e2c0d9e26b3099ce799181900360200190a2505050505050565b6001546001600160a01b031633146130985760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b601855565b600e81815481106130aa57fe5b600091825260209091200154905081565b600a546001600160a01b031681565b600f81815481106130aa57fe5b6001546001600160a01b031633146131205760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b601955565b6001546001600160a01b0316331461316e5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b60095460408051631515d6bd60e21b81526001600160a01b038681166004830152602482018690528481166044830152915191909216916354575af491606480830192600092919082900301818387803b1580156131cb57600080fd5b505af11580156131df573d6000803e3d6000fd5b50505050505050565b600c5481565b6001546001600160a01b031633146132375760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6009546040805163b3ab15fb60e01b81526001600160a01b0384811660048301529151919092169163b3ab15fb91602480830192600092919082900301818387803b158015610aa557600080fd5b6001546001600160a01b031633146132ce5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031633146133395760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b61546081565b60185481565b6001546001600160a01b031633146133b05760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6001600160a01b0384166133f4576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b610bb883111561343a576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b6001600160a01b03821661347e576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b6103e88111156134c4576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601e80546001600160a01b03199081166001600160a01b0396871617909155601f939093556020805490931691909316179055602155565b60006135216135186154606003546139ad90919063ffffffff16565b60025490613aa7565b905090565b601c5481565b601b5481565b6001546001600160a01b0316331461357b5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b6064811015801561358e57506105dc8111155b6135ce576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601355565b6001546000906001600160a01b0316331461361f5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b60098360ff16106136615760405162461bcd60e51b81526004018080602001828103825260298152602001806146086029913960400191505060405180910390fd5b600a821015801561367457506103e88211155b6136bc576040805162461bcd60e51b81526020600482015260146024820152735f76616c75653a206f7574206f662072616e676560601b604482015290519081900360640190fd5b81600f8460ff1681548110612ce157fe5b60105481565b60145481565b600a5460065460408051630d01142560e31b81526001600160a01b039283166004820152670de0b6b3a7640000602482015290516000939290921691636808a12891604480820192602092909190829003018186803b15801561373b57600080fd5b505afa92505050801561376057506040513d602081101561375b57600080fd5b505160015b61379b5760405162461bcd60e51b81526004018080602001828103825260378152602001806146316037913960400191505060405180910390fd5b6137be71ffffffffffffffffffffffffffffffffffff821664e8d4a510006139ad565b915050611705565b60135481565b600a5460065460408051633ddac95360e01b81526001600160a01b039283166004820152670de0b6b3a7640000602482015290516000939290921691633ddac95391604480820192602092909190829003018186803b15801561373b57600080fd5b60155481565b6001546001600160a01b0316331461387d5760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b600b5481101580156138a957506138a56064610b056078600b546139ad90919063ffffffff16565b8111155b6138e9576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b600c55565b6001546001600160a01b031633146139375760405162461bcd60e51b81526004018080602001828103825260248152602001806146686024913960400191505060405180910390fd5b60095460408051632ffaaa0960e01b8152600481018590526024810184905290516001600160a01b0390921691632ffaaa099160448082019260009290919082900301818387803b15801561398b57600080fd5b505af115801561399f573d6000803e3d6000fd5b505050505050565b60045481565b6000826139bc57506000612cf1565b828202828482816139c957fe5b0414613a065760405162461bcd60e51b81526004018080602001828103825260218152602001806145666021913960400191505060405180910390fd5b9392505050565b6000613a0683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f92565b6000613a0683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614034565b6000818310613aa05781613a06565b5090919050565b600082820183811015613a06576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b4360009081526020818152604080832032845290915290205460ff1690565b4360009081526020818152604080832033845290915290205460ff1690565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526119ba90849061408e565b600a60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613be157600080fd5b505af1925050508015613bf2575060015b50565b600654604080516340c10f1960e01b81523060048201526024810184905290516001600160a01b03909216916340c10f19916044808201926020929091908290030181600087803b158015613c4957600080fd5b505af1158015613c5d573d6000803e3d6000fd5b505050506040513d6020811015613c7357600080fd5b5050601f5460009015613d5e57613c9b612710610b05601f54856139ad90919063ffffffff16565b600654601e546040805163a9059cbb60e01b81526001600160a01b03928316600482015260248101859052905193945091169163a9059cbb916044808201926020929091908290030181600087803b158015613cf657600080fd5b505af1158015613d0a573d6000803e3d6000fd5b505050506040513d6020811015613d2057600080fd5b5050604080514281526020810183905281517fcb3f34aaa3445b461e6da5492dc89e5c257a59fa598131f3b6bbc97a3638e409929181900390910190a15b60215460009015613e4457613d84612710610b05602154866139ad90919063ffffffff16565b600654602080546040805163a9059cbb60e01b81526001600160a01b03928316600482015260248101869052905194955092169263a9059cbb9260448082019392918290030181600087803b158015613ddc57600080fd5b505af1158015613df0573d6000803e3d6000fd5b505050506040513d6020811015613e0657600080fd5b5050604080514281526020810183905281517fdc8b715b18523e58b7fd0da53259dfa91efd91df4a854d94b136e3333a3b9395929181900390910190a15b613e528161256e8585613a4f565b600954600654919450613e73916001600160a01b039081169116600061413f565b600954600654613e90916001600160a01b0391821691168561413f565b600954604080516397ffe1d760e01b81526004810186905290516001600160a01b03909216916397ffe1d79160248082019260009290919082900301818387803b158015613edd57600080fd5b505af1158015613ef1573d6000803e3d6000fd5b5050604080514281526020810187905281517f03ca7276ab7799bf73fb79d27ff0610cd7049574f2508ef8445162833d439aea9450908190039091019150a1505050565b600060085b600e8160ff1681548110613f4a57fe5b90600052602060002001548310613f7f57600f8160ff1681548110613f6b57fe5b600091825260209091200154601055613f88565b60001901613f3a565b5050601054919050565b6000818361401e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613fe3578181015183820152602001613fcb565b50505050905090810190601f1680156140105780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161402a57fe5b0495945050505050565b600081848411156140865760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613fe3578181015183820152602001613fcb565b505050900390565b60606140e3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166142529092919063ffffffff16565b8051909150156119ba5780806020019051602081101561410257600080fd5b50516119ba5760405162461bcd60e51b815260040180806020018281038252602a81526020018061468c602a913960400191505060405180910390fd5b8015806141c5575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561419757600080fd5b505afa1580156141ab573d6000803e3d6000fd5b505050506040513d60208110156141c157600080fd5b5051155b6142005760405162461bcd60e51b81526004018080602001828103825260368152602001806146dc6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526119ba90849061408e565b60606142618484600085614269565b949350505050565b6060614274856143d6565b6142c5576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106143045780518252601f1990920191602091820191016142e5565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614366576040519150601f19603f3d011682016040523d82523d6000602084013e61436b565b606091505b5091509150811561437f5791506142619050565b80511561438f5780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315613fe3578181015183820152602001613fcb565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590614261575050151592915050565b828054828255906000526020600020908101928215614459579160200282015b8281111561445957825182906affffffffffffffffffffff1690559160200191906001019061442f565b50610bd09291506144a6565b828054828255906000526020600020908101928215614459579160200282015b82811115614459578251829061ffff16905591602001919060010190614485565b5b80821115610bd057600081556001016144a756fe54726561737572793a2073746f6d625072696365206e6f7420656c696769626c6520666f7220626f6e6420707572636861736554726561737572793a2063616e6e6f742072656465656d20626f6e64732077697468207a65726f20616d6f756e745f7072656d69756d5468726573686f6c6420697320686967686572207468616e20312e3554726561737572793a20747265617375727920686173206e6f206d6f726520627564676574536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7754726561737572793a2063616e6e6f7420707572636861736520626f6e64732077697468207a65726f20616d6f756e745f6d696e74696e67466163746f72466f72506179696e67446562743a206f7574206f662072616e67655f6d6178537570706c79457870616e73696f6e50657263656e743a206f7574206f662072616e6765496e6465782068617320746f206265206c6f776572207468616e20636f756e74206f6620746965727354726561737572793a206661696c656420746f20636f6e73756c742053544f4d422070726963652066726f6d20746865206f7261636c6554726561737572793a2063616c6c6572206973206e6f7420746865206f70657261746f725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564436f6e747261637447756172643a206f6e6520626c6f636b2c206f6e652066756e6374696f6e5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636554726561737572793a206e6f7420656e6f75676820626f6e64206c65667420746f2070757263686173655f626f6f747374726170537570706c79457870616e73696f6e50657263656e743a206f7574206f662072616e67655f7072656d69756d5468726573686f6c6420657863656564732073746f6d6250726963654365696c696e67a26469706673582212206418196f40011fa87f78a074b98c451282f74341bd39fa48e202529660854fd864736f6c634300060c0033
Deployed Bytecode Sourcemap
28143:25009:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52691:160;;;;;;;;;;;;;;;;-1:-1:-1;52691:160:0;;:::i;:::-;;30086:35;;;:::i;:::-;;;;;;;;;;;;;;;;33153:910;;;:::i;43151:412::-;;;;;;;;;;;;;;;;-1:-1:-1;43151:412:0;;:::i;39000:389::-;;;;;;;;;;;;;;;;-1:-1:-1;39000:389:0;;:::i;34544:839::-;;;:::i;35391:887::-;;;:::i;46409:1231::-;;;;;;;;;;;;;;;;-1:-1:-1;46409:1231:0;;;;;;;:::i;42920:223::-;;;;;;;;;;;;;;;;-1:-1:-1;42920:223:0;;:::i;28501:31::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;29235:47;;;:::i;29784:30::-;;;:::i;28781:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;28781:20:0;;;;;;;;;;;;;;29725:29;;;:::i;44350:553::-;;;:::i;32089:89::-;;;:::i;29619:38::-;;;:::i;28947:28::-;;;:::i;29895:41::-;;;:::i;43571:201::-;;;;;;;;;;;;;;;;-1:-1:-1;43571:201:0;;:::i;30057:22::-;;;:::i;43780:400::-;;;;;;;;;;;;;;;;-1:-1:-1;43780:400:0;;:::i;51842:425::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51842:425:0;;;;;;;;;;;;;;;;;:::i;44911:1490::-;;;;;;;;;;;;;;;;-1:-1:-1;44911:1490:0;;;;;;;:::i;30013:35::-;;;:::i;28455:23::-;;;:::i;41110:310::-;;;;;;;;;;;;;;;;-1:-1:-1;41110:310:0;;:::i;33051:94::-;;;:::i;29023:31::-;;;:::i;49088:2746::-;;;:::i;28867:24::-;;;:::i;28836:22::-;;;:::i;28808:21::-;;;:::i;34071:465::-;;;:::i;28555:24::-;;;:::i;29188:40::-;;;:::i;28708:::-;;;;;;;;;;;;;;;;-1:-1:-1;28708:40:0;;:::i;29497:46::-;;;:::i;40360:361::-;;;;;;;;;;;;;;;;-1:-1:-1;40360:361:0;;:::i;29984:22::-;;;:::i;38482:151::-;;;;;;;;;;;;;;;;-1:-1:-1;38482:151:0;-1:-1:-1;;;;;38482:151:0;;:::i;28586:24::-;;;:::i;41428:578::-;;;;;;;;;;;;;;;;-1:-1:-1;41428:578:0;;;;;;;:::i;39397:517::-;;;;;;;;;;;;;;;;-1:-1:-1;39397:517:0;;;;;;;;;:::i;38361:113::-;;;;;;;;;;;;;;;;-1:-1:-1;38361:113:0;-1:-1:-1;;;;;38361:113:0;;:::i;36332:1799::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36332:1799:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;42634:145::-;;;;;;;;;;;;;;;;-1:-1:-1;42634:145:0;;:::i;29063:28::-;;;;;;;;;;;;;;;;-1:-1:-1;29063:28:0;;:::i;28898:26::-;;;:::i;29098:34::-;;;;;;;;;;;;;;;;-1:-1:-1;29098:34:0;;:::i;42787:125::-;;;;;;;;;;;;;;;;-1:-1:-1;42787:125:0;;:::i;52859:290::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52859:290:0;;;;;;;;;;;;;;;;;:::i;28982:32::-;;;:::i;52275:134::-;;;;;;;;;;;;;;;;-1:-1:-1;52275:134:0;-1:-1:-1;;;;;52275:134:0;;:::i;38139:101::-;;;;;;;;;;;;;;;;-1:-1:-1;38139:101:0;-1:-1:-1;;;;;38139:101:0;;:::i;38248:105::-;;;;;;;;;;;;;;;;-1:-1:-1;38248:105:0;-1:-1:-1;;;;;38248:105:0;;:::i;28336:40::-;;;:::i;29664:30::-;;;:::i;42014:612::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42014:612:0;;;;;;;;;;;;;;;;;;;;:::i;32200:114::-;;;:::i;29859:29::-;;;:::i;29821:31::-;;;:::i;40729:373::-;;;;;;;;;;;;;;;;-1:-1:-1;40729:373:0;;:::i;39922:430::-;;;;;;;;;;;;;;;;-1:-1:-1;39922:430:0;;;;;;;;;:::i;29141:40::-;;;:::i;29338:34::-;;;:::i;32680:348::-;;;:::i;29289:42::-;;;:::i;32337:335::-;;;:::i;29460:30::-;;;:::i;38641:351::-;;;;;;;;;;;;;;;;-1:-1:-1;38641:351:0;;:::i;52417:266::-;;;;;;;;;;;;;;;;-1:-1:-1;52417:266:0;;;;;;;:::i;28617:45::-;;;:::i;52691:160::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52805:9:::1;::::0;52794:49:::1;::::0;;-1:-1:-1;;;52794:49:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;52805:9:0;;::::1;::::0;52794:41:::1;::::0;:49;;;;;52805:9:::1;::::0;52794:49;;;;;;;;52805:9;;52794:49;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52691:160:::0;:::o;30086:35::-;;;;:::o;33153:910::-;33233:26;33277:19;33299:15;:13;:15::i;:::-;33277:37;;33344:13;;33329:11;:28;33325:731;;33374:20;33397:27;:25;:27::i;:::-;33374:50;;33439:22;33464:84;33542:5;33464:55;33499:19;;33464:12;:34;;:55;;;;:::i;:::-;:77;;:84::i;:::-;33439:109;;33563:19;33592:6;;;;;;;;;-1:-1:-1;;;;;33592:6:0;-1:-1:-1;;;;;33585:26:0;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33585:28:0;;-1:-1:-1;33632:28:0;;;33628:417;;;33681:24;33708:31;:14;33727:11;33708:18;:31::i;:::-;33681:58;-1:-1:-1;33758:25:0;33786:87;33868:4;33786:55;33681:58;33829:11;33786:42;:55::i;:87::-;33758:115;;33913:116;33944:26;;33993:17;33913:8;:116::i;:::-;33892:137;;33628:417;;;33325:731;;;;33153:910;;:::o;43151:412::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43299:17:::1;;43278;:38;;43256:131;;;;-1:-1:-1::0;;;43256:131:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43441:3;43420:17;:24;;43398:110;;;;-1:-1:-1::0;;;43398:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43519:16;:36:::0;43151:412::o;39000:389::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39176:2:::1;39146:26;:32;;:87;;;;;39229:4;39199:26;:34;;39146:87;39124:177;;;;-1:-1:-1::0;;;39124:177:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39327:25;:54:::0;39000:389::o;34544:839::-;34596:13;34622:19;34644:15;:13;:15::i;:::-;34622:37;;34689:13;;34674:11;:28;34670:706;;34723:15;;34719:646;;34804:13;;34796:21;;34719:646;;;34858:19;34880:80;34930:11;34880:23;34898:4;34880:13;;:17;;:23;;;;:::i;:80::-;34858:102;;34998:23;35024:128;35146:5;35024:95;35103:15;;35024:52;35062:13;;35024:11;:37;;:52;;;;:::i;:::-;:78;;:95::i;:128::-;35179:13;;34998:154;;-1:-1:-1;35179:34:0;;34998:154;35179:17;:34::i;:::-;35171:42;;35254:1;35236:15;;:19;:46;;;;;35267:15;;35259:5;:23;35236:46;35232:118;;;35315:15;;35307:23;;35232:118;34719:646;;34544:839;;:::o;35391:887::-;35442:13;35468:19;35490:15;:13;:15::i;:::-;35468:37;;35534:17;;35520:11;:31;35516:755;;;35568:35;35606:80;35682:3;35606:53;35642:16;;35606:13;;:35;;:53;;;;:::i;:80::-;35568:118;;35720:27;35705:11;:42;35701:559;;35800:22;35825:127;35946:5;35825:94;35904:14;;35825:52;35863:13;;35825:11;:37;;:52;;;;:::i;:127::-;35979:13;;35800:152;;-1:-1:-1;35979:33:0;;35800:152;35979:17;:33::i;:::-;35971:41;;36052:1;36035:14;;:18;:44;;;;;36065:14;;36057:5;:22;36035:44;36031:115;;;36112:14;;36104:22;;36031:115;35701:559;;;;36231:13;;36223:21;;35701:559;35516:755;35391:887;;:::o;46409:1231::-;26185:28;:26;:28::i;:::-;26184:29;26176:80;;;;-1:-1:-1;;;26176:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26276:28;:26;:28::i;:::-;26275:29;26267:80;;;;-1:-1:-1;;;26267:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31079:9:::1;;31072:3;:16;;31064:54;;;::::0;;-1:-1:-1;;;31064:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31064:54:0;;;;;;;;;;;;;::::1;;31591:5:::2;::::0;31579:29:::2;::::0;;-1:-1:-1;;;31579:29:0;;;;31620:4:::2;::::0;-1:-1:-1;;;;;31591:5:0::2;::::0;31579:27:::2;::::0;:29:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;31591:5;31579:29;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;31579:29:0;-1:-1:-1;;;;;31579:46:0::2;;:114:::0;::::2;;;-1:-1:-1::0;31658:6:0::2;::::0;31646:30:::2;::::0;;-1:-1:-1;;;31646:30:0;;;;31688:4:::2;::::0;-1:-1:-1;;;;;31658:6:0::2;::::0;31646:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;31658:6;31646:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;31646:30:0;-1:-1:-1;;;;;31646:47:0::2;;31579:114;:183;;;;-1:-1:-1::0;31726:7:0::2;::::0;31714:31:::2;::::0;;-1:-1:-1;;;31714:31:0;;;;31757:4:::2;::::0;-1:-1:-1;;;;;31726:7:0::2;::::0;31714:29:::2;::::0;:31:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;31726:7;31714:31;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;31714:31:0;-1:-1:-1;;;;;31714:48:0::2;;31579:183;:251;;;;-1:-1:-1::0;31792:9:0::2;::::0;31783:30:::2;::::0;;-1:-1:-1;;;31783:30:0;;;;31825:4:::2;::::0;-1:-1:-1;;;;;31792:9:0::2;::::0;31783:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;31792:9;31783:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;31783:30:0;-1:-1:-1;;;;;31783:47:0::2;;31579:251;31557:331;;;::::0;;-1:-1:-1;;;31557:331:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;46595:1:::3;46581:11;:15;46559:111;;;;-1:-1:-1::0;;;46559:111:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46683:18;46704:15;:13;:15::i;:::-;46683:36;;46752:11;46738:10;:25;46730:65;;;::::0;;-1:-1:-1;;;46730:65:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;46841:17;;46828:10;:30;46806:148;;;;-1:-1:-1::0;;;46806:148:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46967:13;46983:20;:18;:20::i;:::-;46967:36;;47030:1;47022:5;:9;47014:49;;;::::0;;-1:-1:-1;;;47014:49:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;47076:20;47099:32;47126:4;47099:22;:11:::0;47115:5;47099:15:::3;:22::i;:32::-;47171:5;::::0;47164:38:::3;::::0;;-1:-1:-1;;;47164:38:0;;47196:4:::3;47164:38;::::0;::::3;::::0;;;47076:55;;-1:-1:-1;47076:55:0;;-1:-1:-1;;;;;47171:5:0;;::::3;::::0;47164:23:::3;::::0;:38;;;;;::::3;::::0;;;;;;;;;47171:5;47164:38;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;47164:38:0;:54:::3;;47142:141;;;;-1:-1:-1::0;;;47142:141:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47315:86;47350:40;47359:16;;47377:12;47350:8;:40::i;:::-;47315:16;::::0;;:20:::3;:86::i;:::-;47296:16;:105:::0;47426:6:::3;::::0;47414:53:::3;::::0;;-1:-1:-1;;;47414:53:0;;47443:10:::3;47414:53;::::0;::::3;::::0;;;;;;;;;-1:-1:-1;;;;;47426:6:0;;::::3;::::0;47414:28:::3;::::0;:53;;;;;47426:6:::3;::::0;47414:53;;;;;;;;47426:6;;47414:53;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;-1:-1:-1::0;;47485:5:0::3;::::0;47478:52:::3;::::0;-1:-1:-1;;;;;;47485:5:0::3;::::0;-1:-1:-1;47505:10:0::3;47517:12:::0;47478:26:::3;:52::i;:::-;47543:19;:17;:19::i;:::-;47580:52;::::0;;;;;::::3;::::0;::::3;::::0;;;;;47594:10:::3;::::0;47580:52:::3;::::0;;;;;;::::3;-1:-1:-1::0;;26382:12:0;26374:7;:21;;;;;;;;;;;26396:9;26374:32;;;;;;;;:39;;26409:4;-1:-1:-1;;26374:39:0;;;;;;;;26446:10;26424:33;;;;;;:40;;;;;;;;;;-1:-1:-1;;;46409:1231:0:o;42920:223::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43051:5:::1;43031:16;:25;;43023:67;;;::::0;;-1:-1:-1;;;43023:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;43101:15;:34:::0;42920:223::o;28501:31::-;;;-1:-1:-1;;;28501:31:0;;;;;:::o;29235:47::-;;;;:::o;29784:30::-;;;;:::o;28781:20::-;;;-1:-1:-1;;;;;28781:20:0;;:::o;29725:29::-;;;;:::o;44350:553::-;44455:5;;44494:24;;;-1:-1:-1;;;44494:24:0;;;;44408:7;;-1:-1:-1;;;;;44455:5:0;;44408:7;;44455:5;;44494:22;;:24;;;;;;;;;;;;;;44455:5;44494:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44494:24:0;;-1:-1:-1;44529:23:0;;44567:279;44628:23;:30;44618:40;;;;44567:279;;;44727:107;44765:10;-1:-1:-1;;;;;44765:20:0;;44786:23;44810:7;44786:32;;;;;;;;;;;;;;;;;;;;;44765:54;;;-1:-1:-1;;;;;;44765:54:0;;;;;;;-1:-1:-1;;;;;44786:32:0;;;44765:54;;;;;;;;;;44786:32;44765:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44765:54:0;44727:15;;:19;:107::i;:::-;44709:125;-1:-1:-1;44673:9:0;;44567:279;;;-1:-1:-1;44863:32:0;:11;44879:15;44863;:32::i;:::-;44856:39;;;;;44350:553;;:::o;32089:89::-;32159:11;;-1:-1:-1;;;32159:11:0;;;;;32089:89::o;29619:38::-;;;;:::o;28947:28::-;;;;:::o;29895:41::-;;;;:::o;43571:201::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43683:5:::1;43664:15;:24;;43656:65;;;::::0;;-1:-1:-1;;;43656:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;43732:14;:32:::0;43571:201::o;30057:22::-;;;-1:-1:-1;;;;;30057:22:0;;:::o;43780:400::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43958:5:::1;43927:27;:36;;:93;;;;;44015:5;43984:27;:36;;43927:93;43905:184;;;;-1:-1:-1::0;;;43905:184:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44116:26;:56:::0;43780:400::o;51842:425::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52073:5:::1;::::0;-1:-1:-1;;;;;52046:33:0;;::::1;52073:5:::0;::::1;52046:33;;52038:51;;;::::0;;-1:-1:-1;;;52038:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;52038:51:0;;;;;;;;;;;;;::::1;;52135:6;::::0;-1:-1:-1;;;;;52108:34:0;;::::1;52135:6:::0;::::1;52108:34;;52100:51;;;::::0;;-1:-1:-1;;;52100:51:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;52100:51:0;;;;;;;;;;;;;::::1;;52197:7;::::0;-1:-1:-1;;;;;52170:35:0;;::::1;52197:7:::0;::::1;52170:35;;52162:53;;;::::0;;-1:-1:-1;;;52162:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;52162:53:0;;;;;;;;;;;;;::::1;;52226:33;-1:-1:-1::0;;;;;52226:19:0;::::1;52246:3:::0;52251:7;52226:19:::1;:33::i;:::-;51842:425:::0;;;:::o;44911:1490::-;26185:28;:26;:28::i;:::-;26184:29;26176:80;;;;-1:-1:-1;;;26176:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26276:28;:26;:28::i;:::-;26275:29;26267:80;;;;-1:-1:-1;;;26267:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31079:9:::1;;31072:3;:16;;31064:54;;;::::0;;-1:-1:-1;;;31064:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31064:54:0;;;;;;;;;;;;;::::1;;31591:5:::2;::::0;31579:29:::2;::::0;;-1:-1:-1;;;31579:29:0;;;;31620:4:::2;::::0;-1:-1:-1;;;;;31591:5:0::2;::::0;31579:27:::2;::::0;:29:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;31591:5;31579:29;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;31579:29:0;-1:-1:-1;;;;;31579:46:0::2;;:114:::0;::::2;;;-1:-1:-1::0;31658:6:0::2;::::0;31646:30:::2;::::0;;-1:-1:-1;;;31646:30:0;;;;31688:4:::2;::::0;-1:-1:-1;;;;;31658:6:0::2;::::0;31646:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;31658:6;31646:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;31646:30:0;-1:-1:-1;;;;;31646:47:0::2;;31579:114;:183;;;;-1:-1:-1::0;31726:7:0::2;::::0;31714:31:::2;::::0;;-1:-1:-1;;;31714:31:0;;;;31757:4:::2;::::0;-1:-1:-1;;;;;31726:7:0::2;::::0;31714:29:::2;::::0;:31:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;31726:7;31714:31;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;31714:31:0;-1:-1:-1;;;;;31714:48:0::2;;31579:183;:251;;;;-1:-1:-1::0;31792:9:0::2;::::0;31783:30:::2;::::0;;-1:-1:-1;;;31783:30:0;;;;31825:4:::2;::::0;-1:-1:-1;;;;;31792:9:0::2;::::0;31783:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;31792:9;31783:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;31783:30:0;-1:-1:-1;;;;;31783:47:0::2;;31579:251;31557:331;;;::::0;;-1:-1:-1;;;31557:331:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;45096:1:::3;45081:12;:16;45059:114;;;;-1:-1:-1::0;;;45059:114:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45186:18;45207:15;:13;:15::i;:::-;45186:36;;45255:11;45241:10;:25;45233:65;;;::::0;;-1:-1:-1;;;45233:65:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;45344:13;;45331:10;:26;45309:141;;;;-1:-1:-1::0;;;45309:141:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45501:26;;45485:12;:42;;45463:134;;;;-1:-1:-1::0;;;45463:134:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45610:13;45626:21;:19;:21::i;:::-;45610:37;;45674:1;45666:5;:9;45658:49;;;::::0;;-1:-1:-1;;;45658:49:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;45720:19;45742:33;45770:4;45742:23;:12:::0;45759:5;45742:16:::3;:23::i;:33::-;45720:55;;45786:19;45808:27;:25;:27::i;:::-;45786:49;;45846:21;45870:45;45903:11;45877:6;;;;;;;;;-1:-1:-1::0;;;;;45877:6:0::3;-1:-1:-1::0;;;;;45870:26:0::3;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;45870:28:0;;:32:::3;:45::i;:::-;45846:69;;45965:47;46006:5;45965:36;45981:19;;45965:11;:15;;:36;;;;:::i;:47::-;45948:13;:64;;45926:133;;;::::0;;-1:-1:-1;;;45926:133:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;45926:133:0;;;;;;;;;;;;;::::3;;46084:5;::::0;46072:53:::3;::::0;;-1:-1:-1;;;46072:53:0;;46100:10:::3;46072:53;::::0;::::3;::::0;;;;;;;;;-1:-1:-1;;;;;46084:5:0;;::::3;::::0;46072:27:::3;::::0;:53;;;;;46084:5:::3;::::0;46072:53;;;;;;;;46084:5;;46072:53;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;-1:-1:-1::0;;46148:6:0::3;::::0;46136:49:::3;::::0;;-1:-1:-1;;;46136:49:0;;46161:10:::3;46136:49;::::0;::::3;::::0;;;;;;;;;-1:-1:-1;;;;;46148:6:0;;::::3;::::0;-1:-1:-1;46136:24:0::3;::::0;-1:-1:-1;46136:49:0;;;;;::::3;::::0;;;;;;;;;46148:6:::3;::::0;46136:49;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;;46227:26:0::3;::::0;:68:::3;::::0;46272:12;46227:30:::3;:68::i;:::-;46198:26;:97:::0;46306:19:::3;:17;:19::i;:::-;46343:50;::::0;;;;;::::3;::::0;::::3;::::0;;;;;46355:10:::3;::::0;46343:50:::3;::::0;;;;;;::::3;-1:-1:-1::0;;26382:12:0;26374:7;:21;;;;;;;;;;;26396:9;26374:32;;;;;;;;:39;;26409:4;-1:-1:-1;;26374:39:0;;;;;;;;26446:10;26424:33;;;;;;:40;;;;;;;;;;-1:-1:-1;;;;;44911:1490:0:o;30013:35::-;;;;:::o;28455:23::-;;;-1:-1:-1;;;;;28455:23:0;;:::o;41110:310::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41267:4:::1;41243:20;:28;;:61;;;;;41299:5;41275:20;:29;;41243:61;41221:123;;;::::0;;-1:-1:-1;;;41221:123:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41221:123:0;;;;;;;;;;;;;::::1;;41370:19;:42:::0;41110:310::o;33051:94::-;33121:16;;33051:94;:::o;29023:31::-;;;;:::o;49088:2746::-;26185:28;:26;:28::i;:::-;26184:29;26176:80;;;;-1:-1:-1;;;26176:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26276:28;:26;:28::i;:::-;26275:29;26267:80;;;;-1:-1:-1;;;26267:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31079:9:::1;;31072:3;:16;;31064:54;;;::::0;;-1:-1:-1;;;31064:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31064:54:0;;;;;;;;;;;;;::::1;;31196:16:::2;:14;:16::i;:::-;31189:3;:23;;31181:60;;;::::0;;-1:-1:-1;;;31181:60:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;31591:5:::3;::::0;31579:29:::3;::::0;;-1:-1:-1;;;31579:29:0;;;;31620:4:::3;::::0;-1:-1:-1;;;;;31591:5:0::3;::::0;31579:27:::3;::::0;:29:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;31591:5;31579:29;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;31579:29:0;-1:-1:-1;;;;;31579:46:0::3;;:114:::0;::::3;;;-1:-1:-1::0;31658:6:0::3;::::0;31646:30:::3;::::0;;-1:-1:-1;;;31646:30:0;;;;31688:4:::3;::::0;-1:-1:-1;;;;;31658:6:0::3;::::0;31646:28:::3;::::0;:30:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;31658:6;31646:30;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;31646:30:0;-1:-1:-1;;;;;31646:47:0::3;;31579:114;:183;;;;-1:-1:-1::0;31726:7:0::3;::::0;31714:31:::3;::::0;;-1:-1:-1;;;31714:31:0;;;;31757:4:::3;::::0;-1:-1:-1;;;;;31726:7:0::3;::::0;31714:29:::3;::::0;:31:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;31726:7;31714:31;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;31714:31:0;-1:-1:-1;;;;;31714:48:0::3;;31579:183;:251;;;;-1:-1:-1::0;31792:9:0::3;::::0;31783:30:::3;::::0;;-1:-1:-1;;;31783:30:0;;;;31825:4:::3;::::0;-1:-1:-1;;;;;31792:9:0::3;::::0;31783:28:::3;::::0;:30:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;31792:9;31783:30;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;31783:30:0;-1:-1:-1;;;;;31783:47:0::3;;31579:251;31557:331;;;::::0;;-1:-1:-1;;;31557:331:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;49242:19:::4;:17;:19::i;:::-;49298:15;:13;:15::i;:::-;49272:23;:41:::0;49392:16:::4;::::0;49324:19:::4;::::0;49346:73:::4;::::0;:27:::4;:25;:27::i;:::-;:31:::0;::::4;:73::i;:::-;49324:95;;49442:15;;49434:5;;:23;49430:2397;;;49526:109;49561:59;49614:5;49561:48;49577:31;;49561:11;:15;;:48;;;;:::i;:59::-;49526:16;:109::i;:::-;49430:2397;;;49698:17;;49672:23;;:43;49668:2148;;;49859:6;::::0;49852:28:::4;::::0;;-1:-1:-1;;;49852:28:0;;;;49831:18:::4;::::0;-1:-1:-1;;;;;49859:6:0::4;::::0;49852:26:::4;::::0;:28:::4;::::0;;::::4;::::0;::::4;::::0;;;;;;;;49859:6;49852:28;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;49852:28:0;49971:13:::4;::::0;49921:23:::4;::::0;49852:28;;-1:-1:-1;49899:19:0::4;::::0;49921:82:::4;::::0;:27:::4;:82::i;:::-;49899:104;;50022:21;50062:26:::0;50107:12:::4;50122:98;50215:4;50122:88;50180:11;50122:35;:88::i;:98::-;50107:113;;50257:4;50243:11;:18;50239:85;;;50300:4;50286:18;;50239:85;50409:52;50455:5;50409:41;50424:25;;50409:10;:14;;:41;;;;:::i;:52::-;50368:16;;:93;50342:1058;;50594:86;50653:4;50594:28;:11:::0;50610;50594:15:::4;:28::i;:86::-;50573:107;;50342:1058;;;50798:20;50821:86;50880:4;50821:28;:11:::0;50837;50821:15:::4;:28::i;:86::-;50798:109;;50951:113;51058:5;50951:76;50994:32;;50951:12;:42;;:76;;;;:::i;:113::-;50930:134:::0;-1:-1:-1;51103:36:0::4;:12:::0;50930:134;51103:16:::4;:36::i;:::-;51166:26;::::0;51087:52;;-1:-1:-1;51166:30:0;51162:219:::4;;51241:116;51351:5;51241:75;51289:26;;51241:13;:47;;:75;;;;:::i;:116::-;51225:132;;51162:219;50342:1058;;51422:22:::0;;51418:107:::4;;51469:36;51486:18;51469:16;:36::i;:::-;51547:17:::0;;51543:258:::4;;51608:16;::::0;:35:::4;::::0;51629:13;51608:20:::4;:35::i;:::-;51589:16;:54:::0;51678:5:::4;::::0;51666:53:::4;::::0;;-1:-1:-1;;;51666:53:0;;51698:4:::4;51666:53;::::0;::::4;::::0;;;;;;;;;-1:-1:-1;;;;;51678:5:0;;::::4;::::0;51666:23:::4;::::0;:53;;;;;::::4;::::0;;;;;;;;;51678:5:::4;::::0;51666:53;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;;51747:34:0::4;::::0;;51762:3:::4;51747:34:::0;;51666:53:::4;51747:34:::0;::::4;::::0;;;;;::::4;::::0;;;;;;;;;::::4;51543:258;49668:2148;;;;;;-1:-1:-1::0;31276:5:0::2;::::0;:12:::2;::::0;31286:1:::2;31276:9;:12::i;:::-;31268:5;:20:::0;31347:17:::2;::::0;31329:15:::2;:13;:15::i;:::-;:35;31328:177;;31398:107;31499:5;31398:78;31448:27;;31398;:25;:27::i;:107::-;31328:177;;;31381:1;31328:177;31299:26;:206:::0;26382:12;26374:7;:21;;;;;;;;;;;26396:9;26374:32;;;;;;;;:39;;26409:4;-1:-1:-1;;26374:39:0;;;;;;;;26446:10;26424:33;;;;;;:40;;;;;;;;;;49088:2746::o;28867:24::-;;;-1:-1:-1;;;;;28867:24:0;;:::o;28836:22::-;;;-1:-1:-1;;;;;28836:22:0;;:::o;28808:21::-;;;-1:-1:-1;;;;;28808:21:0;;:::o;34071:465::-;34149:24;34191:19;34213:15;:13;:15::i;:::-;34191:37;;34257:17;;34243:11;:31;34239:290;;;34320:5;;34313:38;;;-1:-1:-1;;;34313:38:0;;34345:4;34313:38;;;;;;34291:19;;-1:-1:-1;;;;;34320:5:0;;34313:23;;:38;;;;;;;;;;;;;;34320:5;34313:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34313:38:0;;-1:-1:-1;34366:13:0;34382:20;:18;:20::i;:::-;34366:36;-1:-1:-1;34421:9:0;;34417:101;;34470:32;34496:5;34470:21;:11;34486:4;34470:15;:21::i;28555:24::-;;;;:::o;29188:40::-;;;;:::o;28708:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28708:40:0;;-1:-1:-1;28708:40:0;:::o;29497:46::-;;;;:::o;40360:361::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40535:3:::1;40505:26;:33;;:89;;;;;40589:5;40559:26;:35;;40505:89;40483:151;;;::::0;;-1:-1:-1;;;40483:151:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40483:151:0;;;;;;;;;;;;;::::1;;40659:25;:54:::0;40360:361::o;29984:22::-;;;-1:-1:-1;;;;;29984:22:0;;:::o;38482:151::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38586:23:::1;:39:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;38586:39:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;38586:39:0::1;-1:-1:-1::0;;;;;38586:39:0;;;::::1;::::0;;;::::1;::::0;;38482:151::o;28586:24::-;;;;:::o;41428:578::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41604:3:::1;41584:16;:23;;41576:66;;;::::0;;-1:-1:-1;;;41576:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41725:3;41689:32;:39;;:100;;;;;41785:4;41749:32;:40;;41689:100;41667:196;;;;-1:-1:-1::0;;;41667:196:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41887:15;:34:::0;;;;41932:31:::1;:66:::0;41428:578::o;39397:517::-;30936:8;;39512:4;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39610:1:::1;39601:6;:10;;;39593:64;;;;-1:-1:-1::0;;;39593:64:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39672:10;::::0;::::1;::::0;39668:84:::1;;39716:11;39737:1;39728:6;:10;39716:23;;;;;;;;;;;;;;;;;;39707:6;:32;39699:41;;;::::0;::::1;;39775:1;39766:6;:10;;;39762:84;;;39810:11;39822:6;39831:1;39822:10;39810:23;;;;;;;;;;;;;;;;;;39801:6;:32;39793:41;;;::::0;::::1;;39878:6;39856:11;39868:6;39856:19;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:28:::0;-1:-1:-1;39902:4:0::1;31010:1;39397:517:::0;;;;:::o;38361:113::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38440:11:::1;:26:::0;;-1:-1:-1;;;;;;38440:26:0::1;-1:-1:-1::0;;;;;38440:26:0;;;::::1;::::0;;;::::1;::::0;;38361:113::o;36332:1799::-;31964:11;;-1:-1:-1;;;31964:11:0;;;;31963:12;31955:54;;;;;-1:-1:-1;;;31955:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36559:5:::1;:14:::0;;-1:-1:-1;;;;;;36559:14:0;;::::1;-1:-1:-1::0;;;;;36559:14:0;;::::1;::::0;;;::::1;::::0;;;36584:6:::1;:16:::0;;;::::1;::::0;;::::1;;::::0;;36611:7:::1;:18:::0;;;::::1;::::0;;::::1;;::::0;;36640:11:::1;:26:::0;;;::::1;::::0;;::::1;;::::0;;36677:9:::1;:22:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;36710:9:::1;:22:::0;;;36761:8:::1;36745:13;:24:::0;;;36800:31:::1;::::0;36827:3:::1;::::0;36800:22:::1;::::0;36818:3:::1;36800:17;:22::i;:31::-;36780:17;:51:::0;36886:273:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;36886:273:0;;36937:12:::1;36886:273;::::0;::::1;::::0;36964:13:::1;36886:273:::0;;;;;;;36992:13:::1;36886:273:::0;;;;37020:13:::1;36886:273:::0;;;;37048:13:::1;36886:273:::0;;;;37076:14:::1;36886:273:::0;;;;37105:14:::1;36886:273:::0;;;;37134:14:::1;36886:273:::0;;;;::::1;::::0;:11:::1;::::0;:273:::1;;:::i;:::-;-1:-1:-1::0;37170:65:0::1;::::0;;::::1;::::0;::::1;::::0;;37191:3:::1;37170:65:::0;;37196:3:::1;37170:65;::::0;::::1;::::0;37201:3:::1;37170:65:::0;;;;;;;37206:3:::1;37170:65:::0;;;;37211:3:::1;37170:65:::0;;;;37216:3:::1;37170:65:::0;;;;37221:3:::1;37170:65:::0;;;;37226:3:::1;37170:65:::0;;;;37231:3:::1;37170:65:::0;;;;::::1;::::0;:17:::1;::::0;:65:::1;;:::i;:::-;-1:-1:-1::0;37276:3:0::1;37248:25;:31:::0;37354:5:::1;37326:25;:33:::0;37448:4:::1;37413:32;:39:::0;;;37545:3:::1;37515:27;:33:::0;37626:19:::1;:26:::0;37724:3:::1;37705:16;:22:::0;37755:4:::1;37738:14;:21:::0;;;37820:15:::1;:20:::0;37885:3:::1;37851:31;:37:::0;-1:-1:-1;37976:5:0;37969:38:::1;::::0;;-1:-1:-1;;;37969:38:0;;38001:4:::1;37969:38;::::0;::::1;::::0;;;-1:-1:-1;;;;;37976:5:0;;::::1;::::0;37969:23:::1;::::0;:38;;;;;::::1;::::0;;;;;;;;;37976:5;37969:38;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37969:38:0;37950:16:::1;:57:::0;38034:4:::1;38020:18:::0;;-1:-1:-1;;;;;;;;;;38020:18:0;;::::1;-1:-1:-1::0;;;38020:18:0::1;38049:21;38060:10;38049:21:::0;;::::1;::::0;;;38086:37:::1;::::0;;38110:12:::1;38086:37:::0;;;;::::1;::::0;;;;37969:38:::1;38086:37:::0;;::::1;36332:1799:::0;;;;;;:::o;42634:145::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42737:15:::1;:34:::0;42634:145::o;29063:28::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29063:28:0;:::o;28898:26::-;;;-1:-1:-1;;;;;28898:26:0;;:::o;29098:34::-;;;;;;;;;;42787:125;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42872:14:::1;:32:::0;42787:125::o;52859:290::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53030:9:::1;::::0;53019:122:::1;::::0;;-1:-1:-1;;;53019:122:0;;-1:-1:-1;;;;;53019:122:0;;::::1;;::::0;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;53030:9;;;::::1;::::0;53019:50:::1;::::0;:122;;;;;53030:9:::1;::::0;53019:122;;;;;;;53030:9;;53019:122;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52859:290:::0;;;:::o;28982:32::-;;;;:::o;52275:134::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52368:9:::1;::::0;52357:44:::1;::::0;;-1:-1:-1;;;52357:44:0;;-1:-1:-1;;;;;52357:44:0;;::::1;;::::0;::::1;::::0;;;52368:9;;;::::1;::::0;52357:33:::1;::::0;:44;;;;;52368:9:::1;::::0;52357:44;;;;;;;52368:9;;52357:44;::::1;;::::0;::::1;;;;::::0;::::1;38139:101:::0;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38212:8:::1;:20:::0;;-1:-1:-1;;;;;;38212:20:0::1;-1:-1:-1::0;;;;;38212:20:0;;;::::1;::::0;;;::::1;::::0;;38139:101::o;38248:105::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38323:9:::1;:22:::0;;-1:-1:-1;;;;;;38323:22:0::1;-1:-1:-1::0;;;;;38323:22:0;;;::::1;::::0;;;::::1;::::0;;38248:105::o;28336:40::-;28369:7;28336:40;:::o;29664:30::-;;;;:::o;42014:612::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42219:22:0;::::1;42211:39;;;::::0;;-1:-1:-1;;;42211:39:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;42211:39:0;;;;;;;;;;;;;::::1;;42294:4;42269:21;:29;;42261:54;;;::::0;;-1:-1:-1;;;42261:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42261:54:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;42344:22:0;::::1;42336:39;;;::::0;;-1:-1:-1;;;42336:39:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;42336:39:0;;;;;;;;;;;;;::::1;;42419:4;42394:21;:29;;42386:54;;;::::0;;-1:-1:-1;;;42386:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42386:54:0;;;;;;;;;;;;;::::1;;42461:7;:18:::0;;-1:-1:-1;;;;;;42461:18:0;;::::1;-1:-1:-1::0;;;;;42461:18:0;;::::1;;::::0;;;42490:20:::1;:44:::0;;;;42545:7:::1;:18:::0;;;;::::1;::::0;;;::::1;;::::0;;42574:20:::1;:44:::0;42014:612::o;32200:114::-;32247:7;32274:32;32288:17;28369:7;32288:5;;:9;;:17;;;;:::i;:::-;32274:9;;;:13;:32::i;:::-;32267:39;;32200:114;:::o;29859:29::-;;;;:::o;29821:31::-;;;;:::o;40729:373::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40910:3:::1;40878:28;:35;;:92;;;;;40966:4;40934:28;:36;;40878:92;40856:154;;;::::0;;-1:-1:-1;;;40856:154:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40856:154:0;;;;;;;;;;;;;::::1;;41036:27;:58:::0;40729:373::o;39922:430::-;30936:8;;40043:4;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40141:1:::1;40132:6;:10;;;40124:64;;;;-1:-1:-1::0;;;40124:64:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40217:2;40207:6;:12;;:30;;;;;40233:4;40223:6;:14;;40207:30;40199:63;;;::::0;;-1:-1:-1;;;40199:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40199:63:0;;;;;;;;;;;;;::::1;;40316:6;40288:17;40306:6;40288:25;;;;;;;;;29141:40:::0;;;;:::o;29338:34::-;;;;:::o;32680:348::-;32809:11;;32827:5;;32801:38;;;-1:-1:-1;;;32801:38:0;;-1:-1:-1;;;;;32827:5:0;;;32801:38;;;;32834:4;32801:38;;;;;;32760:19;;32809:11;;;;;32801:25;;:38;;;;;;;;;;;;;;;32809:11;32801:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32801:38:0;;;32797:224;;32944:65;;-1:-1:-1;;;32944:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32797:224;32886:24;:14;;;32905:4;32886:18;:24::i;:::-;32879:31;;;;;29289:42;;;;:::o;32337:335::-;32426:11;;32447:5;;32418:41;;;-1:-1:-1;;;32418:41:0;;-1:-1:-1;;;;;32447:5:0;;;32418:41;;;;32454:4;32418:41;;;;;;32383:18;;32426:11;;;;;32418:28;;:41;;;;;;;;;;;;;;;32426:11;32418:41;;;;;;;;;;29460:30;;;;:::o;38641:351::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38792:13:::1;;38770:18;:35;;:109;;;;;38848:31;38875:3;38848:22;38866:3;38848:13;;:17;;:22;;;;:::i;:31::-;38826:18;:53;;38770:109;38748:171;;;::::0;;-1:-1:-1;;;38748:171:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38748:171:0;;;;;;;;;;;;;::::1;;38946:17;:38:::0;38641:351::o;52417:266::-;30936:8;;-1:-1:-1;;;;;30936:8:0;30948:10;30936:22;30928:71;;;;-1:-1:-1;;;30928:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52574:9:::1;::::0;52563:112:::1;::::0;;-1:-1:-1;;;52563:112:0;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;52574:9:0;;::::1;::::0;52563:31:::1;::::0;:112;;;;;52574:9:::1;::::0;52563:112;;;;;;;;52574:9;;52563:112;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52417:266:::0;;:::o;28617:45::-;;;;:::o;5745:471::-;5803:7;6048:6;6044:47;;-1:-1:-1;6078:1:0;6071:8;;6044:47;6115:5;;;6119:1;6115;:5;:1;6139:5;;;;;:10;6131:56;;;;-1:-1:-1;;;6131:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6207:1;5745:471;-1:-1:-1;;;5745:471:0:o;6692:132::-;6750:7;6777:39;6781:1;6784;6777:39;;;;;;;;;;;;;;;;;:3;:39::i;4855:136::-;4913:7;4940:43;4944:1;4947;4940:43;;;;;;;;;;;;;;;;;:3;:43::i;409:106::-;467:7;498:1;494;:5;:13;;506:1;494:13;;;-1:-1:-1;502:1:0;;409:106;-1:-1:-1;409:106:0:o;4391:181::-;4449:7;4481:5;;;4505:6;;;;4497:46;;;;;-1:-1:-1;;;4497:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;25874:125;25967:12;25935:4;25959:21;;;;;;;;;;;25981:9;25959:32;;;;;;;;;;25874:125;:::o;26007:126::-;26100:12;26068:4;26092:21;;;;;;;;;;;26114:10;26092:33;;;;;;;;;;26007:126;:::o;15579:177::-;15689:58;;;-1:-1:-1;;;;;15689:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15689:58:0;-1:-1:-1;;;15689:58:0;;;15662:86;;15682:5;;15662:19;:86::i;44241:101::-;44302:11;;;;;;;;;-1:-1:-1;;;;;44302:11:0;-1:-1:-1;;;;;44294:27:0;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44290:45;44241:101::o;47648:1028::-;47723:5;;47711:47;;;-1:-1:-1;;;47711:47:0;;47743:4;47711:47;;;;;;;;;;;;-1:-1:-1;;;;;47723:5:0;;;;47711:23;;:47;;;;;;;;;;;;;;;47723:5;;47711:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47818:20:0;;47771:28;;47818:24;47814:252;;47882:44;47920:5;47882:33;47894:20;;47882:7;:11;;:33;;;;:::i;:44::-;47948:5;;47964:7;;47941:53;;;-1:-1:-1;;;47941:53:0;;-1:-1:-1;;;;;47964:7:0;;;47941:53;;;;;;;;;;;;47859:67;;-1:-1:-1;47948:5:0;;;47941:22;;:53;;;;;;;;;;;;;;;47948:5;;47941:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48014:40:0;;;48028:3;48014:40;;47941:53;48014:40;;;;;;;;;;;;;;;;;;47814:252;48125:20;;48078:28;;48125:24;48121:252;;48189:44;48227:5;48189:33;48201:20;;48189:7;:11;;:33;;;;:::i;:44::-;48255:5;;48271:7;;;48248:53;;;-1:-1:-1;;;48248:53:0;;-1:-1:-1;;;;;48271:7:0;;;48248:53;;;;;;;;;;;;48166:67;;-1:-1:-1;48255:5:0;;;48248:22;;:53;;;;;48271:7;48248:53;;;;;;48255:5;;48248:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48321:40:0;;;48335:3;48321:40;;48248:53;48321:40;;;;;;;;;;;;;;;;;;48121:252;48395:59;48433:20;48395:33;:7;48407:20;48395:11;:33::i;:59::-;48493:9;;48474:5;;48385:69;;-1:-1:-1;48467:39:0;;-1:-1:-1;;;;;48474:5:0;;;;48493:9;;48467:25;:39::i;:::-;48543:9;;48524:5;;48517:45;;-1:-1:-1;;;;;48524:5:0;;;;48543:9;48554:7;48517:25;:45::i;:::-;48584:9;;48573:50;;;-1:-1:-1;;;48573:50:0;;;;;;;;;;-1:-1:-1;;;;;48584:9:0;;;;48573:41;;:50;;;;;48584:9;;48573:50;;;;;;;;48584:9;;48573:50;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48639:29:0;;;48655:3;48639:29;;;;;;;;;;;;-1:-1:-1;48639:29:0;;;;;;;;-1:-1:-1;48639:29:0;47648:1028;;;:::o;48684:396::-;48785:7;48825:1;48805:225;48886:11;48898:6;48886:19;;;;;;;;;;;;;;;;;;48870:12;:35;48866:153;;48954:17;48972:6;48954:25;;;;;;;;;;;;;;;;;;;;48926;:53;48998:5;;48866:153;-1:-1:-1;;48841:8:0;48805:225;;;-1:-1:-1;;49047:25:0;;48684:396;;;:::o;7320:278::-;7406:7;7441:12;7434:5;7426:28;;;;-1:-1:-1;;;7426:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7465:9;7481:1;7477;:5;;;;;;;7320:278;-1:-1:-1;;;;;7320:278:0:o;5294:192::-;5380:7;5416:12;5408:6;;;;5400:29;;;;-1:-1:-1;;;5400:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5452:5:0;;;5294:192::o;17884:761::-;18308:23;18334:69;18362:4;18334:69;;;;;;;;;;;;;;;;;18342:5;-1:-1:-1;;;;;18334:27:0;;;:69;;;;;:::i;:::-;18418:17;;18308:95;;-1:-1:-1;18418:21:0;18414:224;;18560:10;18549:30;;;;;;;;;;;;;;;-1:-1:-1;18549:30:0;18541:85;;;;-1:-1:-1;;;18541:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16238:622;16608:10;;;16607:62;;-1:-1:-1;16624:39:0;;;-1:-1:-1;;;16624:39:0;;16648:4;16624:39;;;;-1:-1:-1;;;;;16624:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16624:39:0;:44;16607:62;16599:152;;;;-1:-1:-1;;;16599:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16789:62;;;-1:-1:-1;;;;;16789:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16789:62:0;-1:-1:-1;;;16789:62:0;;;16762:90;;16782:5;;16762:19;:90::i;12655:196::-;12758:12;12790:53;12813:6;12821:4;12827:1;12830:12;12790:22;:53::i;:::-;12783:60;12655:196;-1:-1:-1;;;;12655:196:0:o;14032:979::-;14162:12;14195:18;14206:6;14195:10;:18::i;:::-;14187:60;;;;;-1:-1:-1;;;14187:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14321:12;14335:23;14362:6;-1:-1:-1;;;;;14362:11:0;14382:8;14393:4;14362:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14362:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14320:78;;;;14413:7;14409:595;;;14444:10;-1:-1:-1;14437:17:0;;-1:-1:-1;14437:17:0;14409:595;14558:17;;:21;14554:439;;14821:10;14815:17;14882:15;14869:10;14865:2;14861:19;14854:44;14769:148;14957:20;;-1:-1:-1;;;14957:20:0;;;;;;;;;;;;;;;;;14964:12;;14957:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9540:619;9600:4;10068:20;;9911:66;10108:23;;;;;;:42;;-1:-1:-1;;10135:15:0;;;10100:51;-1:-1:-1;;9540:619:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://6418196f40011fa87f78a074b98c451282f74341bd39fa48e202529660854fd8
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.