More Info
Private Name Tags
ContractCreator
TokenTracker
Sponsored
Latest 25 from a total of 45 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 93366931 | 2 days ago | IN | 0 FTM | 0.00110688 | ||||
Claim Fees | 93001301 | 5 days ago | IN | 0 FTM | 0.00111114 | ||||
Approve | 92641301 | 9 days ago | IN | 0 FTM | 0.00057767 | ||||
Approve | 92517830 | 10 days ago | IN | 0 FTM | 0.00039102 | ||||
Approve | 92176532 | 14 days ago | IN | 0 FTM | 0.00067423 | ||||
Approve | 91724783 | 19 days ago | IN | 0 FTM | 0.00084774 | ||||
Approve | 91612616 | 20 days ago | IN | 0 FTM | 0.00069624 | ||||
Approve | 91327757 | 23 days ago | IN | 0 FTM | 0.00036566 | ||||
Approve | 91327728 | 23 days ago | IN | 0 FTM | 0.00055069 | ||||
Approve | 91238918 | 24 days ago | IN | 0 FTM | 0.00046045 | ||||
Approve | 90955752 | 27 days ago | IN | 0 FTM | 0.0002538 | ||||
Approve | 90888684 | 28 days ago | IN | 0 FTM | 0.00036453 | ||||
Approve | 90876114 | 28 days ago | IN | 0 FTM | 0.00021343 | ||||
Approve | 90805625 | 29 days ago | IN | 0 FTM | 0.00024439 | ||||
Approve | 90774759 | 29 days ago | IN | 0 FTM | 0.00019447 | ||||
Approve | 90747725 | 30 days ago | IN | 0 FTM | 0.00043141 | ||||
Approve | 90502099 | 33 days ago | IN | 0 FTM | 0.00048878 | ||||
Approve | 90288927 | 35 days ago | IN | 0 FTM | 0.0004399 | ||||
Approve | 90220184 | 36 days ago | IN | 0 FTM | 0.0004399 | ||||
Approve | 90169630 | 36 days ago | IN | 0 FTM | 0.00058653 | ||||
Approve | 89785134 | 41 days ago | IN | 0 FTM | 0.00023981 | ||||
Approve | 89780141 | 41 days ago | IN | 0 FTM | 0.00029326 | ||||
Approve | 89674458 | 42 days ago | IN | 0 FTM | 0.00019551 | ||||
Approve | 89674204 | 42 days ago | IN | 0 FTM | 0.00023571 | ||||
Claim Fees | 89625230 | 43 days ago | IN | 0 FTM | 0.0009032 |
Latest 2 internal transactions
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
85858930 | 79 days ago | Contract Creation | 0 FTM | |||
85858930 | 79 days ago | Contract Creation | 0 FTM |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x8DdF59A0...F26017362 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Pair
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2023-04-10 */ /** *Submitted for verification at FtmScan.com on 2023-02-21 */ /** *v1.1.0 *0xc9ab1ab21358f4fc36cbbbe27f3b3ead423ec33b *Submitted for verification at FtmScan.com on 2022-11-03 */ /** * EQUALIZER EXCHANGE * The New Liquidity Hub of Fantom chain! * https://equalizer.exchange (Dapp) * https://discord.gg/MaMhbgHMby (Community) * * * Version: 1.3.8 * - Clarify Fee-Claims are once per veNFT per 7 days per pool * - Real-time Countdown * * * Contributors: * - Andre Cronje, Solidly.Exchange * - Velodrome.finance Team * - @smartcoding51 * - Sam 543#3017, Equalizer Team * * * SPDX-License-Identifier: UNLICENSED * */ // File: contracts/interfaces/IPairFactory.sol pragma solidity 0.8.9; interface IPairFactory { function isPaused() external view returns (bool); function allPairsLength() external view returns (uint); function isPair(address pair) external view returns (bool); function getFee(bool _stable) external view returns(uint256); function pairCodeHash() external pure returns (bytes32); function getPair(address tokenA, address token, bool stable) external view returns (address); function getInitializable() external view returns (address, address, bool); function createPair(address tokenA, address tokenB, bool stable) external returns (address pair); } // File: contracts/interfaces/IPairCallee.sol pragma solidity 0.8.9; interface IPairCallee { function hook(address sender, uint amount0, uint amount1, bytes calldata data) external; } // File: contracts/interfaces/IPairCallee.sol pragma solidity 0.8.9; interface IPair { function stable() external view returns (bool _s); } // File: contracts/interfaces/IERC20.sol pragma solidity 0.8.9; interface IERC20 { function totalSupply() external view returns (uint256); function transfer(address recipient, uint amount) external returns (bool); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function balanceOf(address) external view returns (uint); function transferFrom(address sender, address recipient, uint amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); event Transfer(address indexed from, address indexed to, uint value); event Approval(address indexed owner, address indexed spender, uint value); } // File: contracts/libraries/Math.sol pragma solidity 0.8.9; library Math { function max(uint a, uint b) internal pure returns (uint) { return a >= b ? a : b; } function min(uint a, uint b) internal pure returns (uint) { return a < b ? a : b; } function sqrt(uint y) internal pure returns (uint z) { if (y > 3) { z = y; uint x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } function cbrt(uint256 n) internal pure returns (uint256) { unchecked { uint256 x = 0; for (uint256 y = 1 << 255; y > 0; y >>= 3) { x <<= 1; uint256 z = 3 * x * (x + 1) + 1; if (n / y >= z) { n -= y * z; x += 1; } } return x; }} } // File: @openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol // OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original * initialization step. This is essential to configure modules that are added through upgrades and that require * initialization. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } } // File: contracts/PairFees.sol pragma solidity 0.8.9; /** * @title Pair Fees * @notice used as a 1:1 pair relationship to split out fees, this ensures * that the curve does not need to be modified for LP shares */ contract PairFees is Initializable { address internal pair; // The pair it is bonded to address internal token0; // token0 of pair, saved localy and statically for gas optimization address internal token1; // Token1 of pair, saved localy and statically for gas optimization function initialize(address _token0, address _token1) public initializer { pair = msg.sender; token0 = _token0; token1 = _token1; } function _safeTransfer(address token,address to,uint256 value) internal { require(token.code.length > 0, "PairFees: invalid token"); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.transfer.selector, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), "PairFees: transfer failed"); } // Allow the pair to transfer fees to users function claimFeesFor(address recipient, uint amount0, uint amount1) external { require(msg.sender == pair, "Only pair contract can call"); if (amount0 > 0) _safeTransfer(token0, recipient, amount0); if (amount1 > 0) _safeTransfer(token1, recipient, amount1); } } // File: contracts/Pair.sol pragma solidity 0.8.9; contract Pair is Initializable { string public name; string public symbol; uint8 public constant decimals = 18; /// @notice Used to denote stable or volatile pair, not immutable since construction happens in the initialize method for CREATE2 deterministic addresses bool public stable; uint256 public totalSupply; mapping(address => mapping (address => uint)) public allowance; mapping(address => uint) public balanceOf; bytes32 internal DOMAIN_SEPARATOR; /// @dev keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 internal constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; mapping(address => uint) public nonces; uint256 internal constant MINIMUM_LIQUIDITY = 10**3; address public token0; address public token1; address public fees; address public factory; // Structure to capture time period obervations every 30 minutes, used for local oracles struct Observation { uint timestamp; uint reserve0Cumulative; uint reserve1Cumulative; } // Capture oracle reading every 30 minutes uint constant periodSize = 1800; Observation[] public observations; uint internal decimals0; uint internal decimals1; uint public reserve0; uint public reserve1; uint public blockTimestampLast; uint public reserve0CumulativeLast; uint public reserve1CumulativeLast; // index0 and index1 are used to accumulate fees, this is split out from normal trades to keep the swap "clean" // this further allows LP holders to easily claim fees for tokens they have/staked uint public index0; uint public index1; // position assigned to each LP to track their current index0 & index1 vs the global position mapping(address => uint) public supplyIndex0; mapping(address => uint) public supplyIndex1; // tracks the amount of unclaimed, but claimable tokens off of fees for token0 and token1 mapping(address => uint) public claimable0; mapping(address => uint) public claimable1; /// @dev simple re-entrancy check bool internal _locked; event Fees(address indexed sender, uint amount0, uint amount1); event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint reserve0, uint reserve1); event Claim(address indexed sender, address indexed recipient, uint amount0, uint amount1); event Transfer(address indexed from, address indexed to, uint amount); event Approval(address indexed owner, address indexed spender, uint amount); modifier lock() { require(!_locked, "No re-entrancy"); _locked = true; _; _locked = false; } function initialize() public initializer { factory = msg.sender; (address _token0, address _token1, bool _stable) = IPairFactory(msg.sender).getInitializable(); (token0, token1, stable) = (_token0, _token1, _stable); PairFees pairFees = new PairFees(); pairFees.initialize(_token0, _token1); fees = address(pairFees); if (_stable) { name = string(abi.encodePacked("StableV1 AMM - ", IERC20(_token0).symbol(), "/", IERC20(_token1).symbol())); symbol = string(abi.encodePacked("sAMM-", IERC20(_token0).symbol(), "/", IERC20(_token1).symbol())); } else { name = string(abi.encodePacked("VolatileV1 AMM - ", IERC20(_token0).symbol(), "/", IERC20(_token1).symbol())); symbol = string(abi.encodePacked("vAMM-", IERC20(_token0).symbol(), "/", IERC20(_token1).symbol())); } decimals0 = 10**IERC20(_token0).decimals(); decimals1 = 10**IERC20(_token1).decimals(); observations.push(Observation(block.timestamp, 0, 0)); } function observationLength() external view returns (uint) { return observations.length; } function lastObservation() public view returns (Observation memory) { return observations[observations.length-1]; } function metadata() external view returns (uint dec0, uint dec1, uint r0, uint r1, bool st, address t0, address t1) { return (decimals0, decimals1, reserve0, reserve1, stable, token0, token1); } function tokens() external view returns (address, address) { return (token0, token1); } /// @dev claim accumulated but unclaimed fees (viewable via claimable0 and claimable1) function claimFees() external returns (uint claimed0, uint claimed1) { _updateFor(msg.sender); claimed0 = claimable0[msg.sender]; claimed1 = claimable1[msg.sender]; if (claimed0 > 0 || claimed1 > 0) { claimable0[msg.sender] = 0; claimable1[msg.sender] = 0; PairFees(fees).claimFeesFor(msg.sender, claimed0, claimed1); emit Claim(msg.sender, msg.sender, claimed0, claimed1); } } /// @dev Accrue fees on token0 function _update0(uint amount) internal { _safeTransfer(token0, fees, amount); // transfer the fees out to PairFees uint256 _ratio = amount * 1e18 / totalSupply; // 1e18 adjustment is removed during claim if (_ratio > 0) { index0 += _ratio; } emit Fees(msg.sender, amount, 0); } /// @dev Accrue fees on token1 function _update1(uint amount) internal { _safeTransfer(token1, fees, amount); uint256 _ratio = amount * 1e18 / totalSupply; if (_ratio > 0) { index1 += _ratio; } emit Fees(msg.sender, 0, amount); } /** * @notice This function must be called on any balance changes, otherwise can be used to infinitely claim fees * Fees are segregated from core funds, so fees can never put liquidity at risk */ function _updateFor(address recipient) internal { uint _supplied = balanceOf[recipient]; // get LP balance of `recipient` if (_supplied > 0) { uint _supplyIndex0 = supplyIndex0[recipient]; // get last adjusted index0 for recipient uint _supplyIndex1 = supplyIndex1[recipient]; uint _index0 = index0; // get global index0 for accumulated fees uint _index1 = index1; supplyIndex0[recipient] = _index0; // update user current position to global position supplyIndex1[recipient] = _index1; uint _delta0 = _index0 - _supplyIndex0; // see if there is any difference that need to be accrued uint _delta1 = _index1 - _supplyIndex1; if (_delta0 > 0) { uint _share = _supplied * _delta0 / 1e18; // add accrued difference for each supplied token claimable0[recipient] += _share; } if (_delta1 > 0) { uint _share = _supplied * _delta1 / 1e18; claimable1[recipient] += _share; } } else { supplyIndex0[recipient] = index0; // new users are set to the default global state supplyIndex1[recipient] = index1; } } function getReserves() public view returns (uint _reserve0, uint _reserve1, uint _blockTimestampLast) { _reserve0 = reserve0; _reserve1 = reserve1; _blockTimestampLast = blockTimestampLast; } /// @dev update reserves and, on the first call per block, price accumulators function _update(uint balance0, uint balance1, uint _reserve0, uint _reserve1) internal { uint blockTimestamp = block.timestamp; uint timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) { reserve0CumulativeLast += _reserve0 * timeElapsed; reserve1CumulativeLast += _reserve1 * timeElapsed; } Observation memory _point = lastObservation(); timeElapsed = blockTimestamp - _point.timestamp; // compare the last observation with current timestamp, if greater than 30 minutes, record a new event if (timeElapsed > periodSize) { observations.push(Observation(blockTimestamp, reserve0CumulativeLast, reserve1CumulativeLast)); } reserve0 = balance0; reserve1 = balance1; blockTimestampLast = blockTimestamp; emit Sync(reserve0, reserve1); } /// @dev produces the cumulative price using counterfactuals to save gas and avoid a call to sync. function currentCumulativePrices() public view returns (uint reserve0Cumulative, uint reserve1Cumulative, uint blockTimestamp) { blockTimestamp = block.timestamp; reserve0Cumulative = reserve0CumulativeLast; reserve1Cumulative = reserve1CumulativeLast; // if time has elapsed since the last update on the pair, mock the accumulated price values (uint _reserve0, uint _reserve1, uint _blockTimestampLast) = getReserves(); if (_blockTimestampLast != blockTimestamp) { // subtraction overflow is desired uint timeElapsed = blockTimestamp - _blockTimestampLast; reserve0Cumulative += _reserve0 * timeElapsed; reserve1Cumulative += _reserve1 * timeElapsed; } } /// @dev gives the current twap price measured from amountIn * tokenIn gives amountOut function current(address tokenIn, uint amountIn) external view returns (uint amountOut) { Observation memory _observation = lastObservation(); (uint reserve0Cumulative, uint reserve1Cumulative,) = currentCumulativePrices(); if (block.timestamp == _observation.timestamp) { _observation = observations[observations.length-2]; } uint timeElapsed = block.timestamp - _observation.timestamp; uint _reserve0 = (reserve0Cumulative - _observation.reserve0Cumulative) / timeElapsed; uint _reserve1 = (reserve1Cumulative - _observation.reserve1Cumulative) / timeElapsed; amountOut = _getAmountOut(amountIn, tokenIn, _reserve0, _reserve1); } /// @dev as per `current`, however allows user configured granularity, up to the full window size function quote(address tokenIn, uint amountIn, uint granularity) external view returns (uint amountOut) { uint [] memory _prices = sample(tokenIn, amountIn, granularity, 1); uint priceAverageCumulative; for (uint i = 0; i < _prices.length; i++) { priceAverageCumulative += _prices[i]; } return priceAverageCumulative / granularity; } /// @dev returns a memory set of twap prices function prices(address tokenIn, uint amountIn, uint points) external view returns (uint[] memory) { return sample(tokenIn, amountIn, points, 1); } function sample(address tokenIn, uint amountIn, uint points, uint window) public view returns (uint[] memory) { uint[] memory _prices = new uint[](points); uint length = observations.length-1; uint i = length - (points * window); uint nextIndex = 0; uint index = 0; for (; i < length; i+=window) { nextIndex = i + window; uint timeElapsed = observations[nextIndex].timestamp - observations[i].timestamp; uint _reserve0 = (observations[nextIndex].reserve0Cumulative - observations[i].reserve0Cumulative) / timeElapsed; uint _reserve1 = (observations[nextIndex].reserve1Cumulative - observations[i].reserve1Cumulative) / timeElapsed; _prices[index] = _getAmountOut(amountIn, tokenIn, _reserve0, _reserve1); // index < length; length cannot overflow unchecked { index = index + 1; } } return _prices; } /** * @notice this low-level function should be called by addLiquidity functions in Router.sol, which performs important safety checks * standard uniswap v2 implementation */ function mint(address to) external lock returns (uint liquidity) { (uint _reserve0, uint _reserve1) = (reserve0, reserve1); uint _balance0 = IERC20(token0).balanceOf(address(this)); uint _balance1 = IERC20(token1).balanceOf(address(this)); uint _amount0 = _balance0 - _reserve0; uint _amount1 = _balance1 - _reserve1; uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee if (_totalSupply == 0) { liquidity = Math.sqrt(_amount0 * _amount1) - MINIMUM_LIQUIDITY; _mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens } else { liquidity = Math.min(_amount0 * _totalSupply / _reserve0, _amount1 * _totalSupply / _reserve1); } require(liquidity > 0, "ILM"); // Pair: INSUFFICIENT_LIQUIDITY_MINTED _mint(to, liquidity); _update(_balance0, _balance1, _reserve0, _reserve1); emit Mint(msg.sender, _amount0, _amount1); } /** * @notice this low-level function should be called from a contract which performs important safety checks * standard uniswap v2 implementation */ function burn(address to) external lock returns (uint amount0, uint amount1) { (uint _reserve0, uint _reserve1) = (reserve0, reserve1); (address _token0, address _token1) = (token0, token1); uint _balance0 = IERC20(_token0).balanceOf(address(this)); uint _balance1 = IERC20(_token1).balanceOf(address(this)); uint _liquidity = balanceOf[address(this)]; uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee amount0 = _liquidity * _balance0 / _totalSupply; // using balances ensures pro-rata distribution amount1 = _liquidity * _balance1 / _totalSupply; // using balances ensures pro-rata distribution require(amount0 > 0 && amount1 > 0, "ILB"); // Pair: INSUFFICIENT_LIQUIDITY_BURNED _burn(address(this), _liquidity); _safeTransfer(_token0, to, amount0); _safeTransfer(_token1, to, amount1); _balance0 = IERC20(_token0).balanceOf(address(this)); _balance1 = IERC20(_token1).balanceOf(address(this)); _update(_balance0, _balance1, _reserve0, _reserve1); emit Burn(msg.sender, amount0, amount1, to); } /// @dev this low-level function should be called from a contract which performs important safety checks function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock { require(!IPairFactory(factory).isPaused()); require(amount0Out > 0 || amount1Out > 0, "IOA"); // Pair: INSUFFICIENT_OUTPUT_AMOUNT (uint _reserve0, uint _reserve1) = (reserve0, reserve1); require(amount0Out < _reserve0 && amount1Out < _reserve1, "IL"); // Pair: INSUFFICIENT_LIQUIDITY uint _balance0; uint _balance1; { // scope for _token{0,1}, avoids stack too deep errors (address _token0, address _token1) = (token0, token1); require(to != _token0 && to != _token1, "IT"); // Pair: INVALID_TO if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens if (data.length > 0) IPairCallee(to).hook(msg.sender, amount0Out, amount1Out, data); // callback, used for flash loans _balance0 = IERC20(_token0).balanceOf(address(this)); _balance1 = IERC20(_token1).balanceOf(address(this)); } uint amount0In = _balance0 > _reserve0 - amount0Out ? _balance0 - (_reserve0 - amount0Out) : 0; uint amount1In = _balance1 > _reserve1 - amount1Out ? _balance1 - (_reserve1 - amount1Out) : 0; require(amount0In > 0 || amount1In > 0, "IIA"); // Pair: INSUFFICIENT_INPUT_AMOUNT { // scope for reserve{0,1}Adjusted, avoids stack too deep errors (address _token0, address _token1) = (token0, token1); if (amount0In > 0) _update0(amount0In * IPairFactory(factory).getFee(stable) / 10000); // accrue fees for token0 and move them out of pool if (amount1In > 0) _update1(amount1In * IPairFactory(factory).getFee(stable) / 10000); // accrue fees for token1 and move them out of pool _balance0 = IERC20(_token0).balanceOf(address(this)); // since we removed tokens, we need to reconfirm balances, can also simply use previous balance - amountIn/ 10000, but doing balanceOf again as safety check _balance1 = IERC20(_token1).balanceOf(address(this)); // The curve, either x3y+y3x for stable pools, or x*y for volatile pools require(_k(_balance0, _balance1) >= _k(_reserve0, _reserve1), "K"); // Pair: K } _update(_balance0, _balance1, _reserve0, _reserve1); emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to); } /// @dev force balances to match reserves function skim(address to) external lock { (address _token0, address _token1) = (token0, token1); _safeTransfer(_token0, to, IERC20(_token0).balanceOf(address(this)) - (reserve0)); _safeTransfer(_token1, to, IERC20(_token1).balanceOf(address(this)) - (reserve1)); } /// @dev force reserves to match balances function sync() external lock { _update(IERC20(token0).balanceOf(address(this)), IERC20(token1).balanceOf(address(this)), reserve0, reserve1); } function _f(uint x0, uint y) internal pure returns (uint) { return x0*(y*y/1e18*y/1e18)/1e18+(x0*x0/1e18*x0/1e18)*y/1e18; } function _d(uint x0, uint y) internal pure returns (uint) { return 3*x0*(y*y/1e18)/1e18+(x0*x0/1e18*x0/1e18); } function _get_y(uint x0, uint xy, uint y) internal pure returns (uint) { for (uint i = 0; i < 255; i++) { uint y_prev = y; uint k = _f(x0, y); if (k < xy) { uint dy = (xy - k)*1e18/_d(x0, y); y = y + dy; } else { uint dy = (k - xy)*1e18/_d(x0, y); y = y - dy; } if (y > y_prev) { if (y - y_prev <= 1) { return y; } } else { if (y_prev - y <= 1) { return y; } } } return y; } function getAmountOut(uint amountIn, address tokenIn) external view returns (uint) { (uint _reserve0, uint _reserve1) = (reserve0, reserve1); amountIn -= amountIn * IPairFactory(factory).getFee(stable) / 10000; // remove fee from amount received return _getAmountOut(amountIn, tokenIn, _reserve0, _reserve1); } function _getAmountOut(uint amountIn, address tokenIn, uint _reserve0, uint _reserve1) internal view returns (uint) { if (stable) { uint xy = _k(_reserve0, _reserve1); _reserve0 = _reserve0 * 1e18 / decimals0; _reserve1 = _reserve1 * 1e18 / decimals1; (uint reserveA, uint reserveB) = tokenIn == token0 ? (_reserve0, _reserve1) : (_reserve1, _reserve0); amountIn = tokenIn == token0 ? amountIn * 1e18 / decimals0 : amountIn * 1e18 / decimals1; uint y = reserveB - _get_y(amountIn+reserveA, xy, reserveB); return y * (tokenIn == token0 ? decimals1 : decimals0) / 1e18; } else { (uint reserveA, uint reserveB) = tokenIn == token0 ? (_reserve0, _reserve1) : (_reserve1, _reserve0); return amountIn * reserveB / (reserveA + amountIn); } } function _k(uint x, uint y) internal view returns (uint) { if (stable) { uint _x = x * 1e18 / decimals0; uint _y = y * 1e18 / decimals1; uint _a = (_x * _y) / 1e18; uint _b = ((_x * _x) / 1e18 + (_y * _y) / 1e18); return _a * _b / 1e18; // x3y+y3x >= k } else { return x * y; // xy >= k } } function _mint(address dst, uint amount) internal { _updateFor(dst); // balances must be updated on mint/burn/transfer totalSupply += amount; balanceOf[dst] += amount; emit Transfer(address(0), dst, amount); } function _burn(address dst, uint amount) internal { _updateFor(dst); totalSupply -= amount; balanceOf[dst] -= amount; emit Transfer(dst, address(0), amount); } function approve(address spender, uint amount) external returns (bool) { allowance[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external { require(deadline >= block.timestamp, "Pair: EXPIRED"); DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name)), keccak256(bytes("1")), block.chainid, address(this) ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline)) ) ); address recoveredAddress = ecrecover(digest, v, r, s); require(recoveredAddress != address(0) && recoveredAddress == owner, "Pair: INVALID_SIGNATURE"); allowance[owner][spender] = value; emit Approval(owner, spender, value); } function transfer(address dst, uint amount) external returns (bool) { _transferTokens(msg.sender, dst, amount); return true; } function transferFrom(address src, address dst, uint amount) external returns (bool) { address spender = msg.sender; uint spenderAllowance = allowance[src][spender]; if (spender != src && spenderAllowance != type(uint).max) { uint newAllowance = spenderAllowance - amount; allowance[src][spender] = newAllowance; emit Approval(src, spender, newAllowance); } _transferTokens(src, dst, amount); return true; } function _transferTokens(address src, address dst, uint amount) internal { _updateFor(src); // update fee position for src _updateFor(dst); // update fee position for dst balanceOf[src] -= amount; balanceOf[dst] += amount; emit Transfer(src, dst, amount); } function _safeTransfer(address token,address to,uint256 value) internal { require(token.code.length > 0, "Pair: invalid token"); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20.transfer.selector, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), "Pair: transfer failed"); } } // File: contracts/factories/PairFactory.sol pragma solidity 0.8.9; contract PairFactory is Initializable { bool public isPaused; address public pauser; address public pendingPauser; uint256 public stableFee; uint256 public volatileFee; uint256 public constant MAX_FEE = 30; // 0.3% address public feeManager; address public pendingFeeManager; mapping(address => mapping(address => mapping(bool => address))) public getPair; address[] public allPairs; mapping(address => bool) public isPair; // simplified check if its a pair, given that `stable` flag might not be available in peripherals address internal _temp0; address internal _temp1; bool internal _temp; /// VARIBALES ARE STATEFUL ! DONT MESS WITH THEM SLOTS !! /// ADDITIONAL SLOTS ATTACHED TO TAIL -- DONT DELETE ANY VARIABLES, ONLY ADD NEW ONES TO THE TAIL!!! /// (There are a limited number of slots! (almost infinte, dont worry;)) /// v1.3.11 //(Using a new variable instead at Tail to not cause slot collision, as this contract will be used as Equalizer's PairFactory implementation) uint256 public MAX_FEE_NEW = 1337; // 13.37% mapping(address => uint256) public feesOverrides; /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Such events, much eventful * @notice Events are stateless, ordering doesn't matter. */ event PairCreated(address indexed token0, address indexed token1, bool stable, address pair, uint); /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * wow functions, very fun * @notice Functions are stateless, ordering doesn't matter. */ function initialize() public initializer { pauser = msg.sender; isPaused = false; feeManager = msg.sender; stableFee = 2; // 0.02% volatileFee = 20; // 0.2% } function allPairsLength() external view returns (uint) { return allPairs.length; } function setPauser(address _pauser) external { require(msg.sender == pauser, "PairFactory: not a pauser"); pendingPauser = _pauser; } function acceptPauser() external { require(msg.sender == pendingPauser, "PairFactory: not a pendingPauser"); pauser = pendingPauser; } function setPause(bool _state) external { require(msg.sender == pauser, "PairFactory: not a pauser"); isPaused = _state; } function setFeeManager(address _feeManager) external { require(msg.sender == feeManager, "not fee manager"); pendingFeeManager = _feeManager; } function acceptFeeManager() external { require(msg.sender == pendingFeeManager, "not pending fee manager"); feeManager = pendingFeeManager; } function setFee(bool _stable, uint256 _fee) external { require(msg.sender == feeManager, "not fee manager"); require(_fee <= MAX_FEE_NEW, "fee too high"); require(_fee != 0, "fee must be nonzero"); if (_stable) { stableFee = _fee; } else { volatileFee = _fee; } } function setFeesOverrides(address _pair, uint256 _fee) external { require(msg.sender == feeManager, "not fee manager"); require(_fee <= MAX_FEE_NEW, "fee too high"); require(_fee != 0, "fee must be nonzero"); feesOverrides[_pair] = _fee; } function getRealFee(address _pair) public view returns(uint256) { /// to get base fees, call `stableFee()` or `volatileFee()` uint _fo = feesOverrides[ _pair ]; if( _fo > 0 ) { return _fo; } else{ return IPair(_pair).stable() ? stableFee : volatileFee; } } function getFee(bool _stable) public view returns(uint256) { /// This method was changed in v1.3.11 /// This method, when called by an actual Pair contract itself, would return the real fees. /// If simply read, it will show basic fees: stableFee, or the volatileFee. /// Please use the `getRealFees` method instead for your Analytics / Dapps / Usecases! /// If you want to request a flashloan from any Pair, please query `getRealFee` instead. address _c = msg.sender; if(isPair[ _c ]) { uint _fo = feesOverrides[ _c ]; if( _fo > 0 ) { return _fo; } else return _stable ? stableFee : volatileFee; //non-overridden fee is base fee. } else return _stable ? stableFee : volatileFee; //non-pair callers (_c) see base fee. } /* PAST IMPLEMENTAION OF `getFee() FOR FUTURE REFERENCE function getFee(bool _stable) public view returns(uint256) { return _stable ? stableFee : volatileFee; } */ function pairCodeHash() external pure returns (bytes32) { return keccak256(type(Pair).creationCode); } function getInitializable() external view returns (address, address, bool) { return (_temp0, _temp1, _temp); } function createPair(address tokenA, address tokenB, bool stable) external returns (address pair) { require(tokenA != tokenB, "IA"); // Pair: IDENTICAL_ADDRESSES (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), "ZA"); // Pair: ZERO_ADDRESS require(getPair[token0][token1][stable] == address(0), "PE"); // Pair: PAIR_EXISTS - single check is sufficient bytes32 salt = keccak256(abi.encodePacked(token0, token1, stable)); // notice salt includes stable as well, 3 parameters (_temp0, _temp1, _temp) = (token0, token1, stable); Pair newPair = new Pair{salt:salt}(); newPair.initialize(); pair = address(newPair); getPair[token0][token1][stable] = pair; getPair[token1][token0][stable] = pair; // populate mapping in the reverse direction allPairs.push(pair); isPair[pair] = true; emit PairCreated(token0, token1, stable, pair, allPairs.length); } function hotload() external { require(msg.sender == feeManager, "Team MS Only!"); /// v1.3.11 MAX_FEE_NEW = 1337; // 13.37% } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Fees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reserve0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"reserve1","type":"uint256"}],"name":"Sync","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockTimestampLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimFees","outputs":[{"internalType":"uint256","name":"claimed0","type":"uint256"},{"internalType":"uint256","name":"claimed1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimable0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimable1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"}],"name":"current","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentCumulativePrices","outputs":[{"internalType":"uint256","name":"reserve0Cumulative","type":"uint256"},{"internalType":"uint256","name":"reserve1Cumulative","type":"uint256"},{"internalType":"uint256","name":"blockTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fees","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"tokenIn","type":"address"}],"name":"getAmountOut","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint256","name":"_reserve0","type":"uint256"},{"internalType":"uint256","name":"_reserve1","type":"uint256"},{"internalType":"uint256","name":"_blockTimestampLast","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"index0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"index1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastObservation","outputs":[{"components":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"reserve0Cumulative","type":"uint256"},{"internalType":"uint256","name":"reserve1Cumulative","type":"uint256"}],"internalType":"struct Pair.Observation","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadata","outputs":[{"internalType":"uint256","name":"dec0","type":"uint256"},{"internalType":"uint256","name":"dec1","type":"uint256"},{"internalType":"uint256","name":"r0","type":"uint256"},{"internalType":"uint256","name":"r1","type":"uint256"},{"internalType":"bool","name":"st","type":"bool"},{"internalType":"address","name":"t0","type":"address"},{"internalType":"address","name":"t1","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"observationLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"observations","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"reserve0Cumulative","type":"uint256"},{"internalType":"uint256","name":"reserve1Cumulative","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"points","type":"uint256"}],"name":"prices","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"granularity","type":"uint256"}],"name":"quote","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserve0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserve0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserve1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserve1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"points","type":"uint256"},{"internalType":"uint256","name":"window","type":"uint256"}],"name":"sample","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"supplyIndex0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"supplyIndex1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Out","type":"uint256"},{"internalType":"uint256","name":"amount1Out","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sync","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokens","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061028a5760003560e01c80638129fc1c1161015c578063bda39cad116100ce578063d294f09311610087578063d294f0931461064e578063d505accf14610656578063dd62ed3e14610669578063ebeb31db14610694578063f140a35a1461069c578063fff6cae9146106af57600080fd5b8063bda39cad14610604578063bf944dbc1461060d578063c245febc14610616578063c45a01551461061f578063c5700a0214610632578063d21220a71461063b57600080fd5b80639d63848a116101205780639d63848a146105655780639e8cc04b1461058b5780639f767c881461059e578063a1ac4d13146105be578063a9059cbb146105de578063bc25cf77146105f157600080fd5b80638129fc1c146104f057806389afcb44146104f85780638a7b8cf21461052057806395d89b411461054a5780639af1d35a1461055257600080fd5b8063252c09d711610200578063517b3f82116101b9578063517b3f821461046e5780635881c475146104815780635a76f25e146104945780636a6278421461049d57806370a08231146104b05780637ecebe00146104d057600080fd5b8063252c09d7146103b4578063313ce567146103c757806332c0defd146103e1578063392f37e9146103ea578063443cb4bc146104455780634d5a9f8a1461044e57600080fd5b806313345fe11161025257806313345fe11461033557806318160ddd146103555780631df8c7171461036c578063205aabf11461037457806322be3de11461039457806323b872dd146103a157600080fd5b8063022c0d9f1461028f57806306fdde03146102a45780630902f1ac146102c2578063095ea7b3146102e75780630dfe16811461030a575b600080fd5b6102a261029d366004613705565b6106b7565b005b6102ac610dad565b6040516102b991906137cb565b60405180910390f35b6010546011546012545b604080519384526020840192909252908201526060016102b9565b6102fa6102f53660046137fe565b610e3b565b60405190151581526020016102b9565b60095461031d906001600160a01b031681565b6040516001600160a01b0390911681526020016102b9565b61034861034336600461382a565b610ea8565b6040516102b99190613865565b61035e60045481565b6040519081526020016102b9565b6102cc6110a4565b61035e6103823660046138a9565b60186020526000908152604090205481565b6003546102fa9060ff1681565b6102fa6103af3660046138c6565b611113565b6102cc6103c2366004613907565b6111dc565b6103cf601281565b60405160ff90911681526020016102b9565b61035e60155481565b600e54600f54601054601154600354600954600a5460408051978852602088019690965294860193909352606085019190915260ff16151560808401526001600160a01b0390811660a08401521660c082015260e0016102b9565b61035e60105481565b61035e61045c3660046138a9565b60196020526000908152604090205481565b61035e61047c3660046137fe565b61120f565b61034861048f366004613920565b6112f8565b61035e60115481565b61035e6104ab3660046138a9565b611307565b61035e6104be3660046138a9565b60066020526000908152604090205481565b61035e6104de3660046138a9565b60086020526000908152604090205481565b6102a261156a565b61050b6105063660046138a9565b611e24565b604080519283526020830191909152016102b9565b61052861216a565b60408051825181526020808401519082015291810151908201526060016102b9565b6102ac6121ea565b600b5461031d906001600160a01b031681565b600954600a54604080516001600160a01b039384168152929091166020830152016102b9565b61035e610599366004613920565b6121f7565b61035e6105ac3660046138a9565b60176020526000908152604090205481565b61035e6105cc3660046138a9565b601a6020526000908152604090205481565b6102fa6105ec3660046137fe565b612264565b6102a26105ff3660046138a9565b61227a565b61035e60165481565b61035e60135481565b61035e60145481565b600c5461031d906001600160a01b031681565b61035e60125481565b600a5461031d906001600160a01b031681565b61050b612391565b6102a2610664366004613964565b61249b565b61035e6106773660046139d5565b600560209081526000928352604080842090915290825290205481565b600d5461035e565b61035e6106aa366004613a0e565b6127a3565b6102a261286b565b601b5460ff16156106e35760405162461bcd60e51b81526004016106da90613a33565b60405180910390fd5b601b805460ff19166001179055600c54604080516358c3de9360e11b815290516001600160a01b039092169163b187bd2691600480820192602092909190829003018186803b15801561073557600080fd5b505afa158015610749573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076d9190613a6b565b1561077757600080fd5b60008511806107865750600084115b6107b85760405162461bcd60e51b8152602060048201526003602482015262494f4160e81b60448201526064016106da565b60105460115481871080156107cc57508086105b6107fd5760405162461bcd60e51b8152602060048201526002602482015261125360f21b60448201526064016106da565b600954600a5460009182916001600160a01b0391821691908116908916821480159061083b5750806001600160a01b0316896001600160a01b031614155b61086c5760405162461bcd60e51b8152602060048201526002602482015261125560f21b60448201526064016106da565b8a1561087d5761087d828a8d6129aa565b891561088e5761088e818a8c6129aa565b86156108fb57604051639a7bff7960e01b81526001600160a01b038a1690639a7bff79906108c89033908f908f908e908e90600401613a86565b600060405180830381600087803b1580156108e257600080fd5b505af11580156108f6573d6000803e3d6000fd5b505050505b6040516370a0823160e01b81523060048201526001600160a01b038316906370a082319060240160206040518083038186803b15801561093a57600080fd5b505afa15801561094e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109729190613ad2565b6040516370a0823160e01b81523060048201529094506001600160a01b038216906370a082319060240160206040518083038186803b1580156109b457600080fd5b505afa1580156109c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ec9190613ad2565b92505050600089856109fe9190613b01565b8311610a0b576000610a1f565b610a158a86613b01565b610a1f9084613b01565b90506000610a2d8a86613b01565b8311610a3a576000610a4e565b610a448a86613b01565b610a4e9084613b01565b90506000821180610a5f5750600081115b610a915760405162461bcd60e51b815260206004820152600360248201526249494160e81b60448201526064016106da565b600954600a546001600160a01b0391821691168315610b4f57600c54600354604051632895a2f560e11b815260ff90911615156004820152610b4f91612710916001600160a01b039091169063512b45ea9060240160206040518083038186803b158015610afe57600080fd5b505afa158015610b12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b369190613ad2565b610b409087613b18565b610b4a9190613b37565b612b0d565b8215610bfa57600c54600354604051632895a2f560e11b815260ff90911615156004820152610bfa91612710916001600160a01b039091169063512b45ea9060240160206040518083038186803b158015610ba957600080fd5b505afa158015610bbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be19190613ad2565b610beb9086613b18565b610bf59190613b37565b612bac565b6040516370a0823160e01b81523060048201526001600160a01b038316906370a082319060240160206040518083038186803b158015610c3957600080fd5b505afa158015610c4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c719190613ad2565b6040516370a0823160e01b81523060048201529096506001600160a01b038216906370a082319060240160206040518083038186803b158015610cb357600080fd5b505afa158015610cc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ceb9190613ad2565b9450610cf78888612c44565b610d018787612c44565b1015610d335760405162461bcd60e51b81526020600482015260016024820152604b60f81b60448201526064016106da565b5050610d4184848888612d3d565b60408051838152602081018390529081018c9052606081018b90526001600160a01b038a169033907fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229060800160405180910390a35050601b805460ff19169055505050505050505050565b60018054610dba90613b59565b80601f0160208091040260200160405190810160405280929190818152602001828054610de690613b59565b8015610e335780601f10610e0857610100808354040283529160200191610e33565b820191906000526020600020905b815481529060010190602001808311610e1657829003601f168201915b505050505081565b3360008181526005602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610e969086815260200190565b60405180910390a35060015b92915050565b606060008367ffffffffffffffff811115610ec557610ec5613b8e565b604051908082528060200260200182016040528015610eee578160200160208202803683370190505b50600d54909150600090610f0490600190613b01565b90506000610f128587613b18565b610f1c9083613b01565b90506000805b8383101561109457610f348784613ba4565b91506000600d8481548110610f4b57610f4b613bbc565b906000526020600020906003020160000154600d8481548110610f7057610f70613bbc565b906000526020600020906003020160000154610f8c9190613b01565b9050600081600d8681548110610fa457610fa4613bbc565b906000526020600020906003020160010154600d8681548110610fc957610fc9613bbc565b906000526020600020906003020160010154610fe59190613b01565b610fef9190613b37565b9050600082600d878154811061100757611007613bbc565b906000526020600020906003020160020154600d878154811061102c5761102c613bbc565b9060005260206000209060030201600201546110489190613b01565b6110529190613b37565b90506110608c8e8484612ed1565b88858151811061107257611072613bbc565b602090810291909101015250505060010161108d8784613ba4565b9250610f22565b509293505050505b949350505050565b60135460145442600080806110c26010546011546012549192909190565b92509250925083811461110b5760006110db8286613b01565b90506110e78185613b18565b6110f19088613ba4565b96506110fd8184613b18565b6111079087613ba4565b9550505b505050909192565b6001600160a01b03831660008181526005602090815260408083203380855292528220549192909190821480159061114d57506000198114155b156111c357600061115e8583613b01565b6001600160a01b038881166000818152600560209081526040808320948916808452948252918290208590559051848152939450919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505b6111ce868686613072565b6001925050505b9392505050565b600d81815481106111ec57600080fd5b600091825260209091206003909102018054600182015460029092015490925083565b60008061121a61216a565b90506000806112276110a4565b508451919350915042141561129057600d805461124690600290613b01565b8154811061125657611256613bbc565b9060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505092505b825160009061129f9042613b01565b90506000818560200151856112b49190613b01565b6112be9190613b37565b90506000828660400151856112d39190613b01565b6112dd9190613b37565b90506112eb888a8484612ed1565b9998505050505050505050565b606061109c8484846001610ea8565b601b5460009060ff161561132d5760405162461bcd60e51b81526004016106da90613a33565b601b805460ff191660011790556010546011546009546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561138457600080fd5b505afa158015611398573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113bc9190613ad2565b600a546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a082319060240160206040518083038186803b15801561140557600080fd5b505afa158015611419573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143d9190613ad2565b9050600061144b8584613b01565b905060006114598584613b01565b60045490915080611497576103e86114796114748486613b18565b613132565b6114839190613b01565b975061149260006103e86131a2565b6114cc565b6114c9876114a58386613b18565b6114af9190613b37565b876114ba8486613b18565b6114c49190613b37565b613235565b97505b600088116115025760405162461bcd60e51b8152602060048201526003602482015262494c4d60e81b60448201526064016106da565b61150c89896131a2565b61151885858989612d3d565b604080518481526020810184905233917f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f910160405180910390a25050601b805460ff19169055509395945050505050565b600054610100900460ff161580801561158a5750600054600160ff909116105b806115a45750303b1580156115a4575060005460ff166001145b6116075760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016106da565b6000805460ff19166001179055801561162a576000805461ff0019166101001790555b600c80546001600160a01b031916339081179091556040805163eb13c4cf60e01b815290516000928392839263eb13c4cf91600480820192606092909190829003018186803b15801561167c57600080fd5b505afa158015611690573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b49190613bd2565b6003805482151560ff19909116179055600a80546001600160a01b038085166001600160a01b0319928316179092556009805492861692909116919091179055604051929550909350915060009061170b9061364a565b604051809103906000f080158015611727573d6000803e3d6000fd5b5060405163485cc95560e01b81526001600160a01b03868116600483015285811660248301529192509082169063485cc95590604401600060405180830381600087803b15801561177757600080fd5b505af115801561178b573d6000803e3d6000fd5b5050600b80546001600160a01b0319166001600160a01b038516179055505081156119f557836001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156117e957600080fd5b505afa1580156117fd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118259190810190613c1a565b836001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b15801561185e57600080fd5b505afa158015611872573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261189a9190810190613c1a565b6040516020016118ab929190613cc7565b604051602081830303815290604052600190805190602001906118cf929190613657565b50836001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b15801561190957600080fd5b505afa15801561191d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526119459190810190613c1a565b836001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b15801561197e57600080fd5b505afa158015611992573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526119ba9190810190613c1a565b6040516020016119cb929190613d1e565b604051602081830303815290604052600290805190602001906119ef929190613657565b50611c36565b836001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b158015611a2e57600080fd5b505afa158015611a42573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a6a9190810190613c1a565b836001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b158015611aa357600080fd5b505afa158015611ab7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611adf9190810190613c1a565b604051602001611af0929190613d6b565b60405160208183030381529060405260019080519060200190611b14929190613657565b50836001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b158015611b4e57600080fd5b505afa158015611b62573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b8a9190810190613c1a565b836001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b158015611bc357600080fd5b505afa158015611bd7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bff9190810190613c1a565b604051602001611c10929190613dc4565b60405160208183030381529060405260029080519060200190611c34929190613657565b505b836001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015611c6f57600080fd5b505afa158015611c83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca79190613de4565b611cb290600a613ee5565b600e81905550826001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015611cf157600080fd5b505afa158015611d05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d299190613de4565b611d3490600a613ee5565b600f55505060408051606081018252428152600060208201818152928201818152600d8054600181018255925291517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb560039092029182015591517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb6830155517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb79091015550508015611e21576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50565b601b54600090819060ff1615611e4c5760405162461bcd60e51b81526004016106da90613a33565b601b805460ff19166001179055601054601154600954600a546040516370a0823160e01b81523060048201526001600160a01b03928316929091169060009083906370a082319060240160206040518083038186803b158015611eae57600080fd5b505afa158015611ec2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ee69190613ad2565b6040516370a0823160e01b81523060048201529091506000906001600160a01b038416906370a082319060240160206040518083038186803b158015611f2b57600080fd5b505afa158015611f3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f639190613ad2565b306000908152600660205260409020546004549192509080611f858584613b18565b611f8f9190613b37565b995080611f9c8484613b18565b611fa69190613b37565b985060008a118015611fb85750600089115b611fea5760405162461bcd60e51b815260206004820152600360248201526224a62160e91b60448201526064016106da565b611ff4308361324b565b611fff868c8c6129aa565b61200a858c8b6129aa565b6040516370a0823160e01b81523060048201526001600160a01b038716906370a082319060240160206040518083038186803b15801561204957600080fd5b505afa15801561205d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120819190613ad2565b6040516370a0823160e01b81523060048201529094506001600160a01b038616906370a082319060240160206040518083038186803b1580156120c357600080fd5b505afa1580156120d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120fb9190613ad2565b925061210984848a8a612d3d565b604080518b8152602081018b90526001600160a01b038d169133917fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496910160405180910390a35050601b805460ff1916905550959794965093945050505050565b61218e60405180606001604052806000815260200160008152602001600081525090565b600d805461219e90600190613b01565b815481106121ae576121ae613bbc565b90600052602060002090600302016040518060600160405290816000820154815260200160018201548152602001600282015481525050905090565b60028054610dba90613b59565b6000806122078585856001610ea8565b90506000805b825181101561224f5782818151811061222857612228613bbc565b60200260200101518261223b9190613ba4565b91508061224781613ef4565b91505061220d565b5061225a8482613b37565b9695505050505050565b6000612271338484613072565b50600192915050565b601b5460ff161561229d5760405162461bcd60e51b81526004016106da90613a33565b601b805460ff19166001179055600954600a546010546040516370a0823160e01b81523060048201526001600160a01b03938416939092169161234a91849186919083906370a08231906024015b60206040518083038186803b15801561230357600080fd5b505afa158015612317573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061233b9190613ad2565b6123459190613b01565b6129aa565b6011546040516370a0823160e01b81523060048201526123829183918691906001600160a01b038416906370a08231906024016122eb565b5050601b805460ff1916905550565b60008061239d336132d6565b505033600090815260196020908152604080832054601a90925290912054811515806123c95750600081115b1561249757336000818152601960209081526040808320839055601a90915280822091909155600b54905163299e7ae760e11b8152600481019290925260248201849052604482018390526001600160a01b03169063533cf5ce90606401600060405180830381600087803b15801561244157600080fd5b505af1158015612455573d6000803e3d6000fd5b505060408051858152602081018590523393508392507f865ca08d59f5cb456e85cd2f7ef63664ea4f73327414e9d8152c4158b0e94645910160405180910390a35b9091565b428410156124db5760405162461bcd60e51b815260206004820152600d60248201526c14185a5c8e8811561412549151609a1b60448201526064016106da565b7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f600160405161250b9190613f0f565b60408051918290038220828201825260018352603160f81b6020938401528151928301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160408051601f19818403018152918152815160209283012060078190556001600160a01b038a166000908152600890935290822080547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918b918b918b9190876125d683613ef4565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810187905260e0016040516020818303038152906040528051906020012060405160200161264f92919061190160f01b81526002810192909252602282015260420190565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa1580156126ba573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906126f05750886001600160a01b0316816001600160a01b0316145b61273c5760405162461bcd60e51b815260206004820152601760248201527f506169723a20494e56414c49445f5349474e415455524500000000000000000060448201526064016106da565b6001600160a01b038981166000818152600560209081526040808320948d16808452948252918290208b905590518a81527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050505050505050565b601054601154600c54600354604051632895a2f560e11b815260ff909116151560048201526000939291612710916001600160a01b039091169063512b45ea9060240160206040518083038186803b1580156127fe57600080fd5b505afa158015612812573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128369190613ad2565b6128409087613b18565b61284a9190613b37565b6128549086613b01565b945061286285858484612ed1565b95945050505050565b601b5460ff161561288e5760405162461bcd60e51b81526004016106da90613a33565b601b805460ff191660011790556009546040516370a0823160e01b815230600482015261299e916001600160a01b0316906370a082319060240160206040518083038186803b1580156128e057600080fd5b505afa1580156128f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129189190613ad2565b600a546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561295b57600080fd5b505afa15801561296f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129939190613ad2565b601054601154612d3d565b601b805460ff19169055565b6000836001600160a01b03163b116129fa5760405162461bcd60e51b81526020600482015260136024820152722830b4b91d1034b73b30b634b2103a37b5b2b760691b60448201526064016106da565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1790529151600092839290871691612a569190613fab565b6000604051808303816000865af19150503d8060008114612a93576040519150601f19603f3d011682016040523d82523d6000602084013e612a98565b606091505b5091509150818015612ac2575080511580612ac2575080806020019051810190612ac29190613a6b565b612b065760405162461bcd60e51b815260206004820152601560248201527414185a5c8e881d1c985b9cd9995c8819985a5b1959605a1b60448201526064016106da565b5050505050565b600954600b54612b2a916001600160a01b039081169116836129aa565b600454600090612b4283670de0b6b3a7640000613b18565b612b4c9190613b37565b90508015612b6c578060156000828254612b669190613ba4565b90915550505b604080518381526000602082015233917f112c256902bf554b6ed882d2936687aaeb4225e8cd5b51303c90ca6cf43a860291015b60405180910390a25050565b600a54600b54612bc9916001600160a01b039081169116836129aa565b600454600090612be183670de0b6b3a7640000613b18565b612beb9190613b37565b90508015612c0b578060166000828254612c059190613ba4565b90915550505b60408051600081526020810184905233917f112c256902bf554b6ed882d2936687aaeb4225e8cd5b51303c90ca6cf43a86029101612ba0565b60035460009060ff1615612d2c57600e54600090612c6a85670de0b6b3a7640000613b18565b612c749190613b37565b90506000600f5484670de0b6b3a7640000612c8f9190613b18565b612c999190613b37565b90506000670de0b6b3a7640000612cb08385613b18565b612cba9190613b37565b90506000670de0b6b3a7640000612cd18480613b18565b612cdb9190613b37565b670de0b6b3a7640000612cee8680613b18565b612cf89190613b37565b612d029190613ba4565b9050670de0b6b3a7640000612d178284613b18565b612d219190613b37565b945050505050610ea2565b612d368284613b18565b9050610ea2565b6012544290600090612d4f9083613b01565b9050600081118015612d6057508315155b8015612d6b57508215155b15612db257612d7a8185613b18565b60136000828254612d8b9190613ba4565b90915550612d9b90508184613b18565b60146000828254612dac9190613ba4565b90915550505b6000612dbc61216a565b8051909150612dcb9084613b01565b9150610708821115612e80576040805160608101825284815260135460208201908152601454928201928352600d805460018101825560009190915291517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb5600390930292830155517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb682015590517fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb7909101555b60108790556011869055601283905560408051888152602081018890527fcf2aa50876cdfbb541206f89af0ee78d44a2abf8d328e37fa4917f982149848a910160405180910390a150505050505050565b60035460009060ff1615613022576000612eeb8484612c44565b600e54909150612f0385670de0b6b3a7640000613b18565b612f0d9190613b37565b600f54909450612f2584670de0b6b3a7640000613b18565b612f2f9190613b37565b60095490935060009081906001600160a01b03888116911614612f53578486612f56565b85855b60095491935091506001600160a01b03888116911614612f9457600f54612f8589670de0b6b3a7640000613b18565b612f8f9190613b37565b612fb3565b600e54612fa989670de0b6b3a7640000613b18565b612fb39190613b37565b97506000612fcb612fc4848b613ba4565b8584613436565b612fd59083613b01565b600954909150670de0b6b3a7640000906001600160a01b038a8116911614612fff57600e54613003565b600f545b61300d9083613b18565b6130179190613b37565b94505050505061109c565b60095460009081906001600160a01b03878116911614613043578385613046565b84845b90925090506130558783613ba4565b61305f8289613b18565b6130699190613b37565b9250505061109c565b61307b836132d6565b613084826132d6565b6001600160a01b038316600090815260066020526040812080548392906130ac908490613b01565b90915550506001600160a01b038216600090815260066020526040812080548392906130d9908490613ba4565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161312591815260200190565b60405180910390a3505050565b60006003821115613193575080600061314c600283613b37565b613157906001613ba4565b90505b8181101561318d579050806002816131728186613b37565b61317c9190613ba4565b6131869190613b37565b905061315a565b50919050565b811561319d575060015b919050565b6131ab826132d6565b80600460008282546131bd9190613ba4565b90915550506001600160a01b038216600090815260066020526040812080548392906131ea908490613ba4565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b600081831061324457816111d5565b5090919050565b613254826132d6565b80600460008282546132669190613b01565b90915550506001600160a01b03821660009081526006602052604081208054839290613293908490613b01565b90915550506040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001613229565b6001600160a01b0381166000908152600660205260409020548015613404576001600160a01b03821660009081526017602090815260408083208054601880855292852080546015546016549481905594909552829055936133388584613b01565b905060006133468584613b01565b905081156133a1576000670de0b6b3a7640000613363848a613b18565b61336d9190613b37565b6001600160a01b038a1660009081526019602052604081208054929350839290919061339a908490613ba4565b9091555050505b80156133fa576000670de0b6b3a76400006133bc838a613b18565b6133c69190613b37565b6001600160a01b038a166000908152601a60205260408120805492935083929091906133f3908490613ba4565b9091555050505b5050505050505050565b6015546001600160a01b0383166000908152601760209081526040808320939093556016546018909152919020555050565b6000805b60ff81101561353c578260006134508783613545565b9050858110156134a057600061346688876135e2565b6134708389613b01565b61348290670de0b6b3a7640000613b18565b61348c9190613b37565b90506134988187613ba4565b9550506134e2565b60006134ac88876135e2565b6134b68884613b01565b6134c890670de0b6b3a7640000613b18565b6134d29190613b37565b90506134de8187613b01565b9550505b8185111561350b5760016134f68387613b01565b11613506578493505050506111d5565b613527565b60016135178684613b01565b11613527578493505050506111d5565b5050808061353490613ef4565b91505061343a565b50909392505050565b6000670de0b6b3a76400008281858161355e8280613b18565b6135689190613b37565b6135729190613b18565b61357c9190613b37565b6135869190613b18565b6135909190613b37565b670de0b6b3a76400008084816135a68280613b18565b6135b09190613b37565b6135ba9190613b18565b6135c49190613b37565b6135ce9086613b18565b6135d89190613b37565b6111d59190613ba4565b6000670de0b6b3a764000083816135f98280613b18565b6136039190613b37565b61360d9190613b18565b6136179190613b37565b670de0b6b3a76400008061362b8580613b18565b6136359190613b37565b613640866003613b18565b6135ce9190613b18565b61050580613fc883390190565b82805461366390613b59565b90600052602060002090601f01602090048101928261368557600085556136cb565b82601f1061369e57805160ff19168380011785556136cb565b828001600101855582156136cb579182015b828111156136cb5782518255916020019190600101906136b0565b506136d79291506136db565b5090565b5b808211156136d757600081556001016136dc565b6001600160a01b0381168114611e2157600080fd5b60008060008060006080868803121561371d57600080fd5b85359450602086013593506040860135613736816136f0565b9250606086013567ffffffffffffffff8082111561375357600080fd5b818801915088601f83011261376757600080fd5b81358181111561377657600080fd5b89602082850101111561378857600080fd5b9699959850939650602001949392505050565b60005b838110156137b657818101518382015260200161379e565b838111156137c5576000848401525b50505050565b60208152600082518060208401526137ea81604085016020870161379b565b601f01601f19169190910160400192915050565b6000806040838503121561381157600080fd5b823561381c816136f0565b946020939093013593505050565b6000806000806080858703121561384057600080fd5b843561384b816136f0565b966020860135965060408601359560600135945092505050565b6020808252825182820181905260009190848201906040850190845b8181101561389d57835183529284019291840191600101613881565b50909695505050505050565b6000602082840312156138bb57600080fd5b81356111d5816136f0565b6000806000606084860312156138db57600080fd5b83356138e6816136f0565b925060208401356138f6816136f0565b929592945050506040919091013590565b60006020828403121561391957600080fd5b5035919050565b60008060006060848603121561393557600080fd5b8335613940816136f0565b95602085013595506040909401359392505050565b60ff81168114611e2157600080fd5b600080600080600080600060e0888a03121561397f57600080fd5b873561398a816136f0565b9650602088013561399a816136f0565b9550604088013594506060880135935060808801356139b881613955565b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156139e857600080fd5b82356139f3816136f0565b91506020830135613a03816136f0565b809150509250929050565b60008060408385031215613a2157600080fd5b823591506020830135613a03816136f0565b6020808252600e908201526d4e6f2072652d656e7472616e637960901b604082015260600190565b8051801515811461319d57600080fd5b600060208284031215613a7d57600080fd5b6111d582613a5b565b60018060a01b038616815284602082015283604082015260806060820152816080820152818360a0830137600081830160a090810191909152601f909201601f19160101949350505050565b600060208284031215613ae457600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600082821015613b1357613b13613aeb565b500390565b6000816000190483118215151615613b3257613b32613aeb565b500290565b600082613b5457634e487b7160e01b600052601260045260246000fd5b500490565b600181811c90821680613b6d57607f821691505b6020821081141561318d57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60008219821115613bb757613bb7613aeb565b500190565b634e487b7160e01b600052603260045260246000fd5b600080600060608486031215613be757600080fd5b8351613bf2816136f0565b6020850151909350613c03816136f0565b9150613c1160408501613a5b565b90509250925092565b600060208284031215613c2c57600080fd5b815167ffffffffffffffff80821115613c4457600080fd5b818401915084601f830112613c5857600080fd5b815181811115613c6a57613c6a613b8e565b604051601f8201601f19908116603f01168101908382118183101715613c9257613c92613b8e565b81604052828152876020848701011115613cab57600080fd5b613cbc83602083016020880161379b565b979650505050505050565b6e029ba30b13632ab189020a6a690169608d1b815260008351613cf181600f85016020880161379b565b602f60f81b600f918401918201528351613d1281601084016020880161379b565b01601001949350505050565b6473414d4d2d60d81b815260008351613d3e81600585016020880161379b565b602f60f81b6005918401918201528351613d5f81600684016020880161379b565b01600601949350505050565b7002b37b630ba34b632ab189020a6a690169607d1b815260008351613d9781601185016020880161379b565b602f60f81b6011918401918201528351613db881601284016020880161379b565b01601201949350505050565b6476414d4d2d60d81b815260008351613d3e81600585016020880161379b565b600060208284031215613df657600080fd5b81516111d581613955565b600181815b80851115613e3c578160001904821115613e2257613e22613aeb565b80851615613e2f57918102915b93841c9390800290613e06565b509250929050565b600082613e5357506001610ea2565b81613e6057506000610ea2565b8160018114613e765760028114613e8057613e9c565b6001915050610ea2565b60ff841115613e9157613e91613aeb565b50506001821b610ea2565b5060208310610133831016604e8410600b8410161715613ebf575081810a610ea2565b613ec98383613e01565b8060001904821115613edd57613edd613aeb565b029392505050565b60006111d560ff841683613e44565b6000600019821415613f0857613f08613aeb565b5060010190565b600080835481600182811c915080831680613f2b57607f831692505b6020808410821415613f4b57634e487b7160e01b86526022600452602486fd5b818015613f5f5760018114613f7057613f9d565b60ff19861689528489019650613f9d565b60008a81526020902060005b86811015613f955781548b820152908501908301613f7c565b505084890196505b509498975050505050505050565b60008251613fbd81846020870161379b565b919091019291505056fe608060405234801561001057600080fd5b506104e5806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063485cc9551461003b578063533cf5ce14610050575b600080fd5b61004e6100493660046103e5565b610063565b005b61004e61005e366004610418565b6101be565b600054610100900460ff16158080156100835750600054600160ff909116105b8061009d5750303b15801561009d575060005460ff166001145b6101055760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b6000805460ff191660011790558015610128576000805461ff0019166101001790555b6000805462010000330262010000600160b01b0319909116179055600180546001600160a01b038581166001600160a01b031992831617909255600280549285169290911691909117905580156101b9576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050565b6000546201000090046001600160a01b0316331461021e5760405162461bcd60e51b815260206004820152601b60248201527f4f6e6c79207061697220636f6e74726163742063616e2063616c6c000000000060448201526064016100fc565b811561023b5760015461023b906001600160a01b03168484610254565b80156101b9576002546101b9906001600160a01b031684835b6000836001600160a01b03163b116102ae5760405162461bcd60e51b815260206004820152601760248201527f50616972466565733a20696e76616c696420746f6b656e00000000000000000060448201526064016100fc565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b179052915160009283929087169161030a919061044b565b6000604051808303816000865af19150503d8060008114610347576040519150601f19603f3d011682016040523d82523d6000602084013e61034c565b606091505b50915091508180156103765750805115806103765750808060200190518101906103769190610486565b6103c25760405162461bcd60e51b815260206004820152601960248201527f50616972466565733a207472616e73666572206661696c65640000000000000060448201526064016100fc565b5050505050565b80356001600160a01b03811681146103e057600080fd5b919050565b600080604083850312156103f857600080fd5b610401836103c9565b915061040f602084016103c9565b90509250929050565b60008060006060848603121561042d57600080fd5b610436846103c9565b95602085013595506040909401359392505050565b6000825160005b8181101561046c5760208186018101518583015201610452565b8181111561047b576000828501525b509190910192915050565b60006020828403121561049857600080fd5b815180151581146104a857600080fd5b939250505056fea2646970667358221220f418eda26197df009488985cfee3fcd1f0ab7a2753b961a0e7e7f93a48dc6a9364736f6c63430008090033a2646970667358221220e6211848c01219b2b1b74a53c3ead789ccb2ff653ffb0edecc38482d0fd1b44c64736f6c63430008090033
Deployed Bytecode Sourcemap
18496:23916:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33601:2500;;;;;;:::i;:::-;;:::i;:::-;;18536:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26089:223;26214:8;;26245;;26286:18;;26089:223;;;;1871:25:1;;;1927:2;1912:18;;1905:34;;;;1955:18;;;1948:34;1859:2;1844:18;26089:223:0;1669:319:1;39764:206:0;;;;;;:::i;:::-;;:::i;:::-;;;2478:14:1;;2471:22;2453:41;;2441:2;2426:18;39764:206:0;2313:187:1;19347:21:0;;;;;-1:-1:-1;;;;;19347:21:0;;;;;;-1:-1:-1;;;;;2669:32:1;;;2651:51;;2639:2;2624:18;19347:21:0;2505:203:1;29814:1001:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18818:26::-;;;;;;;;;3953:25:1;;;3941:2;3926:18;18818:26:0;3807:177:1;27480:777:0;;;:::i;20458:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;18791:18;;;;;;;;;41207:511;;;;;;:::i;:::-;;:::i;19770:33::-;;;;;;:::i;:::-;;:::i;18588:35::-;;18621:2;18588:35;;;;;5059:4:1;5047:17;;;5029:36;;5017:2;5002:18;18588:35:0;4887:184:1;20256:18:0;;;;;;22974:208;23109:9;;23120;;23131:8;;23141;;23151:6;;23159;;23167;;22974:208;;;5385:25:1;;;5441:2;5426:18;;5419:34;;;;5469:18;;;5462:34;;;;5527:2;5512:18;;5505:34;;;;23151:6:0;;5583:14:1;5576:22;5570:3;5555:19;;5548:51;-1:-1:-1;;;;;23159:6:0;;;5626:3:1;5653:19;;5646:44;23167:6:0;5721:3:1;5706:19;;5699:44;5372:3;5357:19;22974:208:0;5076:673:1;19874:20:0;;;;;;20606:42;;;;;;:::i;:::-;;;;;;;;;;;;;;28357:723;;;;;;:::i;:::-;;:::i;29645:161::-;;;;;;:::i;:::-;;:::i;19901:20::-;;;;;;31021:1072;;;;;;:::i;:::-;;:::i;18922:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;19240:38;;;;;;:::i;:::-;;;;;;;;;;;;;;21637:1081;;;:::i;32274:1209::-;;;;;;:::i;:::-;;:::i;:::-;;;;6316:25:1;;;6372:2;6357:18;;6350:34;;;;6289:18;32274:1209:0;6142:248:1;22837:129:0;;;:::i;:::-;;;;6615:13:1;;6597:32;;6685:4;6673:17;;;6667:24;6645:20;;;6638:54;6736:17;;;6730:24;6708:20;;;6701:54;6585:2;6570:18;22837:129:0;6395:366:1;18561:20:0;;;:::i;19403:19::-;;;;;-1:-1:-1;;;;;19403:19:0;;;23190:101;23268:6;;23276;;23190:101;;;-1:-1:-1;;;;;23268:6:0;;;6978:34:1;;23276:6:0;;;;7043:2:1;7028:18;;7021:43;6913:18;23190:101:0;6766:304:1;29191:396:0;;;;;;:::i;:::-;;:::i;20407:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;20655:42;;;;;;:::i;:::-;;;;;;;;;;;;;;41050:149;;;;;;:::i;:::-;;:::i;36156:296::-;;;;;;:::i;:::-;;:::i;20281:18::-;;;;;;19967:34;;;;;;20008;;;;;;19429:22;;;;;-1:-1:-1;;;;;19429:22:0;;;19928:30;;;;;;19375:21;;;;;-1:-1:-1;;;;;19375:21:0;;;23391:487;;;:::i;39978:1064::-;;;;;;:::i;:::-;;:::i;18853:62::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;22726:103;22802:12;:19;22726:103;;37647:342;;;;;;:::i;:::-;;:::i;36507:158::-;;;:::i;33601:2500::-;21532:7;;;;21531:8;21523:35;;;;-1:-1:-1;;;21523:35:0;;;;;;;:::i;:::-;;;;;;;;;21569:7;:14;;-1:-1:-1;;21569:14:0;21579:4;21569:14;;;33729:7:::1;::::0;33716:32:::1;::::0;;-1:-1:-1;;;33716:32:0;;;;-1:-1:-1;;;;;33729:7:0;;::::1;::::0;33716:30:::1;::::0;:32:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;33729:7;33716:32;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33715:33;33707:42;;;::::0;::::1;;33781:1;33768:10;:14;:32;;;;33799:1;33786:10;:14;33768:32;33760:48;;;::::0;-1:-1:-1;;;33760:48:0;;9634:2:1;33760:48:0::1;::::0;::::1;9616:21:1::0;9673:1;9653:18;;;9646:29;-1:-1:-1;;;9691:18:1;;;9684:33;9734:18;;33760:48:0::1;9432:326:1::0;33760:48:0::1;33892:8;::::0;33902::::1;::::0;33930:22;;::::1;:48:::0;::::1;;;;33969:9;33956:10;:22;33930:48;33922:63;;;::::0;-1:-1:-1;;;33922:63:0;;9965:2:1;33922:63:0::1;::::0;::::1;9947:21:1::0;10004:1;9984:18;;;9977:29;-1:-1:-1;;;10022:18:1;;;10015:32;10064:18;;33922:63:0::1;9763:325:1::0;33922:63:0::1;34184:6;::::0;34192::::1;::::0;34030:14:::1;::::0;;;-1:-1:-1;;;;;34184:6:0;;::::1;::::0;34192;;::::1;::::0;34218:13;::::1;::::0;::::1;::::0;::::1;::::0;:30:::1;;;34241:7;-1:-1:-1::0;;;;;34235:13:0::1;:2;-1:-1:-1::0;;;;;34235:13:0::1;;;34218:30;34210:45;;;::::0;-1:-1:-1;;;34210:45:0;;10295:2:1;34210:45:0::1;::::0;::::1;10277:21:1::0;10334:1;10314:18;;;10307:29;-1:-1:-1;;;10352:18:1;;;10345:32;10394:18;;34210:45:0::1;10093:325:1::0;34210:45:0::1;34290:14:::0;;34286:58:::1;;34306:38;34320:7;34329:2;34333:10;34306:13;:38::i;:::-;34393:14:::0;;34389:58:::1;;34409:38;34423:7;34432:2;34436:10;34409:13;:38::i;:::-;34496:15:::0;;34492:83:::1;;34513:62;::::0;-1:-1:-1;;;34513:62:0;;-1:-1:-1;;;;;34513:20:0;::::1;::::0;::::1;::::0;:62:::1;::::0;34534:10:::1;::::0;34546;;34558;;34570:4;;;;34513:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;34492:83;34632:40;::::0;-1:-1:-1;;;34632:40:0;;34666:4:::1;34632:40;::::0;::::1;2651:51:1::0;-1:-1:-1;;;;;34632:25:0;::::1;::::0;::::1;::::0;2624:18:1;;34632:40:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34695;::::0;-1:-1:-1;;;34695:40:0;;34729:4:::1;34695:40;::::0;::::1;2651:51:1::0;34620:52:0;;-1:-1:-1;;;;;;34695:25:0;::::1;::::0;::::1;::::0;2624:18:1;;34695:40:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34683:52;;34080:667;;34757:14;34798:10;34786:9;:22;;;;:::i;:::-;34774:9;:34;:77;;34850:1;34774:77;;;34824:22;34836:10:::0;34824:9;:22:::1;:::i;:::-;34811:36;::::0;:9;:36:::1;:::i;:::-;34757:94:::0;-1:-1:-1;34862:14:0::1;34891:22;34903:10:::0;34891:9;:22:::1;:::i;:::-;34879:9;:34;:77;;34955:1;34879:77;;;34929:22;34941:10:::0;34929:9;:22:::1;:::i;:::-;34916:36;::::0;:9;:36:::1;:::i;:::-;34862:94;;34987:1;34975:9;:13;:30;;;;35004:1;34992:9;:13;34975:30;34967:46;;;::::0;-1:-1:-1;;;34967:46:0;;11713:2:1;34967:46:0::1;::::0;::::1;11695:21:1::0;11752:1;11732:18;;;11725:29;-1:-1:-1;;;11770:18:1;;;11763:33;11813:18;;34967:46:0::1;11511:326:1::0;34967:46:0::1;35172:6;::::0;35180::::1;::::0;-1:-1:-1;;;;;35172:6:0;;::::1;::::0;35180::::1;35202:13:::0;;35198:85:::1;;35251:7;::::0;35267:6:::1;::::0;35238:36:::1;::::0;-1:-1:-1;;;35238:36:0;;35267:6:::1;::::0;;::::1;2478:14:1::0;2471:22;35238:36:0::1;::::0;::::1;2453:41:1::0;35217:66:0::1;::::0;35277:5:::1;::::0;-1:-1:-1;;;;;35251:7:0;;::::1;::::0;35238:28:::1;::::0;2426:18:1;;35238:36:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35226:48;::::0;:9;:48:::1;:::i;:::-;:56;;;;:::i;:::-;35217:8;:66::i;:::-;35350:13:::0;;35346:85:::1;;35399:7;::::0;35415:6:::1;::::0;35386:36:::1;::::0;-1:-1:-1;;;35386:36:0;;35415:6:::1;::::0;;::::1;2478:14:1::0;2471:22;35386:36:0::1;::::0;::::1;2453:41:1::0;35365:66:0::1;::::0;35425:5:::1;::::0;-1:-1:-1;;;;;35399:7:0;;::::1;::::0;35386:28:::1;::::0;2426:18:1;;35386:36:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35374:48;::::0;:9;:48:::1;:::i;:::-;:56;;;;:::i;:::-;35365:8;:66::i;:::-;35506:40;::::0;-1:-1:-1;;;35506:40:0;;35540:4:::1;35506:40;::::0;::::1;2651:51:1::0;-1:-1:-1;;;;;35506:25:0;::::1;::::0;::::1;::::0;2624:18:1;;35506:40:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35726;::::0;-1:-1:-1;;;35726:40:0;;35760:4:::1;35726:40;::::0;::::1;2651:51:1::0;35494:52:0;;-1:-1:-1;;;;;;35726:25:0;::::1;::::0;::::1;::::0;2624:18:1;;35726:40:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35714:52;;35895:24;35898:9;35909;35895:2;:24::i;:::-;35867;35870:9;35881;35867:2;:24::i;:::-;:52;;35859:66;;;::::0;-1:-1:-1;;;35859:66:0;;12439:2:1;35859:66:0::1;::::0;::::1;12421:21:1::0;12478:1;12458:18;;;12451:29;-1:-1:-1;;;12496:18:1;;;12489:31;12537:18;;35859:66:0::1;12237:324:1::0;35859:66:0::1;35059:889;;35960:51;35968:9;35979;35990;36001;35960:7;:51::i;:::-;36027:66;::::0;;12797:25:1;;;12853:2;12838:18;;12831:34;;;12881:18;;;12874:34;;;12939:2;12924:18;;12917:34;;;-1:-1:-1;;;;;36027:66:0;::::1;::::0;36032:10:::1;::::0;36027:66:::1;::::0;12784:3:1;12769:19;36027:66:0::1;;;;;;;-1:-1:-1::0;;21606:7:0;:15;;-1:-1:-1;;21606:15:0;;;-1:-1:-1;;;;;;;;;33601:2500:0:o;18536:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39764:206::-;39856:10;39829:4;39846:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;39846:30:0;;;;;;;;;;:39;;;39903:37;39829:4;;39846:30;;39903:37;;;;39879:6;3953:25:1;;3941:2;3926:18;;3807:177;39903:37:0;;;;;;;;-1:-1:-1;39958:4:0;39764:206;;;;;:::o;29814:1001::-;29909:13;29935:21;29970:6;29959:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29959:18:0;-1:-1:-1;30004:12:0;:19;29935:42;;-1:-1:-1;29990:11:0;;30004:21;;30024:1;;30004:21;:::i;:::-;29990:35;-1:-1:-1;30036:6:0;30055:15;30064:6;30055;:15;:::i;:::-;30045:26;;:6;:26;:::i;:::-;30036:35;;30082:14;30111:10;30138:645;30149:6;30145:1;:10;30138:645;;;30195:10;30199:6;30195:1;:10;:::i;:::-;30183:22;;30220:16;30275:12;30288:1;30275:15;;;;;;;;:::i;:::-;;;;;;;;;;;:25;;;30239:12;30252:9;30239:23;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;:61;;;;:::i;:::-;30220:80;;30315:14;30416:11;30378:12;30391:1;30378:15;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;30333:12;30346:9;30333:23;;;;;;;;:::i;:::-;;;;;;;;;;;:42;;;:79;;;;:::i;:::-;30332:95;;;;:::i;:::-;30315:112;;30442:14;30543:11;30505:12;30518:1;30505:15;;;;;;;;:::i;:::-;;;;;;;;;;;:34;;;30460:12;30473:9;30460:23;;;;;;;;:::i;:::-;;;;;;;;;;;:42;;;:79;;;;:::i;:::-;30459:95;;;;:::i;:::-;30442:112;;30586:54;30600:8;30610:7;30619:9;30630;30586:13;:54::i;:::-;30569:7;30577:5;30569:14;;;;;;;;:::i;:::-;;;;;;;;;;:71;-1:-1:-1;;;30755:1:0;30747:9;30157;30160:6;30157:9;;:::i;:::-;;;30138:645;;;-1:-1:-1;30800:7:0;;-1:-1:-1;;;;29814:1001:0;;;;;;;:::o;27480:777::-;27682:22;;27736;;27635:15;27536:23;;;27933:13;26214:8;;26245;;26286:18;;26214:8;;26245;;26286:18;26089:223;27933:13;27872:74;;;;;;27984:14;27961:19;:37;27957:293;;28063:16;28082:36;28099:19;28082:14;:36;:::i;:::-;28063:55;-1:-1:-1;28155:23:0;28063:55;28155:9;:23;:::i;:::-;28133:45;;;;:::i;:::-;;-1:-1:-1;28215:23:0;28227:11;28215:9;:23;:::i;:::-;28193:45;;;;:::i;:::-;;;28000:250;27957:293;27607:650;;;27480:777;;;:::o;41207:511::-;-1:-1:-1;;;;;41366:14:0;;41286:4;41366:14;;;:9;:14;;;;;;;;41321:10;41366:23;;;;;;;;41286:4;;41321:10;;41366:23;41406:14;;;;;:52;;;-1:-1:-1;;41424:16:0;:34;;41406:52;41402:241;;;41475:17;41495:25;41514:6;41495:16;:25;:::i;:::-;-1:-1:-1;;;;;41535:14:0;;;;;;;:9;:14;;;;;;;;:23;;;;;;;;;;;;;:38;;;41595:36;;3953:25:1;;;41535:38:0;;-1:-1:-1;41535:23:0;;:14;;41595:36;;3926:18:1;41595:36:0;;;;;;;41460:183;41402:241;41655:33;41671:3;41676;41681:6;41655:15;:33::i;:::-;41706:4;41699:11;;;;41207:511;;;;;;:::o;19770:33::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19770:33:0;:::o;28357:723::-;28429:14;28456:31;28490:17;:15;:17::i;:::-;28456:51;;28519:23;28544;28572:25;:23;:25::i;:::-;-1:-1:-1;28631:22:0;;28518:79;;-1:-1:-1;28518:79:0;-1:-1:-1;28612:15:0;:41;28608:124;;;28685:12;28698:19;;:21;;28718:1;;28698:21;:::i;:::-;28685:35;;;;;;;;:::i;:::-;;;;;;;;;;;28670:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28608:124;28781:22;;28744:16;;28763:40;;:15;:40;:::i;:::-;28744:59;;28814:14;28888:11;28853:12;:31;;;28832:18;:52;;;;:::i;:::-;28831:68;;;;:::i;:::-;28814:85;;28910:14;28984:11;28949:12;:31;;;28928:18;:52;;;;:::i;:::-;28927:68;;;;:::i;:::-;28910:85;;29018:54;29032:8;29042:7;29051:9;29062;29018:13;:54::i;:::-;29006:66;28357:723;-1:-1:-1;;;;;;;;;28357:723:0:o;29645:161::-;29729:13;29762:36;29769:7;29778:8;29788:6;29796:1;29762:6;:36::i;31021:1072::-;21532:7;;31070:14;;21532:7;;21531:8;21523:35;;;;-1:-1:-1;;;21523:35:0;;;;;;;:::i;:::-;21569:7;:14;;-1:-1:-1;;21569:14:0;21579:4;21569:14;;;31133:8:::1;::::0;31143::::1;::::0;31187:6:::1;::::0;31180:39:::1;::::0;-1:-1:-1;;;31180:39:0;;31213:4:::1;31180:39;::::0;::::1;2651:51:1::0;-1:-1:-1;;;;;;;31187:6:0::1;::::0;31180:24:::1;::::0;2624:18:1;;31180:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31254:6;::::0;31247:39:::1;::::0;-1:-1:-1;;;31247:39:0;;31280:4:::1;31247:39;::::0;::::1;2651:51:1::0;31163:56:0;;-1:-1:-1;31230:14:0::1;::::0;-1:-1:-1;;;;;31254:6:0;;::::1;::::0;31247:24:::1;::::0;2624:18:1;;31247:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31230:56:::0;-1:-1:-1;31297:13:0::1;31313:21;31325:9:::0;31313;:21:::1;:::i;:::-;31297:37:::0;-1:-1:-1;31345:13:0::1;31361:21;31373:9:::0;31361;:21:::1;:::i;:::-;31415:11;::::0;31345:37;;-1:-1:-1;31519:17:0;31515:345:::1;;19333:5;31565:30;31575:19;31586:8:::0;31575;:19:::1;:::i;:::-;31565:9;:30::i;:::-;:50;;;;:::i;:::-;31553:62;;31630:36;31644:1;19333:5;31630;:36::i;:::-;31515:345;;;31766:82;31801:9:::0;31775:23:::1;31786:12:::0;31775:8;:23:::1;:::i;:::-;:35;;;;:::i;:::-;31838:9:::0;31812:23:::1;31823:12:::0;31812:8;:23:::1;:::i;:::-;:35;;;;:::i;:::-;31766:8;:82::i;:::-;31754:94;;31515:345;31890:1;31878:9;:13;31870:29;;;::::0;-1:-1:-1;;;31870:29:0;;13946:2:1;31870:29:0::1;::::0;::::1;13928:21:1::0;13985:1;13965:18;;;13958:29;-1:-1:-1;;;14003:18:1;;;13996:33;14046:18;;31870:29:0::1;13744:326:1::0;31870:29:0::1;31949:20;31955:2;31959:9;31949:5;:20::i;:::-;31982:51;31990:9;32001;32012;32023;31982:7;:51::i;:::-;32049:36;::::0;;6316:25:1;;;6372:2;6357:18;;6350:34;;;32054:10:0::1;::::0;32049:36:::1;::::0;6289:18:1;32049:36:0::1;;;;;;;-1:-1:-1::0;;21606:7:0;:15;;-1:-1:-1;;21606:15:0;;;-1:-1:-1;31021:1072:0;;;-1:-1:-1;;;;;31021:1072:0:o;21637:1081::-;14372:19;14395:13;;;;;;14394:14;;14442:34;;;;-1:-1:-1;14460:12:0;;14475:1;14460:12;;;;:16;14442:34;14441:108;;;-1:-1:-1;14521:4:0;5134:19;:23;;;14482:66;;-1:-1:-1;14531:12:0;;;;;:17;14482:66;14419:204;;;;-1:-1:-1;;;14419:204:0;;14277:2:1;14419:204:0;;;14259:21:1;14316:2;14296:18;;;14289:30;14355:34;14335:18;;;14328:62;-1:-1:-1;;;14406:18:1;;;14399:44;14460:19;;14419:204:0;14075:410:1;14419:204:0;14634:12;:16;;-1:-1:-1;;14634:16:0;14649:1;14634:16;;;14661:67;;;;14696:13;:20;;-1:-1:-1;;14696:20:0;;;;;14661:67;21689:7:::1;:20:::0;;-1:-1:-1;;;;;;21689:20:0::1;21699:10;21689:20:::0;;::::1;::::0;;;21771:43:::1;::::0;;-1:-1:-1;;;21771:43:0;;;;21689:7:::1;::::0;;;;;21771:41:::1;::::0;:43:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;21699:10;21771:43;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21842:6;21825:54:::0;;;::::1;;-1:-1:-1::0;;21825:54:0;;::::1;;::::0;;21834:6:::1;21825:54:::0;;-1:-1:-1;;;;;21825:54:0;;::::1;-1:-1:-1::0;;;;;;21825:54:0;;::::1;;::::0;;;21826:6:::1;21825:54:::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;21910:14:::1;::::0;21720:94;;-1:-1:-1;21720:94:0;;-1:-1:-1;21720:94:0;-1:-1:-1;21826:6:0::1;::::0;21910:14:::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;21935:37:0::1;::::0;-1:-1:-1;;;21935:37:0;;-1:-1:-1;;;;;6996:15:1;;;21935:37:0::1;::::0;::::1;6978:34:1::0;7048:15;;;7028:18;;;7021:43;21890:34:0;;-1:-1:-1;21935:19:0;;::::1;::::0;::::1;::::0;6913:18:1;;21935:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;21983:4:0::1;:24:::0;;-1:-1:-1;;;;;;21983:24:0::1;-1:-1:-1::0;;;;;21983:24:0;::::1;;::::0;;-1:-1:-1;;22020:517:0;::::1;;;22105:7;-1:-1:-1::0;;;;;22098:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;22098:24:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;22136:7;-1:-1:-1::0;;;;;22129:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;22129:24:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;22062:92;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22048:4;:107;;;;;;;;;;;;:::i;:::-;;22219:7;-1:-1:-1::0;;;;;22212:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;22212:24:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;22250:7;-1:-1:-1::0;;;;;22243:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;22243:24:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;22186:82;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22170:6;:99;;;;;;;;;;;;:::i;:::-;;22020:517;;;22361:7;-1:-1:-1::0;;;;;22354:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;22354:24:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;22392:7;-1:-1:-1::0;;;;;22385:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;22385:24:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;22316:94;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22302:4;:109;;;;;;;;;;;;:::i;:::-;;22475:7;-1:-1:-1::0;;;;;22468:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;22468:24:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;22506:7;-1:-1:-1::0;;;;;22499:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;22499:24:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;22442:82;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22426:6;:99;;;;;;;;;;;;:::i;:::-;;22020:517;22572:7;-1:-1:-1::0;;;;;22565:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22561:30;::::0;:2:::1;:30;:::i;:::-;22549:9;:42;;;;22625:7;-1:-1:-1::0;;;;;22618:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22614:30;::::0;:2:::1;:30;:::i;:::-;22602:9;:42:::0;-1:-1:-1;;22675:34:0::1;::::0;;::::1;::::0;::::1;::::0;;22687:15:::1;22675:34:::0;;-1:-1:-1;22675:34:0::1;::::0;::::1;::::0;;;;;;;;;22657:12:::1;:53:::0;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;-1:-1:-1;;14750:102:0;;;;14801:5;14785:21;;-1:-1:-1;;14785:21:0;;;14826:14;;-1:-1:-1;5029:36:1;;14826:14:0;;5017:2:1;5002:18;14826:14:0;;;;;;;14750:102;14361:498;21637:1081::o;32274:1209::-;21532:7;;32323:12;;;;21532:7;;21531:8;21523:35;;;;-1:-1:-1;;;21523:35:0;;;;;;;:::i;:::-;21569:7;:14;;-1:-1:-1;;21569:14:0;21579:4;21569:14;;;32398:8:::1;::::0;32408::::1;::::0;32466:6:::1;::::0;32474::::1;::::0;32509:40:::1;::::0;-1:-1:-1;;;32509:40:0;;32543:4:::1;32509:40;::::0;::::1;2651:51:1::0;-1:-1:-1;;;;;32466:6:0;;::::1;::::0;32474;;::::1;::::0;-1:-1:-1;;32466:6:0;;32509:25:::1;::::0;2624:18:1;;32509:40:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32577;::::0;-1:-1:-1;;;32577:40:0;;32611:4:::1;32577:40;::::0;::::1;2651:51:1::0;32492:57:0;;-1:-1:-1;32560:14:0::1;::::0;-1:-1:-1;;;;;32577:25:0;::::1;::::0;::::1;::::0;2624:18:1;;32577:40:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32664:4;32628:15;32646:24:::0;;;:9:::1;:24;::::0;;;;;32703:11:::1;::::0;32560:57;;-1:-1:-1;32646:24:0;32703:11;32813:22:::1;32826:9:::0;32646:24;32813:22:::1;:::i;:::-;:37;;;;:::i;:::-;32803:47:::0;-1:-1:-1;32944:12:0;32919:22:::1;32932:9:::0;32919:10;:22:::1;:::i;:::-;:37;;;;:::i;:::-;32909:47;;33033:1;33023:7;:11;:26;;;;;33048:1;33038:7;:11;33023:26;33015:42;;;::::0;-1:-1:-1;;;33015:42:0;;20926:2:1;33015:42:0::1;::::0;::::1;20908:21:1::0;20965:1;20945:18;;;20938:29;-1:-1:-1;;;20983:18:1;;;20976:33;21026:18;;33015:42:0::1;20724:326:1::0;33015:42:0::1;33107:32;33121:4;33128:10;33107:5;:32::i;:::-;33150:35;33164:7;33173:2;33177:7;33150:13;:35::i;:::-;33196;33210:7;33219:2;33223:7;33196:13;:35::i;:::-;33254:40;::::0;-1:-1:-1;;;33254:40:0;;33288:4:::1;33254:40;::::0;::::1;2651:51:1::0;-1:-1:-1;;;;;33254:25:0;::::1;::::0;::::1;::::0;2624:18:1;;33254:40:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33317;::::0;-1:-1:-1;;;33317:40:0;;33351:4:::1;33317:40;::::0;::::1;2651:51:1::0;33242:52:0;;-1:-1:-1;;;;;;33317:25:0;::::1;::::0;::::1;::::0;2624:18:1;;33317:40:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33305:52;;33370:51;33378:9;33389;33400;33411;33370:7;:51::i;:::-;33437:38;::::0;;6316:25:1;;;6372:2;6357:18;;6350:34;;;-1:-1:-1;;;;;33437:38:0;::::1;::::0;33442:10:::1;::::0;33437:38:::1;::::0;6289:18:1;33437:38:0::1;;;;;;;-1:-1:-1::0;;21606:7:0;:15;;-1:-1:-1;;21606:15:0;;;-1:-1:-1;32274:1209:0;;;;-1:-1:-1;32274:1209:0;;-1:-1:-1;;;;;32274:1209:0:o;22837:129::-;22885:18;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;22885:18:0;22923:12;22936:19;;:21;;22956:1;;22936:21;:::i;:::-;22923:35;;;;;;;;:::i;:::-;;;;;;;;;;;22916:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22837:129;:::o;18561:20::-;;;;;;;:::i;29191:396::-;29279:14;29306:22;29331:41;29338:7;29347:8;29357:11;29370:1;29331:6;:41::i;:::-;29306:66;-1:-1:-1;29383:27:0;;29421:105;29442:7;:14;29438:1;:18;29421:105;;;29504:7;29512:1;29504:10;;;;;;;;:::i;:::-;;;;;;;29478:36;;;;;:::i;:::-;;-1:-1:-1;29458:3:0;;;;:::i;:::-;;;;29421:105;;;-1:-1:-1;29543:36:0;29568:11;29543:22;:36;:::i;:::-;29536:43;29191:396;-1:-1:-1;;;;;;29191:396:0:o;41050:149::-;41112:4;41129:40;41145:10;41157:3;41162:6;41129:15;:40::i;:::-;-1:-1:-1;41187:4:0;41050:149;;;;:::o;36156:296::-;21532:7;;;;21531:8;21523:35;;;;-1:-1:-1;;;21523:35:0;;;;;;;:::i;:::-;21569:7;:14;;-1:-1:-1;;21569:14:0;21579:4;21569:14;;;36245:6:::1;::::0;36253::::1;::::0;36342:8:::1;::::0;36298:40:::1;::::0;-1:-1:-1;;;36298:40:0;;36332:4:::1;36298:40;::::0;::::1;2651:51:1::0;-1:-1:-1;;;;;36245:6:0;;::::1;::::0;36253;;::::1;::::0;36271:81:::1;::::0;36245:6;;36294:2;;36342:8;36245:6;;36298:25:::1;::::0;2624:18:1;;36298:40:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;36271:13;:81::i;:::-;36434:8;::::0;36390:40:::1;::::0;-1:-1:-1;;;36390:40:0;;36424:4:::1;36390:40;::::0;::::1;2651:51:1::0;36363:81:0::1;::::0;36377:7;;36386:2;;36434:8;-1:-1:-1;;;;;36390:25:0;::::1;::::0;::::1;::::0;2624:18:1;;36390:40:0::1;2505:203:1::0;36363:81:0::1;-1:-1:-1::0;;21606:7:0;:15;;-1:-1:-1;;21606:15:0;;;-1:-1:-1;36156:296:0:o;23391:487::-;23430:13;23445;23471:22;23482:10;23471;:22::i;:::-;-1:-1:-1;;23528:10:0;23517:22;;;;:10;:22;;;;;;;;;23561:10;:22;;;;;;;23600:12;;;;:28;;;23627:1;23616:8;:12;23600:28;23596:275;;;23656:10;23670:1;23645:22;;;:10;:22;;;;;;;;:26;;;23686:10;:22;;;;;;:26;;;;23738:4;;23729:59;;-1:-1:-1;;;23729:59:0;;;;;21397:51:1;;;;21464:18;;;21457:34;;;21507:18;;;21500:34;;;-1:-1:-1;;;;;23738:4:0;;23729:27;;21370:18:1;;23729:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23810:49:0;;;6316:25:1;;;6372:2;6357:18;;6350:34;;;23828:10:0;;-1:-1:-1;23828:10:0;;-1:-1:-1;23810:49:0;;6289:18:1;23810:49:0;;;;;;;23596:275;23391:487;;:::o;39978:1064::-;40124:15;40112:8;:27;;40104:53;;;;-1:-1:-1;;;40104:53:0;;21747:2:1;40104:53:0;;;21729:21:1;21786:2;21766:18;;;21759:30;-1:-1:-1;;;21805:18:1;;;21798:43;21858:18;;40104:53:0;21545:337:1;40104:53:0;40240:95;40370:4;40354:22;;;;;;:::i;:::-;;;;;;;;;;40405:10;;;;;;;;-1:-1:-1;;;40405:10:0;;;;;40211:284;;;;;23384:25:1;;;;23425:18;;23418:34;;;;40395:21:0;23468:18:1;;;23461:34;40435:13:0;23511:18:1;;;23504:34;40475:4:0;23554:19:1;;;23547:61;23356:19;;40211:284:0;;;-1:-1:-1;;40211:284:0;;;;;;;;;40187:319;;40211:284;40187:319;;;;40168:16;:338;;;-1:-1:-1;;;;;40718:13:0;;40517:14;40718:13;;;:6;:13;;;;;;:15;;19167:66;;40695:5;;40702:7;;40711:5;;40718:15;40517:14;40718:15;;;:::i;:::-;;;;-1:-1:-1;40667:77:0;;;;;;23906:25:1;;;;-1:-1:-1;;;;;24005:15:1;;;23985:18;;;23978:43;24057:15;;;;24037:18;;;24030:43;24089:18;;;24082:34;24132:19;;;24125:35;24176:19;;;24169:35;;;23878:19;;40667:77:0;;;;;;;;;;;;40657:88;;;;;;40558:202;;;;;;;;-1:-1:-1;;;24473:27:1;;24525:1;24516:11;;24509:27;;;;24561:2;24552:12;;24545:28;24598:2;24589:12;;24215:392;40558:202:0;;;;-1:-1:-1;;40558:202:0;;;;;;;;;40534:237;;40558:202;40534:237;;;;40782:24;40809:26;;;;;;;;;24839:25:1;;;24912:4;24900:17;;24880:18;;;24873:45;;;;24934:18;;;24927:34;;;24977:18;;;24970:34;;;40534:237:0;;-1:-1:-1;40782:24:0;40809:26;;24811:19:1;;40809:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40809:26:0;;-1:-1:-1;;40809:26:0;;;-1:-1:-1;;;;;;;40854:30:0;;;;;;:59;;;40908:5;-1:-1:-1;;;;;40888:25:0;:16;-1:-1:-1;;;;;40888:25:0;;40854:59;40846:95;;;;-1:-1:-1;;;40846:95:0;;25217:2:1;40846:95:0;;;25199:21:1;25256:2;25236:18;;;25229:30;25295:25;25275:18;;;25268:53;25338:18;;40846:95:0;25015:347:1;40846:95:0;-1:-1:-1;;;;;40952:16:0;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;41003:31;;3953:25:1;;;41003:31:0;;3926:18:1;41003:31:0;;;;;;;40093:949;;39978:1064;;;;;;;:::o;37647:342::-;37777:8;;37787;;37843:7;;37859:6;;37830:36;;-1:-1:-1;;;37830:36:0;;37859:6;;;;2478:14:1;2471:22;37830:36:0;;;2453:41:1;37724:4:0;;37777:8;37787;37869:5;;-1:-1:-1;;;;;37843:7:0;;;;37830:28;;2426:18:1;;37830:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37819:47;;:8;:47;:::i;:::-;:55;;;;:::i;:::-;37807:67;;;;:::i;:::-;;;37927:54;37941:8;37951:7;37960:9;37971;37927:13;:54::i;:::-;37920:61;37647:342;-1:-1:-1;;;;;37647:342:0:o;36507:158::-;21532:7;;;;21531:8;21523:35;;;;-1:-1:-1;;;21523:35:0;;;;;;;:::i;:::-;21569:7;:14;;-1:-1:-1;;21569:14:0;21579:4;21569:14;;;36563:6:::1;::::0;36556:39:::1;::::0;-1:-1:-1;;;36556:39:0;;36589:4:::1;36556:39;::::0;::::1;2651:51:1::0;36548:109:0::1;::::0;-1:-1:-1;;;;;36563:6:0::1;::::0;36556:24:::1;::::0;2624:18:1;;36556:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36604:6;::::0;36597:39:::1;::::0;-1:-1:-1;;;36597:39:0;;36630:4:::1;36597:39;::::0;::::1;2651:51:1::0;-1:-1:-1;;;;;36604:6:0;;::::1;::::0;36597:24:::1;::::0;2624:18:1;;36597:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36638:8;;36648;;36548:7;:109::i;:::-;21606:7:::0;:15;;-1:-1:-1;;21606:15:0;;;36507:158::o;42045:364::-;42156:1;42136:5;-1:-1:-1;;;;;42136:17:0;;:21;42128:53;;;;-1:-1:-1;;;42128:53:0;;25569:2:1;42128:53:0;;;25551:21:1;25608:2;25588:18;;;25581:30;-1:-1:-1;;;25627:18:1;;;25620:49;25686:18;;42128:53:0;25367:343:1;42128:53:0;42239:59;;;-1:-1:-1;;;;;25907:32:1;;;42239:59:0;;;25889:51:1;25956:18;;;;25949:34;;;42239:59:0;;;;;;;;;;25862:18:1;;;;42239:59:0;;;;;;;-1:-1:-1;;;;;42239:59:0;-1:-1:-1;;;42239:59:0;;;42228:71;;-1:-1:-1;;;;42228:10:0;;;;:71;;42239:59;42228:71;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42192:107;;;;42318:7;:57;;;;-1:-1:-1;42330:11:0;;:16;;:44;;;42361:4;42350:24;;;;;;;;;;;;:::i;:::-;42310:91;;;;-1:-1:-1;;;42310:91:0;;26475:2:1;42310:91:0;;;26457:21:1;26514:2;26494:18;;;26487:30;-1:-1:-1;;;26533:18:1;;;26526:51;26594:18;;42310:91:0;26273:345:1;42310:91:0;42117:292;;42045:364;;;:::o;23922:341::-;23987:6;;23995:4;;23973:35;;-1:-1:-1;;;;;23987:6:0;;;;23995:4;24001:6;23973:13;:35::i;:::-;24089:11;;24056:14;;24073:13;:6;24082:4;24073:13;:::i;:::-;:27;;;;:::i;:::-;24056:44;-1:-1:-1;24158:10:0;;24154:59;;24195:6;24185;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;;24154:59:0;24228:27;;;6316:25:1;;;24253:1:0;6372:2:1;6357:18;;6350:34;24233:10:0;;24228:27;;6289:18:1;24228:27:0;;;;;;;;23962:301;23922:341;:::o;24307:261::-;24372:6;;24380:4;;24358:35;;-1:-1:-1;;;;;24372:6:0;;;;24380:4;24386:6;24358:13;:35::i;:::-;24437:11;;24404:14;;24421:13;:6;24430:4;24421:13;:::i;:::-;:27;;;;:::i;:::-;24404:44;-1:-1:-1;24463:10:0;;24459:59;;24500:6;24490;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;;24459:59:0;24533:27;;;24550:1;6316:25:1;;6372:2;6357:18;;6350:34;;;24538:10:0;;24533:27;;6289:18:1;24533:27:0;6142:248:1;38889:401:0;38961:6;;38940:4;;38961:6;;38957:326;;;39005:9;;38984:7;;38994:8;:1;38998:4;38994:8;:::i;:::-;:20;;;;:::i;:::-;38984:30;;39029:7;39050:9;;39039:1;39043:4;39039:8;;;;:::i;:::-;:20;;;;:::i;:::-;39029:30;-1:-1:-1;39074:7:0;39096:4;39085:7;39029:30;39085:2;:7;:::i;:::-;39084:16;;;;:::i;:::-;39074:26;-1:-1:-1;39115:7:0;39157:4;39146:7;39151:2;;39146:7;:::i;:::-;39145:16;;;;:::i;:::-;39138:4;39127:7;39132:2;;39127:7;:::i;:::-;39126:16;;;;:::i;:::-;:35;;;;:::i;:::-;39115:47;-1:-1:-1;39194:4:0;39184:7;39115:47;39184:2;:7;:::i;:::-;:14;;;;:::i;:::-;39177:21;;;;;;;;38957:326;39255:5;39259:1;39255;:5;:::i;:::-;39248:12;;;;26403:965;26586:18;;26524:15;;26502:19;;26569:35;;26524:15;26569:35;:::i;:::-;26550:54;;26656:1;26642:11;:15;:33;;;;-1:-1:-1;26661:14:0;;;26642:33;:51;;;;-1:-1:-1;26679:14:0;;;26642:51;26638:197;;;26736:23;26748:11;26736:9;:23;:::i;:::-;26710:22;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;26800:23:0;;-1:-1:-1;26812:11:0;26800:9;:23;:::i;:::-;26774:22;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;26638:197:0;26847:25;26875:17;:15;:17::i;:::-;26934:16;;26847:45;;-1:-1:-1;26917:33:0;;:14;:33;:::i;:::-;26903:47;;19757:4;27068:11;:24;27064:151;;;27127:75;;;;;;;;;;;27155:22;;27127:75;;;;;;27179:22;;27127:75;;;;;;27109:12;:94;;;;;;;-1:-1:-1;27109:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;27064:151;27225:8;:19;;;27255:8;:19;;;27285:18;:35;;;27336:24;;;6316:25:1;;;6372:2;6357:18;;6350:34;;;27336:24:0;;6289:18:1;27336:24:0;;;;;;;26491:877;;;26403:965;;;;:::o;37997:884::-;38128:6;;38107:4;;38128:6;;38124:750;;;38151:7;38162:24;38165:9;38176;38162:2;:24::i;:::-;38232:9;;38151:35;;-1:-1:-1;38213:16:0;:9;38225:4;38213:16;:::i;:::-;:28;;;;:::i;:::-;38287:9;;38201:40;;-1:-1:-1;38268:16:0;:9;38280:4;38268:16;:::i;:::-;:28;;;;:::i;:::-;38355:6;;38256:40;;-1:-1:-1;38312:13:0;;;;-1:-1:-1;;;;;38344:17:0;;;38355:6;;38344:17;:67;;38390:9;38401;38344:67;;;38365:9;38376;38344:67;38448:6;;38311:100;;-1:-1:-1;38311:100:0;-1:-1:-1;;;;;;38437:17:0;;;38448:6;;38437:17;:77;;38505:9;;38487:15;:8;38498:4;38487:15;:::i;:::-;:27;;;;:::i;:::-;38437:77;;;38475:9;;38457:15;:8;38468:4;38457:15;:::i;:::-;:27;;;;:::i;:::-;38426:88;-1:-1:-1;38529:6:0;38549:39;38556:17;38565:8;38426:88;38556:17;:::i;:::-;38575:2;38579:8;38549:6;:39::i;:::-;38538:50;;:8;:50;:::i;:::-;38626:6;;38529:59;;-1:-1:-1;38660:4:0;;-1:-1:-1;;;;;38615:17:0;;;38626:6;;38615:17;:41;;38647:9;;38615:41;;;38635:9;;38615:41;38610:47;;:1;:47;:::i;:::-;:54;;;;:::i;:::-;38603:61;;;;;;;;38124:750;38741:6;;38698:13;;;;-1:-1:-1;;;;;38730:17:0;;;38741:6;;38730:17;:67;;38776:9;38787;38730:67;;;38751:9;38762;38730:67;38697:100;;-1:-1:-1;38697:100:0;-1:-1:-1;38842:19:0;38853:8;38697:100;38842:19;:::i;:::-;38819;38830:8;38819;:19;:::i;:::-;:43;;;;:::i;:::-;38812:50;;;;;;41726:311;41810:15;41821:3;41810:10;:15::i;:::-;41867;41878:3;41867:10;:15::i;:::-;-1:-1:-1;;;;;41926:14:0;;;;;;:9;:14;;;;;:24;;41944:6;;41926:14;:24;;41944:6;;41926:24;:::i;:::-;;;;-1:-1:-1;;;;;;;41961:14:0;;;;;;:9;:14;;;;;:24;;41979:6;;41961:14;:24;;41979:6;;41961:24;:::i;:::-;;;;;;;;42017:3;-1:-1:-1;;;;;42003:26:0;42012:3;-1:-1:-1;;;;;42003:26:0;;42022:6;42003:26;;;;3953:25:1;;3941:2;3926:18;;3807:177;42003:26:0;;;;;;;;41726:311;;;:::o;2902:303::-;2947:6;2974:1;2970;:5;2966:232;;;-1:-1:-1;2996:1:0;3012:6;3021:5;3025:1;2996;3021:5;:::i;:::-;:9;;3029:1;3021:9;:::i;:::-;3012:18;;3045:92;3056:1;3052;:5;3045:92;;;3082:1;-1:-1:-1;3082:1:0;3120;3082;3107:5;3082:1;3107;:5;:::i;:::-;:9;;;;:::i;:::-;3106:15;;;;:::i;:::-;3102:19;;3045:92;;;2977:171;2902:303;;;:::o;2966:232::-;3158:6;;3154:44;;-1:-1:-1;3185:1:0;3154:44;2902:303;;;:::o;39298:250::-;39359:15;39370:3;39359:10;:15::i;:::-;39450:6;39435:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;39467:14:0;;;;;;:9;:14;;;;;:24;;39485:6;;39467:14;:24;;39485:6;;39467:24;:::i;:::-;;;;-1:-1:-1;;39507:33:0;;3953:25:1;;;-1:-1:-1;;;;;39507:33:0;;;39524:1;;39507:33;;3941:2:1;3926:18;39507:33:0;;;;;;;;39298:250;;:::o;2799:97::-;2851:4;2879:1;2875;:5;:13;;2887:1;2875:13;;;-1:-1:-1;2883:1:0;;2868:20;-1:-1:-1;2799:97:0:o;39556:200::-;39617:15;39628:3;39617:10;:15::i;:::-;39658:6;39643:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;39675:14:0;;;;;;:9;:14;;;;;:24;;39693:6;;39675:14;:24;;39693:6;;39675:24;:::i;:::-;;;;-1:-1:-1;;39715:33:0;;3953:25:1;;;39737:1:0;;-1:-1:-1;;;;;39715:33:0;;;;;3941:2:1;3926:18;39715:33:0;3807:177:1;24795:1286:0;-1:-1:-1;;;;;24871:20:0;;24854:14;24871:20;;;:9;:20;;;;;;24939:13;;24935:1139;;-1:-1:-1;;;;;24990:23:0;;24969:18;24990:23;;;:12;:23;;;;;;;;;;25091:12;:23;;;;;;;;25144:6;;25222;;25243:33;;;;25342:23;;;;:33;;;24990:23;25405;24990;25144:6;25405:23;:::i;:::-;25390:38;-1:-1:-1;25501:12:0;25516:23;25526:13;25516:7;:23;:::i;:::-;25501:38;-1:-1:-1;25558:11:0;;25554:192;;25590:11;25626:4;25604:19;25616:7;25604:9;:19;:::i;:::-;:26;;;;:::i;:::-;-1:-1:-1;;;;;25699:21:0;;;;;;:10;:21;;;;;:31;;25590:40;;-1:-1:-1;25590:40:0;;25699:21;;;:31;;25590:40;;25699:31;:::i;:::-;;;;-1:-1:-1;;;25554:192:0;25764:11;;25760:142;;25796:11;25832:4;25810:19;25822:7;25810:9;:19;:::i;:::-;:26;;;;:::i;:::-;-1:-1:-1;;;;;25855:21:0;;;;;;:10;:21;;;;;:31;;25796:40;;-1:-1:-1;25796:40:0;;25855:21;;;:31;;25796:40;;25855:31;:::i;:::-;;;;-1:-1:-1;;;25760:142:0;24954:959;;;;;;24843:1238;24795:1286;:::o;24935:1139::-;25960:6;;-1:-1:-1;;;;;25934:23:0;;;;;;:12;:23;;;;;;;;:32;;;;26056:6;;26030:12;:23;;;;;;:32;24843:1238;24795:1286;:::o;36951:688::-;37016:4;;37033:580;37054:3;37050:1;:7;37033:580;;;37093:1;37079:11;37118:9;37121:2;37093:1;37118:2;:9::i;:::-;37109:18;;37150:2;37146:1;:6;37142:212;;;37173:7;37197:9;37200:2;37204:1;37197:2;:9::i;:::-;37184:6;37189:1;37184:2;:6;:::i;:::-;37183:13;;37192:4;37183:13;:::i;:::-;:23;;;;:::i;:::-;37173:33;-1:-1:-1;37229:6:0;37173:33;37229:1;:6;:::i;:::-;37225:10;;37154:97;37142:212;;;37276:7;37300:9;37303:2;37307:1;37300:2;:9::i;:::-;37287:6;37291:2;37287:1;:6;:::i;:::-;37286:13;;37295:4;37286:13;:::i;:::-;:23;;;;:::i;:::-;37276:33;-1:-1:-1;37332:6:0;37276:33;37332:1;:6;:::i;:::-;37328:10;;37257:97;37142:212;37376:6;37372:1;:10;37368:234;;;37421:1;37407:10;37411:6;37407:1;:10;:::i;:::-;:15;37403:72;;37454:1;37447:8;;;;;;;37403:72;37368:234;;;37533:1;37519:10;37528:1;37519:6;:10;:::i;:::-;:15;37515:72;;37566:1;37559:8;;;;;;;37515:72;37064:549;;37059:3;;;;;:::i;:::-;;;;37033:580;;;-1:-1:-1;37630:1:0;;36951:688;-1:-1:-1;;;36951:688:0:o;36673:137::-;36725:4;36798;36796:1;36798:4;36787:2;36798:4;36776:5;36787:2;;36776:5;:::i;:::-;:10;;;;:::i;:::-;:13;;;;:::i;:::-;:18;;;;:::i;:::-;36775:22;;;;:::i;:::-;:27;;;;:::i;:::-;36770:4;;36762:1;36770:4;36753:3;36762:1;;36753:3;:::i;:::-;:8;;;;:::i;:::-;:10;;;;:::i;:::-;:15;;;;:::i;:::-;36749:20;;:2;:20;:::i;:::-;:25;;;;:::i;:::-;:53;;;;:::i;36818:125::-;36870:4;36930;36927:2;36930:4;36916:5;36927:2;;36916:5;:::i;:::-;:10;;;;:::i;:::-;:13;;;;:::i;:::-;:18;;;;:::i;:::-;36910:4;;36900:3;36902:1;;36900:3;:::i;:::-;:8;;;;:::i;:::-;36894:4;36896:2;36894:1;:4;:::i;:::-;:15;;;;:::i;-1:-1:-1:-;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:863;247:6;255;263;271;279;332:3;320:9;311:7;307:23;303:33;300:53;;;349:1;346;339:12;300:53;385:9;372:23;362:33;;442:2;431:9;427:18;414:32;404:42;;496:2;485:9;481:18;468:32;509:31;534:5;509:31;:::i;:::-;559:5;-1:-1:-1;615:2:1;600:18;;587:32;638:18;668:14;;;665:34;;;695:1;692;685:12;665:34;733:6;722:9;718:22;708:32;;778:7;771:4;767:2;763:13;759:27;749:55;;800:1;797;790:12;749:55;840:2;827:16;866:2;858:6;855:14;852:34;;;882:1;879;872:12;852:34;927:7;922:2;913:6;909:2;905:15;901:24;898:37;895:57;;;948:1;945;938:12;895:57;150:863;;;;-1:-1:-1;150:863:1;;-1:-1:-1;979:2:1;971:11;;1001:6;150:863;-1:-1:-1;;;150:863:1:o;1018:258::-;1090:1;1100:113;1114:6;1111:1;1108:13;1100:113;;;1190:11;;;1184:18;1171:11;;;1164:39;1136:2;1129:10;1100:113;;;1231:6;1228:1;1225:13;1222:48;;;1266:1;1257:6;1252:3;1248:16;1241:27;1222:48;;1018:258;;;:::o;1281:383::-;1430:2;1419:9;1412:21;1393:4;1462:6;1456:13;1505:6;1500:2;1489:9;1485:18;1478:34;1521:66;1580:6;1575:2;1564:9;1560:18;1555:2;1547:6;1543:15;1521:66;:::i;:::-;1648:2;1627:15;-1:-1:-1;;1623:29:1;1608:45;;;;1655:2;1604:54;;1281:383;-1:-1:-1;;1281:383:1:o;1993:315::-;2061:6;2069;2122:2;2110:9;2101:7;2097:23;2093:32;2090:52;;;2138:1;2135;2128:12;2090:52;2177:9;2164:23;2196:31;2221:5;2196:31;:::i;:::-;2246:5;2298:2;2283:18;;;;2270:32;;-1:-1:-1;;;1993:315:1:o;2713:452::-;2799:6;2807;2815;2823;2876:3;2864:9;2855:7;2851:23;2847:33;2844:53;;;2893:1;2890;2883:12;2844:53;2932:9;2919:23;2951:31;2976:5;2951:31;:::i;:::-;3001:5;3053:2;3038:18;;3025:32;;-1:-1:-1;3104:2:1;3089:18;;3076:32;;3155:2;3140:18;3127:32;;-1:-1:-1;2713:452:1;-1:-1:-1;;;2713:452:1:o;3170:632::-;3341:2;3393:21;;;3463:13;;3366:18;;;3485:22;;;3312:4;;3341:2;3564:15;;;;3538:2;3523:18;;;3312:4;3607:169;3621:6;3618:1;3615:13;3607:169;;;3682:13;;3670:26;;3751:15;;;;3716:12;;;;3643:1;3636:9;3607:169;;;-1:-1:-1;3793:3:1;;3170:632;-1:-1:-1;;;;;;3170:632:1:o;3989:247::-;4048:6;4101:2;4089:9;4080:7;4076:23;4072:32;4069:52;;;4117:1;4114;4107:12;4069:52;4156:9;4143:23;4175:31;4200:5;4175:31;:::i;4241:456::-;4318:6;4326;4334;4387:2;4375:9;4366:7;4362:23;4358:32;4355:52;;;4403:1;4400;4393:12;4355:52;4442:9;4429:23;4461:31;4486:5;4461:31;:::i;:::-;4511:5;-1:-1:-1;4568:2:1;4553:18;;4540:32;4581:33;4540:32;4581:33;:::i;:::-;4241:456;;4633:7;;-1:-1:-1;;;4687:2:1;4672:18;;;;4659:32;;4241:456::o;4702:180::-;4761:6;4814:2;4802:9;4793:7;4789:23;4785:32;4782:52;;;4830:1;4827;4820:12;4782:52;-1:-1:-1;4853:23:1;;4702:180;-1:-1:-1;4702:180:1:o;5754:383::-;5831:6;5839;5847;5900:2;5888:9;5879:7;5875:23;5871:32;5868:52;;;5916:1;5913;5906:12;5868:52;5955:9;5942:23;5974:31;5999:5;5974:31;:::i;:::-;6024:5;6076:2;6061:18;;6048:32;;-1:-1:-1;6127:2:1;6112:18;;;6099:32;;5754:383;-1:-1:-1;;;5754:383:1:o;7075:114::-;7159:4;7152:5;7148:16;7141:5;7138:27;7128:55;;7179:1;7176;7169:12;7194:801;7305:6;7313;7321;7329;7337;7345;7353;7406:3;7394:9;7385:7;7381:23;7377:33;7374:53;;;7423:1;7420;7413:12;7374:53;7462:9;7449:23;7481:31;7506:5;7481:31;:::i;:::-;7531:5;-1:-1:-1;7588:2:1;7573:18;;7560:32;7601:33;7560:32;7601:33;:::i;:::-;7653:7;-1:-1:-1;7707:2:1;7692:18;;7679:32;;-1:-1:-1;7758:2:1;7743:18;;7730:32;;-1:-1:-1;7814:3:1;7799:19;;7786:33;7828:31;7786:33;7828:31;:::i;:::-;7194:801;;;;-1:-1:-1;7194:801:1;;;;7878:7;7932:3;7917:19;;7904:33;;-1:-1:-1;7984:3:1;7969:19;;;7956:33;;7194:801;-1:-1:-1;;7194:801:1:o;8000:388::-;8068:6;8076;8129:2;8117:9;8108:7;8104:23;8100:32;8097:52;;;8145:1;8142;8135:12;8097:52;8184:9;8171:23;8203:31;8228:5;8203:31;:::i;:::-;8253:5;-1:-1:-1;8310:2:1;8295:18;;8282:32;8323:33;8282:32;8323:33;:::i;:::-;8375:7;8365:17;;;8000:388;;;;;:::o;8393:315::-;8461:6;8469;8522:2;8510:9;8501:7;8497:23;8493:32;8490:52;;;8538:1;8535;8528:12;8490:52;8574:9;8561:23;8551:33;;8634:2;8623:9;8619:18;8606:32;8647:31;8672:5;8647:31;:::i;8713:338::-;8915:2;8897:21;;;8954:2;8934:18;;;8927:30;-1:-1:-1;;;8988:2:1;8973:18;;8966:44;9042:2;9027:18;;8713:338::o;9056:164::-;9132:13;;9181;;9174:21;9164:32;;9154:60;;9210:1;9207;9200:12;9225:202;9292:6;9345:2;9333:9;9324:7;9320:23;9316:32;9313:52;;;9361:1;9358;9351:12;9313:52;9384:37;9411:9;9384:37;:::i;10423:632::-;10693:1;10689;10684:3;10680:11;10676:19;10668:6;10664:32;10653:9;10646:51;10733:6;10728:2;10717:9;10713:18;10706:34;10776:6;10771:2;10760:9;10756:18;10749:34;10819:3;10814:2;10803:9;10799:18;10792:31;10860:6;10854:3;10843:9;10839:19;10832:35;10918:6;10910;10904:3;10893:9;10889:19;10876:49;10975:1;10945:22;;;10969:3;10941:32;;;10934:43;;;;11038:2;11017:15;;;-1:-1:-1;;11013:29:1;10998:45;10994:55;;10423:632;-1:-1:-1;;;;10423:632:1:o;11060:184::-;11130:6;11183:2;11171:9;11162:7;11158:23;11154:32;11151:52;;;11199:1;11196;11189:12;11151:52;-1:-1:-1;11222:16:1;;11060:184;-1:-1:-1;11060:184:1:o;11249:127::-;11310:10;11305:3;11301:20;11298:1;11291:31;11341:4;11338:1;11331:15;11365:4;11362:1;11355:15;11381:125;11421:4;11449:1;11446;11443:8;11440:34;;;11454:18;;:::i;:::-;-1:-1:-1;11491:9:1;;11381:125::o;11842:168::-;11882:7;11948:1;11944;11940:6;11936:14;11933:1;11930:21;11925:1;11918:9;11911:17;11907:45;11904:71;;;11955:18;;:::i;:::-;-1:-1:-1;11995:9:1;;11842:168::o;12015:217::-;12055:1;12081;12071:132;;12125:10;12120:3;12116:20;12113:1;12106:31;12160:4;12157:1;12150:15;12188:4;12185:1;12178:15;12071:132;-1:-1:-1;12217:9:1;;12015:217::o;12962:380::-;13041:1;13037:12;;;;13084;;;13105:61;;13159:4;13151:6;13147:17;13137:27;;13105:61;13212:2;13204:6;13201:14;13181:18;13178:38;13175:161;;;13258:10;13253:3;13249:20;13246:1;13239:31;13293:4;13290:1;13283:15;13321:4;13318:1;13311:15;13347:127;13408:10;13403:3;13399:20;13396:1;13389:31;13439:4;13436:1;13429:15;13463:4;13460:1;13453:15;13479:128;13519:3;13550:1;13546:6;13543:1;13540:13;13537:39;;;13556:18;;:::i;:::-;-1:-1:-1;13592:9:1;;13479:128::o;13612:127::-;13673:10;13668:3;13664:20;13661:1;13654:31;13704:4;13701:1;13694:15;13728:4;13725:1;13718:15;14490:464;14575:6;14583;14591;14644:2;14632:9;14623:7;14619:23;14615:32;14612:52;;;14660:1;14657;14650:12;14612:52;14692:9;14686:16;14711:31;14736:5;14711:31;:::i;:::-;14811:2;14796:18;;14790:25;14761:5;;-1:-1:-1;14824:33:1;14790:25;14824:33;:::i;:::-;14876:7;-1:-1:-1;14902:46:1;14944:2;14929:18;;14902:46;:::i;:::-;14892:56;;14490:464;;;;;:::o;14959:884::-;15039:6;15092:2;15080:9;15071:7;15067:23;15063:32;15060:52;;;15108:1;15105;15098:12;15060:52;15141:9;15135:16;15170:18;15211:2;15203:6;15200:14;15197:34;;;15227:1;15224;15217:12;15197:34;15265:6;15254:9;15250:22;15240:32;;15310:7;15303:4;15299:2;15295:13;15291:27;15281:55;;15332:1;15329;15322:12;15281:55;15361:2;15355:9;15383:2;15379;15376:10;15373:36;;;15389:18;;:::i;:::-;15464:2;15458:9;15432:2;15518:13;;-1:-1:-1;;15514:22:1;;;15538:2;15510:31;15506:40;15494:53;;;15562:18;;;15582:22;;;15559:46;15556:72;;;15608:18;;:::i;:::-;15648:10;15644:2;15637:22;15683:2;15675:6;15668:18;15723:7;15718:2;15713;15709;15705:11;15701:20;15698:33;15695:53;;;15744:1;15741;15734:12;15695:53;15757:55;15809:2;15804;15796:6;15792:15;15787:2;15783;15779:11;15757:55;:::i;:::-;15831:6;14959:884;-1:-1:-1;;;;;;;14959:884:1:o;15848:762::-;-1:-1:-1;;;16254:3:1;16247:30;16229:3;16306:6;16300:13;16322:62;16377:6;16372:2;16367:3;16363:12;16356:4;16348:6;16344:17;16322:62;:::i;:::-;-1:-1:-1;;;16443:2:1;16403:16;;;16435:11;;;16428:24;16477:13;;16499:63;16477:13;16548:2;16540:11;;16533:4;16521:17;;16499:63;:::i;:::-;16582:17;16601:2;16578:26;;15848:762;-1:-1:-1;;;;15848:762:1:o;16615:748::-;-1:-1:-1;;;17021:3:1;17014:20;16996:3;17063:6;17057:13;17079:61;17133:6;17129:1;17124:3;17120:11;17113:4;17105:6;17101:17;17079:61;:::i;:::-;-1:-1:-1;;;17199:1:1;17159:16;;;17191:10;;;17184:23;17232:13;;17254:62;17232:13;17303:1;17295:10;;17288:4;17276:17;;17254:62;:::i;:::-;17336:17;17355:1;17332:25;;16615:748;-1:-1:-1;;;;16615:748:1:o;17368:764::-;-1:-1:-1;;;17774:3:1;17767:32;17749:3;17828:6;17822:13;17844:62;17899:6;17894:2;17889:3;17885:12;17878:4;17870:6;17866:17;17844:62;:::i;:::-;-1:-1:-1;;;17965:2:1;17925:16;;;17957:11;;;17950:24;17999:13;;18021:63;17999:13;18070:2;18062:11;;18055:4;18043:17;;18021:63;:::i;:::-;18104:17;18123:2;18100:26;;17368:764;-1:-1:-1;;;;17368:764:1:o;18137:748::-;-1:-1:-1;;;18543:3:1;18536:20;18518:3;18585:6;18579:13;18601:61;18655:6;18651:1;18646:3;18642:11;18635:4;18627:6;18623:17;18601:61;:::i;18890:247::-;18958:6;19011:2;18999:9;18990:7;18986:23;18982:32;18979:52;;;19027:1;19024;19017:12;18979:52;19059:9;19053:16;19078:29;19101:5;19078:29;:::i;19142:422::-;19231:1;19274:5;19231:1;19288:270;19309:7;19299:8;19296:21;19288:270;;;19368:4;19364:1;19360:6;19356:17;19350:4;19347:27;19344:53;;;19377:18;;:::i;:::-;19427:7;19417:8;19413:22;19410:55;;;19447:16;;;;19410:55;19526:22;;;;19486:15;;;;19288:270;;;19292:3;19142:422;;;;;:::o;19569:806::-;19618:5;19648:8;19638:80;;-1:-1:-1;19689:1:1;19703:5;;19638:80;19737:4;19727:76;;-1:-1:-1;19774:1:1;19788:5;;19727:76;19819:4;19837:1;19832:59;;;;19905:1;19900:130;;;;19812:218;;19832:59;19862:1;19853:10;;19876:5;;;19900:130;19937:3;19927:8;19924:17;19921:43;;;19944:18;;:::i;:::-;-1:-1:-1;;20000:1:1;19986:16;;20015:5;;19812:218;;20114:2;20104:8;20101:16;20095:3;20089:4;20086:13;20082:36;20076:2;20066:8;20063:16;20058:2;20052:4;20049:12;20045:35;20042:77;20039:159;;;-1:-1:-1;20151:19:1;;;20183:5;;20039:159;20230:34;20255:8;20249:4;20230:34;:::i;:::-;20300:6;20296:1;20292:6;20288:19;20279:7;20276:32;20273:58;;;20311:18;;:::i;:::-;20349:20;;19569:806;-1:-1:-1;;;19569:806:1:o;20380:140::-;20438:5;20467:47;20508:4;20498:8;20494:19;20488:4;20467:47;:::i;21055:135::-;21094:3;-1:-1:-1;;21115:17:1;;21112:43;;;21135:18;;:::i;:::-;-1:-1:-1;21182:1:1;21171:13;;21055:135::o;22016:1104::-;22146:3;22175:1;22208:6;22202:13;22238:3;22260:1;22288:9;22284:2;22280:18;22270:28;;22348:2;22337:9;22333:18;22370;22360:61;;22414:4;22406:6;22402:17;22392:27;;22360:61;22440:2;22488;22480:6;22477:14;22457:18;22454:38;22451:165;;;-1:-1:-1;;;22515:33:1;;22571:4;22568:1;22561:15;22601:4;22522:3;22589:17;22451:165;22632:18;22659:104;;;;22777:1;22772:323;;;;22625:470;;22659:104;-1:-1:-1;;22692:24:1;;22680:37;;22737:16;;;;-1:-1:-1;22659:104:1;;22772:323;21963:1;21956:14;;;22000:4;21987:18;;22870:1;22884:165;22898:6;22895:1;22892:13;22884:165;;;22976:14;;22963:11;;;22956:35;23019:16;;;;22913:10;;22884:165;;;22888:3;;23078:6;23073:3;23069:16;23062:23;;22625:470;-1:-1:-1;23111:3:1;;22016:1104;-1:-1:-1;;;;;;;;22016:1104:1:o;25994:274::-;26123:3;26161:6;26155:13;26177:53;26223:6;26218:3;26211:4;26203:6;26199:17;26177:53;:::i;:::-;26246:16;;;;;25994:274;-1:-1:-1;;25994:274:1:o
Swarm Source
ipfs://e6211848c01219b2b1b74a53c3ead789ccb2ff653ffb0edecc38482d0fd1b44c
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.