Contract
0x23Fc254cD060Be3C9AC5B9364B67b5f64fB3aB66
2
[ Download CSV Export ]
OVERVIEW
Stratosphere is a multi-chain deflationary reward token with first to market tech we affectionately call the Incinerator. Stratosphere aims to change the store of value capability of digital assets with disruptive innovation seen nowhere else.
Latest 25 internal transaction
[ Download CSV Export ]
Contract Source Code Verified (Exact Match)
Contract Name:
StratosphereV2
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-12-05 */ // Sources flattened with hardhat v2.12.2 https://hardhat.org // File @opengsn/contracts/src/interfaces/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0; /** * @title The ERC-2771 Recipient Base Abstract Class - Declarations * * @notice A contract must implement this interface in order to support relayed transaction. * * @notice It is recommended that your contract inherits from the ERC2771Recipient contract. */ abstract contract IERC2771Recipient { /** * :warning: **Warning** :warning: The Forwarder can have a full control over your Recipient. Only trust verified Forwarder. * @param forwarder The address of the Forwarder contract that is being used. * @return isTrustedForwarder `true` if the Forwarder is trusted to forward relayed transactions by this Recipient. */ function isTrustedForwarder(address forwarder) public virtual view returns(bool); /** * @notice Use this method the contract anywhere instead of msg.sender to support relayed transactions. * @return sender The real sender of this call. * For a call that came through the Forwarder the real sender is extracted from the last 20 bytes of the `msg.data`. * Otherwise simply returns `msg.sender`. */ function _msgSender() internal virtual view returns (address); /** * @notice Use this method in the contract instead of `msg.data` when difference matters (hashing, signature, etc.) * @return data The real `msg.data` of this call. * For a call that came through the Forwarder, the real sender address was appended as the last 20 bytes * of the `msg.data` - so this method will strip those 20 bytes off. * Otherwise (if the call was made directly and not through the forwarder) simply returns `msg.data`. */ function _msgData() internal virtual view returns (bytes calldata); } // File @opengsn/contracts/src/[email protected] // solhint-disable no-inline-assembly pragma solidity >=0.6.9; /** * @title The ERC-2771 Recipient Base Abstract Class - Implementation * * @notice Note that this contract was called `BaseRelayRecipient` in the previous revision of the GSN. * * @notice A base contract to be inherited by any contract that want to receive relayed transactions. * * @notice A subclass must use `_msgSender()` instead of `msg.sender`. */ abstract contract ERC2771Recipient is IERC2771Recipient { /* * Forwarder singleton we accept calls from */ address private _trustedForwarder; /** * :warning: **Warning** :warning: The Forwarder can have a full control over your Recipient. Only trust verified Forwarder. * @notice Method is not a required method to allow Recipients to trust multiple Forwarders. Not recommended yet. * @return forwarder The address of the Forwarder contract that is being used. */ function getTrustedForwarder() public virtual view returns (address forwarder){ return _trustedForwarder; } function _setTrustedForwarder(address _forwarder) internal { _trustedForwarder = _forwarder; } /// @inheritdoc IERC2771Recipient function isTrustedForwarder(address forwarder) public virtual override view returns(bool) { return forwarder == _trustedForwarder; } /// @inheritdoc IERC2771Recipient function _msgSender() internal override virtual view returns (address ret) { if (msg.data.length >= 20 && isTrustedForwarder(msg.sender)) { // At this point we know that the sender is a trusted forwarder, // so we trust that the last bytes of msg.data are the verified sender address. // extract sender address from the end of msg.data assembly { ret := shr(96,calldataload(sub(calldatasize(),20))) } } else { ret = msg.sender; } } /// @inheritdoc IERC2771Recipient function _msgData() internal override virtual view returns (bytes calldata ret) { if (msg.data.length >= 20 && isTrustedForwarder(msg.sender)) { return msg.data[0:msg.data.length-20]; } else { return msg.data; } } } // File @openzeppelin/contracts-upgradeable/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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/[email protected] // OpenZeppelin Contracts (last updated v4.8.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. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ 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. * * 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. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * 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. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ 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. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Internal function that returns the initialized version. Returns `_initialized` */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Internal function that returns the initialized version. Returns `_initializing` */ function _isInitializing() internal view returns (bool) { return _initializing; } } // File contracts/lib/Janitable.sol pragma solidity ^0.8.0; contract Janitable is ERC2771Recipient, Initializable { address private _janitor; address private _previousJanitor; uint256 private _lockTimeJanitor; event JanitorTransferred( address indexed previousJanitor, address indexed newJanitor ); /** * @dev Initializes the contract setting the deployer as the initial janitor. */ function initialize( address new_janitor, address trustedForwarder ) public virtual onlyInitializing { _janitor = new_janitor; emit JanitorTransferred(address(0), new_janitor); _setTrustedForwarder(trustedForwarder); } /** * @dev Returns the address of the current janitor. */ function janitor() public view returns (address) { return _janitor; } /** * @dev Throws if called by any account other than the janitor. */ modifier onlyJanitor() { require( _janitor == _msgSender(), "Janitable: caller is not the janitor" ); _; } /** * @dev Leaves the contract without janitor. It will not be possible to call * `onlyJanitor` functions anymore. Can only be called by the current janitor. */ function renounceJanitorship() public virtual onlyJanitor { emit JanitorTransferred(_janitor, address(0)); _janitor = address(0); } /** * @dev Transfers janitorship of the contract to a new account (`newJanitor`). * Can only be called by the current janitor. */ function transferJanitorship( address newJanitor ) public virtual onlyJanitor { require( newJanitor != address(0), "Janitable: new janitor is the zero address" ); emit JanitorTransferred(_janitor, newJanitor); _janitor = newJanitor; } function getUnlockTimeJanitor() public view returns (uint256) { return _lockTimeJanitor; } function lockJanitor(uint256 time) public virtual onlyJanitor { // Locks the contract for janitor for the amount of time provided _previousJanitor = _janitor; _janitor = address(0); _lockTimeJanitor = block.timestamp + time; emit JanitorTransferred(_janitor, address(0)); } function unlockJanitor() public virtual { // Unlocks the contract for janitor when _lockTime is exceeds require( _previousJanitor == msg.sender, "You don't have permission to unlock" ); require( block.timestamp > _lockTimeJanitor, "Contract is locked until 7 days" ); emit JanitorTransferred(_janitor, _previousJanitor); _janitor = _previousJanitor; } function setTrustedForwarder(address forwarder) public virtual onlyJanitor { _setTrustedForwarder(forwarder); } } // File contracts/lib/Ownable.sol pragma solidity ^0.8.0; contract Ownable is ERC2771Recipient, Initializable { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function initialize( address new_owner, address trustedForwarder ) public virtual onlyInitializing { _owner = new_owner; emit OwnershipTransferred(address(0), new_owner); _setTrustedForwarder(trustedForwarder); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function getUnlockTime() public view returns (uint256) { return _lockTime; } function lock(uint256 time) public virtual onlyOwner { // Locks the contract for owner for the amount of time provided _previousOwner = _owner; _owner = address(0); _lockTime = block.timestamp + time; emit OwnershipTransferred(_owner, address(0)); } function unlock() public virtual { // Unlocks the contract for owner when _lockTime is exceeds require( _previousOwner == msg.sender, "You don't have permission to unlock" ); require(block.timestamp > _lockTime, "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } function setTrustedForwarder( address trustedForwarder ) public virtual onlyOwner { _setTrustedForwarder(trustedForwarder); } } // File contracts/lib/Address.sol pragma solidity ^0.8.0; library Address { function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } function functionCall( address target, bytes memory data ) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } 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" ); } function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.0; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/extensions/draft-ERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * _Available since v3.4._ */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private constant _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`. * However, to ensure consistency with the upgradeable transpiler, we will continue * to reserve a slot. * @custom:oz-renamed-from _PERMIT_TYPEHASH */ // solhint-disable-next-line var-name-mixedcase bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT; /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ constructor(string memory name) EIP712(name, "1") {} /** * @dev See {IERC20Permit-permit}. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view virtual override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC20Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { Counters.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } } // File contracts/StratosphereV2.sol pragma solidity ^0.8.0; contract StratosphereV2 is ERC2771Recipient, IERC20, Ownable, Janitable { // ERC20Permit using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; bytes32 private constant _PERMIT_TYPEHASH = keccak256( "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)" ); bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT; bytes32 private _CACHED_DOMAIN_SEPARATOR; uint256 private _CACHED_CHAIN_ID; address private _CACHED_THIS; bytes32 private _HASHED_NAME; bytes32 private _HASHED_VERSION; bytes32 private _TYPE_HASH; // END // Settings for the contract (supply, taxes, ...) uint256 private constant MAX = ~uint256(0); uint256 private _tTotal; uint256 private _rTotal; uint256 private _tFeeTotal; uint256 private _totalClaimed; string private _name; string private _version; string private _symbol; uint8 private _decimals; uint256 public _taxFee; uint256 private _previousTaxFee; uint256 public _liquidityFee; uint256 private _previousLiquidityFee; uint256 public _rewardFee; uint256 private _previousRewardFee; mapping(address => uint256) public _personalIncineratorFee; uint256 public _incineratorFee; uint256 private _previousIncineratorFee; address payable public _incineratorAddress; uint256 public _numTokensSellToAddToLiquidity; mapping(address => uint256) private _bought; uint256 private _boughtTotal; uint256 private _MATICRewards; using Address for address; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => uint256) private _claimed; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isCleaned; mapping(address => bool) private _isExcluded; address[] private _excluded; mapping(address => bool) public _blacklist; IUniswapV2Router02 public uniswapV2Router; // Formerly immutable address public uniswapV2Pair; // Formerly immutable address public _routerAddress; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled; bool public tradingEnabled; bool public doSwapForRouter; bool public _transferClaimedEnabled; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify(uint256 tokens, uint256 poly); event AddedMATICReward(uint256 poly); event DoSwapForRouterEnabled(bool enabled); event TradingEnabled(bool eanbled); event AddMATICToRewardpPool(uint256 poly); event ExcludeMaxWalletToken(address indexed account, bool isExcluded); event ClaimedMATIC(address indexed account, uint256 matic); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } fallback() external payable {} receive() external payable {} modifier onlyJanitorOrOwner() { require( janitor() == _msgSender() || owner() == _msgSender(), "Caller not janitor/owner." ); _; } function initialize( address routerAddress, address trustedForwarder ) public override(Ownable, Janitable) initializer { Ownable.initialize(_msgSender(), trustedForwarder); Janitable.initialize(_msgSender(), trustedForwarder); // token vars _tTotal = 2000 * 10 ** 6 * 10 ** 9; _rTotal = (MAX - (MAX % _tTotal)); _name = "Stratosphere POLY V2"; _version = "2"; _symbol = "STRAT"; _decimals = 9; _taxFee = 10; _previousTaxFee = _taxFee; _liquidityFee = 5; _previousLiquidityFee = _liquidityFee; _rewardFee = 30; _previousRewardFee = _rewardFee; _numTokensSellToAddToLiquidity = 100000000000000; _boughtTotal = 0; _MATICRewards = 0; swapAndLiquifyEnabled = true; // Toggle swap & liquify on and off tradingEnabled = true; // To avoid snipers doSwapForRouter = true; // Toggle swap & liquify on and off for transactions to / from the router _transferClaimedEnabled = true; // Transfer claim rights upon transfer of tokens // create a uniswap pair for this new token _routerAddress = routerAddress; _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( _routerAddress ); // Initialize router uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[owner()] = true; // Owner doesn't pay fees (e.g. when adding liquidity) _isExcludedFromFee[address(this)] = true; // Contract address doesn't pay fees _incineratorFee = 17; _previousIncineratorFee = _incineratorFee; _incineratorAddress = payable( 0xC08AF4fb5Dc4E1bb707a384dBA75011028cD67e1 ); emit Transfer(address(0), _msgSender(), _tTotal); //ERC20 Permit bytes32 hashedName = keccak256(bytes(_name)); bytes32 hashedVersion = keccak256(bytes(_version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator( typeHash, hashedName, hashedVersion ); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function boughtBy(address account) public view returns (uint256) { return _bought[account]; } function boughtTotal() public view returns (uint256) { return _boughtTotal; } function transfer( address recipient, uint256 amount ) public override returns (bool) { require(!_blacklist[_msgSender()], "Blacklisted"); _transfer(_msgSender(), recipient, amount); return true; } function allowance( address owner, address spender ) public view override returns (uint256) { return _allowances[owner][spender]; } function approve( address spender, uint256 amount ) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function setTrustedForwarder( address _trustedForwarder ) public override(Ownable, Janitable) onlyJanitorOrOwner { _setTrustedForwarder(_trustedForwarder); Ownable.setTrustedForwarder(_trustedForwarder); Janitable.setTrustedForwarder(_trustedForwarder); } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { require(!_blacklist[sender], "Blacklisted"); _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()] - amount ); return true; } function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue ); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function isCleaned(address account) public view returns (bool) { return _isCleaned[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded"); (uint256 rAmount, , , , , , ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender] - rAmount; _rTotal = _rTotal - rAmount; _tFeeTotal = _tFeeTotal + tAmount; } function reflectionFromToken( uint256 tAmount, bool deductTransferFee ) public view returns (uint256) { require(tAmount <= _tTotal, "Amount > supply"); if (!deductTransferFee) { (uint256 rAmount, , , , , , ) = _getValues(tAmount); return rAmount; } else { (, uint256 rTransferAmount, , , , , ) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection( uint256 rAmount ) public view returns (uint256) { require(rAmount <= _rTotal, "Amount > reflections"); uint256 currentRate = _getRate(); return rAmount / currentRate; } function excludeFromReward(address account) public onlyOwner { require(!_isExcluded[account], "Excluded"); if (_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner { require(_isExcluded[account], "Excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidityAndRewards, uint256 tIncinerator ) = _getValues(tAmount); _transferClaimed(sender, recipient, tAmount); _tOwned[sender] = _tOwned[sender] - tAmount; _rOwned[sender] = _rOwned[sender] - rAmount; _tOwned[recipient] = _tOwned[recipient] + tTransferAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; _takeLiquidityAndRewards(tLiquidityAndRewards, sender); _takeIncinerator(tIncinerator, sender); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function clean(address account) public onlyOwner { _isCleaned[account] = true; } function unclean(address account) public onlyOwner { _isCleaned[account] = false; } function addToBlacklist(address account) public onlyOwner { _blacklist[account] = true; } function removeFromBlacklist(address account) public onlyOwner { _blacklist[account] = false; } function setIncineratorAddress(address account) public onlyOwner { _incineratorAddress = payable(account); } function setIncineratorFeePromille( uint256 incineratorFee ) external onlyOwner { _incineratorFee = incineratorFee; } function setPersonalIncineratorFeePromille( address account, uint256 incineratorFee ) external onlyOwner { _personalIncineratorFee[account] = incineratorFee; } function setTaxFeePromille(uint256 taxFee) external onlyOwner { _taxFee = taxFee; } function setRewardFeePromille(uint256 rewardFee) external onlyOwner { _rewardFee = rewardFee; } function setLiquidityFeePromille(uint256 liquidityFee) external onlyOwner { _liquidityFee = liquidityFee; } function setNumTokensSellToAddToLiquidity( uint256 numTokensSellToAddToLiquidity ) external onlyJanitorOrOwner { _numTokensSellToAddToLiquidity = numTokensSellToAddToLiquidity; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyJanitorOrOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function setTransferClaimedEnabled( bool _enabled ) public onlyJanitorOrOwner { _transferClaimedEnabled = _enabled; } function setTradingEnabled(bool _enabled) public onlyOwner { tradingEnabled = _enabled; emit TradingEnabled(_enabled); } function enableTrading() public onlyJanitorOrOwner { tradingEnabled = true; emit TradingEnabled(true); } function setDoSwapForRouter(bool _enabled) public onlyJanitorOrOwner { doSwapForRouter = _enabled; emit DoSwapForRouterEnabled(_enabled); } function setRouterAddress(address routerAddress) public onlyJanitorOrOwner { _routerAddress = routerAddress; } function setPairAddress(address pairAddress) public onlyJanitorOrOwner { uniswapV2Pair = pairAddress; } function migrateRouter(address routerAddress) external onlyJanitorOrOwner { setRouterAddress(routerAddress); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( _routerAddress ); // Initialize router uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).getPair( address(this), _uniswapV2Router.WETH() ); if (uniswapV2Pair == address(0)) uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal - rFee; _tFeeTotal = _tFeeTotal + tFee; } function _getValues( uint256 tAmount ) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidityAndRewards, uint256 tIncinerator ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidityAndRewards, tIncinerator, _getRate() ); return ( rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidityAndRewards, tIncinerator ); } function _getTValues( uint256 tAmount ) private view returns (uint256, uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidityAndRewards = calculateLiquidityAndRewards(tAmount); uint256 tIncinerator = calculateIncineratorFee(tAmount); uint256 tTransferAmount = tAmount - tFee - tLiquidityAndRewards - tIncinerator; return (tTransferAmount, tFee, tLiquidityAndRewards, tIncinerator); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tLiquidityAndRewards, uint256 tIncinerator, uint256 currentRate ) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount * currentRate; uint256 rFee = tFee * currentRate; uint256 rLiquidityAndRewards = tLiquidityAndRewards * currentRate; uint256 rIncinerator = tIncinerator * currentRate; uint256 rTransferAmount = rAmount - rFee - rLiquidityAndRewards - rIncinerator; return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply / tSupply; } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply ) return (_rTotal, _tTotal); rSupply = rSupply - _rOwned[_excluded[i]]; tSupply = tSupply - _tOwned[_excluded[i]]; } if (rSupply < _rTotal / _tTotal) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeIncinerator(uint256 tIncinerator, address from) private { if (tIncinerator == 0) return; uint256 currentRate = _getRate(); uint256 rIncinerator = tIncinerator * currentRate; _rOwned[_incineratorAddress] = _rOwned[_incineratorAddress] + rIncinerator; if (_isExcluded[_incineratorAddress]) _tOwned[_incineratorAddress] = _tOwned[_incineratorAddress] + tIncinerator; emit Transfer(from, _incineratorAddress, tIncinerator); } function _takeLiquidityAndRewards( uint256 tLiquidityAndRewards, address from ) private { uint256 currentRate = _getRate(); uint256 rLiquidityAndRewards = tLiquidityAndRewards * currentRate; _rOwned[address(this)] = _rOwned[address(this)] + rLiquidityAndRewards; if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)] + tLiquidityAndRewards; emit Transfer(from, address(this), tLiquidityAndRewards); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return (_amount * _taxFee) / 10 ** 3; } function calculateLiquidityFee( uint256 _amount ) private view returns (uint256) { return (_amount * _liquidityFee) / (10 ** 3); } function calculateIncineratorFee( uint256 _amount ) private view returns (uint256) { uint256 fee = _incineratorFee; if (_msgSender() == _incineratorAddress) { fee = 0; } else if (_personalIncineratorFee[_msgSender()] > 0) { fee = _personalIncineratorFee[_msgSender()]; } return (_amount * fee) / (10 ** 3); } function calculateLiquidityAndRewards( uint256 _amount ) private view returns (uint256) { uint256 fee = _liquidityFee + _rewardFee; return (_amount * fee) / 10 ** 3; } function removeAllFee() private { if (_taxFee == 0 && _liquidityFee == 0 && _rewardFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _previousIncineratorFee = _incineratorFee; _previousRewardFee = _rewardFee; _taxFee = 0; _liquidityFee = 0; _incineratorFee = 0; _rewardFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; _rewardFee = _previousRewardFee; _incineratorFee = _previousIncineratorFee; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require( owner != address(0) && spender != address(0), "ERC20: approve zero address" ); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function sweep(address payable recipient) public onlyJanitorOrOwner { (bool success, ) = recipient.call{value: address(this).balance}(""); require(success, "Clean failed"); _MATICRewards = 0; } function addMATICToReward() public payable onlyJanitorOrOwner { require(msg.value >= 0); _MATICRewards = _MATICRewards + msg.value; emit AddMATICToRewardpPool(msg.value); } function _transfer(address from, address to, uint256 amount) private { require( from != address(0) && to != address(0), "ERC20: transfer zero address" ); require(!_isCleaned[from]); require(amount > 0, "Transfer <= zero"); if ( from != owner() && to != owner() && from != janitor() && to != janitor() ) { require(tradingEnabled, "Trading not enabled"); } if (from == uniswapV2Pair) { _boughtTotal = _boughtTotal + amount; _bought[to] = _bought[to] + amount; } else if (to == uniswapV2Pair) { _boughtTotal = _boughtTotal - _bought[from]; _bought[from] = 0; } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= _numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && (doSwapForRouter || (from != _routerAddress && to != _routerAddress)) && swapAndLiquifyEnabled ) { swap(contractTokenBalance); // add liquidity } bool takeFee = true; if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { takeFee = false; } _tokenTransfer(from, to, amount, takeFee); } function swap(uint256 contractTokenBalance) private lockTheSwap { uint256 totalFee = _liquidityFee + _rewardFee; uint256 tokensForLiquidity = ((contractTokenBalance * _liquidityFee) / totalFee) / 2; if (tokensForLiquidity < contractTokenBalance) { // sell tokens uint256 tokensToSell = contractTokenBalance - tokensForLiquidity; uint256 initialBalance = address(this).balance; swapTokensForMATIC(tokensToSell); uint256 acquiredMATIC = address(this).balance - initialBalance; // calculate share for liquidity or rewards uint256 polyForLiquidity = (acquiredMATIC * tokensForLiquidity) / tokensToSell; uint256 polyForRewards = acquiredMATIC - polyForLiquidity; // update rewards _MATICRewards = _MATICRewards + polyForRewards; // add liquidity addLiquidity(tokensForLiquidity, polyForLiquidity); emit SwapAndLiquify(tokensForLiquidity, polyForLiquidity); } } function swapTokensForMATIC(uint256 tokenAmount) private { // Generate the polyswap pair path of token -> MATIC address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( // Make the swap tokenAmount, 0, // accept any amount of MATIC path, address(this), block.timestamp ); } function swapMATICForToken( uint256 polyAmount, address recipient, address token ) internal returns (uint256) { require(!_blacklist[recipient], "You are blacklisted from swaping"); address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(token); uint256 balanceBefore = IERC20(token).balanceOf(recipient); uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{ value: polyAmount }(0, path, recipient, block.timestamp); uint256 tokenAmount = IERC20(token).balanceOf(recipient) - balanceBefore; return tokenAmount; } function addLiquidity(uint256 tokenAmount, uint256 polyAmount) private { // Approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: polyAmount}( // Add liqudity address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable janitor(), block.timestamp ); } function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { uint256 oldTaxFee = _taxFee; uint256 oldLiquidityFee = _liquidityFee; if (!takeFee) { removeAllFee(); } if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if (!takeFee) restoreAllFee(); _taxFee = oldTaxFee; _liquidityFee = oldLiquidityFee; } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidityAndRewards, uint256 tIncinerator ) = _getValues(tAmount); _transferClaimed(sender, recipient, tAmount); _rOwned[sender] = _rOwned[sender] - rAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; _takeLiquidityAndRewards(tLiquidityAndRewards, sender); _takeIncinerator(tIncinerator, sender); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidityAndRewards, uint256 tIncinerator ) = _getValues(tAmount); _transferClaimed(sender, recipient, tAmount); _rOwned[sender] = _rOwned[sender] - rAmount; _tOwned[recipient] = _tOwned[recipient] + tTransferAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; _takeLiquidityAndRewards(tLiquidityAndRewards, sender); _takeIncinerator(tIncinerator, sender); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidityAndRewards, uint256 tIncinerator ) = _getValues(tAmount); _transferClaimed(sender, recipient, tAmount); _tOwned[sender] = _tOwned[sender] - tAmount; _rOwned[sender] = _rOwned[sender] - rAmount; _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; _takeLiquidityAndRewards(tLiquidityAndRewards, sender); _takeIncinerator(tIncinerator, sender); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function totalRewards() public view returns (uint256) { return _MATICRewards; } function rewards(address recipient) public view returns (uint256) { uint256 total = _tTotal - balanceOf(0x000000000000000000000000000000000000dEaD); uint256 brut = (_MATICRewards * balanceOf(recipient)) / total; if (brut > _claimed[recipient]) return brut - _claimed[recipient]; return 0; } function claimed(address recipient) public view returns (uint256) { return _claimed[recipient]; } function _transferClaimed( address sender, address recipient, uint256 tAmount ) private { if (_transferClaimedEnabled) { require(balanceOf(sender) > 0); uint256 proportionClaimed = (_claimed[sender] * (tAmount)) / balanceOf(sender); if (_claimed[sender] > proportionClaimed) _claimed[sender] = _claimed[sender] - proportionClaimed; else _claimed[sender] = 0; _claimed[recipient] = _claimed[recipient] + proportionClaimed; } } function claim() public { require(!_blacklist[_msgSender()], "Blacklisted"); if (_boughtTotal > 0) { uint256 total = _tTotal - balanceOf(0x000000000000000000000000000000000000dEaD); uint256 brut = (_MATICRewards * balanceOf(_msgSender())) / total; require(brut > _claimed[_msgSender()], "Not enough to claim"); uint256 toclaim = brut - _claimed[_msgSender()]; _claimed[_msgSender()] = _claimed[_msgSender()] + toclaim; (bool success, ) = _msgSender().call{value: toclaim}(""); require(success, "Claim failed"); _totalClaimed = _totalClaimed + toclaim; emit ClaimedMATIC(_msgSender(), toclaim); } } function claimToken(address token) public { require(!_blacklist[_msgSender()], "You are blacklisted"); if (_boughtTotal > 0) { uint256 total = _tTotal - balanceOf(0x000000000000000000000000000000000000dEaD); uint256 brut = (_MATICRewards * balanceOf(_msgSender())) / (total); require(brut > _claimed[_msgSender()], "Not enough to claim"); uint256 toclaim = brut - _claimed[_msgSender()]; _claimed[_msgSender()] = _claimed[_msgSender()] + toclaim; uint256 tokenAmount = swapMATICForToken( toclaim, _msgSender(), token ); require(tokenAmount != 0, "Claim failed"); _totalClaimed = _totalClaimed + toclaim; emit ClaimedMATIC(_msgSender(), toclaim); } } function reinvest() public { require(!_blacklist[_msgSender()], "Blacklisted"); if (_boughtTotal > 0) { uint256 total = _tTotal - balanceOf(0x000000000000000000000000000000000000dEaD); uint256 brut = (_MATICRewards * balanceOf(_msgSender())) / total; require(brut > _claimed[_msgSender()], "Not enough to claim"); uint256 toclaim = brut - _claimed[_msgSender()]; _claimed[_msgSender()] = _claimed[_msgSender()] + toclaim; uint256 tokenAmount = swapMATICForToken( toclaim, _msgSender(), address(this) ); require(tokenAmount != 0, "Claim failed"); _totalClaimed = _totalClaimed + toclaim; } } function totalClaimed() public view returns (uint256) { return _totalClaimed; } /** * @dev See {IERC20Permit-permit}. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256( abi.encode( _PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline ) ); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } function nonces(address owner) public view virtual returns (uint256) { return _nonces[owner].current(); } function DOMAIN_SEPARATOR() external view returns (bytes32) { return _domainSeparatorV4(); } function _useNonce( address owner ) internal virtual returns (uint256 current) { Counters.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } //EIP 712 function _domainSeparatorV4() internal view returns (bytes32) { if ( address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID ) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator( _TYPE_HASH, _HASHED_NAME, _HASHED_VERSION ); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256( abi.encode( typeHash, nameHash, versionHash, block.chainid, address(this) ) ); } function _hashTypedDataV4( bytes32 structHash ) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poly","type":"uint256"}],"name":"AddMATICToRewardpPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poly","type":"uint256"}],"name":"AddedMATICReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"matic","type":"uint256"}],"name":"ClaimedMATIC","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"DoSwapForRouterEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMaxWalletToken","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":"previousJanitor","type":"address"},{"indexed":true,"internalType":"address","name":"newJanitor","type":"address"}],"name":"JanitorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"poly","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"eanbled","type":"bool"}],"name":"TradingEnabled","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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_incineratorAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_incineratorFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_personalIncineratorFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_routerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_transferClaimedEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addMATICToReward","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"boughtBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boughtTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"clean","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"doSwapForRouter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTrustedForwarder","outputs":[{"internalType":"address","name":"forwarder","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUnlockTimeJanitor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"},{"internalType":"address","name":"trustedForwarder","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isCleaned","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"janitor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lockJanitor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"name":"migrateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reinvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceJanitorship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setDoSwapForRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setIncineratorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"incineratorFee","type":"uint256"}],"name":"setIncineratorFeePromille","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePromille","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensSellToAddToLiquidity","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"}],"name":"setPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"incineratorFee","type":"uint256"}],"name":"setPersonalIncineratorFeePromille","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rewardFee","type":"uint256"}],"name":"setRewardFeePromille","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePromille","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTradingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTransferClaimedEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_trustedForwarder","type":"address"}],"name":"setTrustedForwarder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"sweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newJanitor","type":"address"}],"name":"transferJanitorship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unclean","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockJanitor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b50615ade80620000216000396000f3fe6080604052600436106104895760003560e01c80636bc87c3a11610253578063b3f22ce311610143578063dcd747d5116100bb578063f0f165af11610082578063f0f165af14610eb8578063f2fde38b14610ed8578063f5d6c33214610ef8578063fc7be37b14610f18578063fdb5a03e14610f38578063fdf8c74014610f4d57005b8063dcd747d514610dfd578063dd46706414610e12578063dd62ed3e14610e32578063de4c785514610e78578063ea2f0b3714610e9857005b8063ce1b815f1161010a578063ce1b815f14610d49578063d505accf14610d67578063d54ad2a114610d87578063d7aeee0714610d9c578063d9e6646014610dbd578063da74222814610ddd57005b8063b3f22ce314610c90578063b6cf20e314610ca6578063c2e5ec0414610cd3578063c49b9a8014610cf3578063c884ef8314610d1357005b80638da5cb5b116101d6578063a20623ce1161019d578063a20623ce14610bb2578063a22d483214610be2578063a3ef6c4014610c02578063a457c2d714610c3b578063a69df4b514610c5b578063a9059cbb14610c7057005b80638da5cb5b14610b2a57806395d89b4114610b48578063966339b614610b5d5780639a1ca46614610b7d5780639ce8c4ff14610b9d57005b80637e5583b81161021a5780637e5583b814610a865780637ecebe0014610aa657806388f8202014610ac65780638a8c523c14610aff5780638b568ced14610b1457005b80636bc87c3a146109fb57806370a0823114610a11578063715018a614610a315780637a5ba3a514610a465780637d59f43c14610a6657005b80633b124fe7116103795780634e71d92d116102f1578063572b6c05116102b8578063572b6c0514610939578063594e5a14146109685780635a6a33a3146109885780635e3ffee6146109a8578063602bc62b146109de57806364243ad7146109f357005b80634e71d92d1461089557806351fde4bb146108aa57806352390c02146108c05780635342acb4146108e0578063537df3b61461091957005b80634549b039116103405780634549b039146107de57806345993a1e146107fe578063485cc9551461081357806349bd5a5e146108335780634a74bb02146108535780634ada218b1461087457005b80633b124fe7146107485780633bd5d1731461075e57806341cb87fc1461077e578063437823ec1461079e57806344337ea1146107be57005b806318160ddd1161040c57806332f289cf116103d357806332f289cf1461069357806333443cda146106b35780633644e515146106d35780633685d419146106e8578063393ca00114610708578063395093511461072857005b806318160ddd146105fe57806323b872dd1461061357806325a64e8e146106335780632d83811914610651578063313ce5671461067157005b806313114a9d1161045057806313114a9d1461055057806316653fee146105655780631694505e14610586578063169b2623146105be57806317688223146105de57005b806301681a621461049257806306fdde03146104b25780630700037d146104dd578063095ea7b31461050b5780630e15561a1461053b57005b3661049057005b005b34801561049e57600080fd5b506104906104ad3660046152a8565b610f62565b3480156104be57600080fd5b506104c7611083565b6040516104d491906152c5565b60405180910390f35b3480156104e957600080fd5b506104fd6104f83660046152a8565b611115565b6040519081526020016104d4565b34801561051757600080fd5b5061052b610526366004615313565b6111ad565b60405190151581526020016104d4565b34801561054757600080fd5b506024546104fd565b34801561055c57600080fd5b506011546104fd565b34801561057157600080fd5b5060305461052b90600160c01b900460ff1681565b34801561059257600080fd5b50602e546105a6906001600160a01b031681565b6040516001600160a01b0390911681526020016104d4565b3480156105ca57600080fd5b506104906105d93660046152a8565b6111cb565b3480156105ea57600080fd5b506104906105f936600461533f565b611224565b34801561060a57600080fd5b50600f546104fd565b34801561061f57600080fd5b5061052b61062e366004615358565b61125e565b34801561063f57600080fd5b506004546001600160a01b03166105a6565b34801561065d57600080fd5b506104fd61066c36600461533f565b61130a565b34801561067d57600080fd5b5060165460405160ff90911681526020016104d4565b34801561069f57600080fd5b506104906106ae3660046152a8565b611372565b3480156106bf57600080fd5b506104906106ce36600461533f565b6115a9565b3480156106df57600080fd5b506104fd6115e3565b3480156106f457600080fd5b506104906107033660046152a8565b6115f2565b34801561071457600080fd5b506104906107233660046153ae565b611783565b34801561073457600080fd5b5061052b610743366004615313565b611858565b34801561075457600080fd5b506104fd60175481565b34801561076a57600080fd5b5061049061077936600461533f565b6118a7565b34801561078a57600080fd5b506104906107993660046152a8565b611966565b3480156107aa57600080fd5b506104906107b93660046152a8565b611a05565b3480156107ca57600080fd5b506104906107d93660046152a8565b611a5e565b3480156107ea57600080fd5b506104fd6107f93660046153c9565b611ab7565b34801561080a57600080fd5b50610490611b38565b34801561081f57600080fd5b5061049061082e3660046153f5565b611c04565b34801561083f57600080fd5b50602f546105a6906001600160a01b031681565b34801561085f57600080fd5b5060305461052b90600160a81b900460ff1681565b34801561088057600080fd5b5060305461052b90600160b01b900460ff1681565b3480156108a157600080fd5b50610490612132565b3480156108b657600080fd5b506104fd601b5481565b3480156108cc57600080fd5b506104906108db3660046152a8565b612386565b3480156108ec57600080fd5b5061052b6108fb3660046152a8565b6001600160a01b031660009081526029602052604090205460ff1690565b34801561092557600080fd5b506104906109343660046152a8565b6124b4565b34801561094557600080fd5b5061052b6109543660046152a8565b6000546001600160a01b0391821691161490565b34801561097457600080fd5b506104906109833660046153ae565b61250a565b34801561099457600080fd5b506104906109a336600461533f565b6125a5565b3480156109b457600080fd5b506104fd6109c33660046152a8565b6001600160a01b031660009081526022602052604090205490565b3480156109ea57600080fd5b506003546104fd565b6104906125df565b348015610a0757600080fd5b506104fd60195481565b348015610a1d57600080fd5b506104fd610a2c3660046152a8565b6126a3565b348015610a3d57600080fd5b50610490612702565b348015610a5257600080fd5b50610490610a61366004615313565b61276f565b348015610a7257600080fd5b50610490610a813660046152a8565b6127c0565b348015610a9257600080fd5b50610490610aa13660046152a8565b612b40565b348015610ab257600080fd5b506104fd610ac13660046152a8565b612c28565b348015610ad257600080fd5b5061052b610ae13660046152a8565b6001600160a01b03166000908152602b602052604090205460ff1690565b348015610b0b57600080fd5b50610490612c46565b348015610b2057600080fd5b506104fd601e5481565b348015610b3657600080fd5b506001546001600160a01b03166105a6565b348015610b5457600080fd5b506104c7612d07565b348015610b6957600080fd5b506020546105a6906001600160a01b031681565b348015610b8957600080fd5b50610490610b9836600461533f565b612d16565b348015610ba957600080fd5b506006546104fd565b348015610bbe57600080fd5b5061052b610bcd3660046152a8565b602d6020526000908152604090205460ff1681565b348015610bee57600080fd5b50610490610bfd3660046152a8565b612d50565b348015610c0e57600080fd5b5061052b610c1d3660046152a8565b6001600160a01b03166000908152602a602052604090205460ff1690565b348015610c4757600080fd5b5061052b610c56366004615313565b612def565b348015610c6757600080fd5b50610490612e3e565b348015610c7c57600080fd5b5061052b610c8b366004615313565b612f0a565b348015610c9c57600080fd5b506104fd60215481565b348015610cb257600080fd5b506104fd610cc13660046152a8565b601d6020526000908152604090205481565b348015610cdf57600080fd5b50610490610cee3660046153ae565b612f64565b348015610cff57600080fd5b50610490610d0e3660046153ae565b612fe6565b348015610d1f57600080fd5b506104fd610d2e3660046152a8565b6001600160a01b031660009081526027602052604090205490565b348015610d5557600080fd5b506000546001600160a01b03166105a6565b348015610d7357600080fd5b50610490610d8236600461542e565b6130b0565b348015610d9357600080fd5b506012546104fd565b348015610da857600080fd5b5060305461052b90600160b81b900460ff1681565b348015610dc957600080fd5b506030546105a6906001600160a01b031681565b348015610de957600080fd5b50610490610df83660046152a8565b613214565b348015610e0957600080fd5b506023546104fd565b348015610e1e57600080fd5b50610490610e2d36600461533f565b6132ac565b348015610e3e57600080fd5b506104fd610e4d3660046153f5565b6001600160a01b03918216600090815260286020908152604080832093909416825291909152205490565b348015610e8457600080fd5b50610490610e933660046152a8565b61333c565b348015610ea457600080fd5b50610490610eb33660046152a8565b613392565b348015610ec457600080fd5b50610490610ed336600461533f565b6133e8565b348015610ee457600080fd5b50610490610ef33660046152a8565b61346a565b348015610f0457600080fd5b50610490610f133660046152a8565b61354e565b348015610f2457600080fd5b50610490610f3336600461533f565b6135a5565b348015610f4457600080fd5b50610490613635565b348015610f5957600080fd5b506104906137fa565b610f6a613867565b6001600160a01b0316610f856004546001600160a01b031690565b6001600160a01b03161480610fc35750610f9d613867565b6001600160a01b0316610fb86001546001600160a01b031690565b6001600160a01b0316145b610fe85760405162461bcd60e51b8152600401610fdf906154a5565b60405180910390fd5b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114611035576040519150601f19603f3d011682016040523d82523d6000602084013e61103a565b606091505b505090508061107a5760405162461bcd60e51b815260206004820152600c60248201526b10db19585b8819985a5b195960a21b6044820152606401610fdf565b50506000602455565b606060138054611092906154dc565b80601f01602080910402602001604051908101604052809291908181526020018280546110be906154dc565b801561110b5780601f106110e05761010080835404028352916020019161110b565b820191906000526020600020905b8154815290600101906020018083116110ee57829003601f168201915b5050505050905090565b60008061112361dead6126a3565b600f546111309190615526565b905060008161113e856126a3565b60245461114b9190615539565b6111559190615566565b6001600160a01b0385166000908152602760205260409020549091508111156111a3576001600160a01b03841660009081526027602052604090205461119b9082615526565b949350505050565b5060009392505050565b60006111c16111ba613867565b848461389b565b5060015b92915050565b6111d3613867565b6001546001600160a01b039081169116146112005760405162461bcd60e51b8152600401610fdf9061557a565b6001600160a01b03166000908152602a60205260409020805460ff19166001179055565b61122c613867565b6001546001600160a01b039081169116146112595760405162461bcd60e51b8152600401610fdf9061557a565b601755565b6001600160a01b0383166000908152602d602052604081205460ff16156112975760405162461bcd60e51b8152600401610fdf906155af565b6112a2848484613968565b611300846112ae613867565b6001600160a01b038716600090815260286020526040812086916112d0613867565b6001600160a01b03166001600160a01b03168152602001908152602001600020546112fb9190615526565b61389b565b5060019392505050565b60006010548211156113555760405162461bcd60e51b8152602060048201526014602482015273416d6f756e74203e207265666c656374696f6e7360601b6044820152606401610fdf565b600061135f613cc1565b905061136b8184615566565b9392505050565b602d600061137e613867565b6001600160a01b0316815260208101919091526040016000205460ff16156113de5760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b6044820152606401610fdf565b602354156115a65760006113f361dead6126a3565b600f546114009190615526565b9050600081611410610a2c613867565b60245461141d9190615539565b6114279190615566565b905060276000611435613867565b6001600160a01b03166001600160a01b031681526020019081526020016000205481116114745760405162461bcd60e51b8152600401610fdf906155d4565b600060276000611482613867565b6001600160a01b031681526020810191909152604001600020546114a69083615526565b905080602760006114b5613867565b6001600160a01b03166001600160a01b03168152602001908152602001600020546114e09190615601565b602760006114ec613867565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060006115248261151e613867565b87613ce4565b9050806000036115465760405162461bcd60e51b8152600401610fdf90615614565b816012546115549190615601565b60125561155f613867565b6001600160a01b03167f706d86f303d3982fd109c247d05ba2d25bb4f4eb0565d5ecf3849199045f78c88360405161159991815260200190565b60405180910390a2505050505b50565b6115b1613867565b6001546001600160a01b039081169116146115de5760405162461bcd60e51b8152600401610fdf9061557a565b601955565b60006115ed613f8d565b905090565b6115fa613867565b6001546001600160a01b039081169116146116275760405162461bcd60e51b8152600401610fdf9061557a565b6001600160a01b0381166000908152602b602052604090205460ff1661165f5760405162461bcd60e51b8152600401610fdf9061563a565b60005b602c5481101561177f57816001600160a01b0316602c82815481106116895761168961565c565b6000918252602090912001546001600160a01b03160361176d57602c80546116b390600190615526565b815481106116c3576116c361565c565b600091825260209091200154602c80546001600160a01b0390921691839081106116ef576116ef61565c565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152602682526040808220829055602b90925220805460ff19169055602c80548061174757611747615672565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061177781615688565b915050611662565b5050565b61178b613867565b6001600160a01b03166117a66004546001600160a01b031690565b6001600160a01b031614806117e457506117be613867565b6001600160a01b03166117d96001546001600160a01b031690565b6001600160a01b0316145b6118005760405162461bcd60e51b8152600401610fdf906154a5565b60308054821515600160b81b0260ff60b81b199091161790556040517ff464392e7f7ab74e43063c14fdac92dc245351da604f9cfe7f7a17a483ba39d09061184d90831515815260200190565b60405180910390a150565b60006111c1611865613867565b848460286000611873613867565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546112fb9190615601565b60006118b1613867565b6001600160a01b0381166000908152602b602052604090205490915060ff16156118ed5760405162461bcd60e51b8152600401610fdf9061563a565b60006118f883613fc8565b505050506001600160a01b038516600090815260256020526040902054929350611926928492509050615526565b6001600160a01b03831660009081526025602052604090205560105461194d908290615526565b60105560115461195e908490615601565b601155505050565b61196e613867565b6001600160a01b03166119896004546001600160a01b031690565b6001600160a01b031614806119c757506119a1613867565b6001600160a01b03166119bc6001546001600160a01b031690565b6001600160a01b0316145b6119e35760405162461bcd60e51b8152600401610fdf906154a5565b603080546001600160a01b0319166001600160a01b0392909216919091179055565b611a0d613867565b6001546001600160a01b03908116911614611a3a5760405162461bcd60e51b8152600401610fdf9061557a565b6001600160a01b03166000908152602960205260409020805460ff19166001179055565b611a66613867565b6001546001600160a01b03908116911614611a935760405162461bcd60e51b8152600401610fdf9061557a565b6001600160a01b03166000908152602d60205260409020805460ff19166001179055565b6000600f54831115611afd5760405162461bcd60e51b815260206004820152600f60248201526e416d6f756e74203e20737570706c7960881b6044820152606401610fdf565b81611b1d576000611b0d84613fc8565b509496506111c595505050505050565b6000611b2884613fc8565b509396506111c595505050505050565b6005546001600160a01b03163314611b625760405162461bcd60e51b8152600401610fdf906156a1565b6006544211611bb35760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610fdf565b6005546004546040516001600160a01b039283169290911690600080516020615a8983398151915290600090a3600554600480546001600160a01b0319166001600160a01b03909216919091179055565b600054600160a81b900460ff1615808015611c2c57506000546001600160a01b90910460ff16105b80611c4d5750303b158015611c4d5750600054600160a01b900460ff166001145b611cb05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610fdf565b6000805460ff60a01b1916600160a01b1790558015611cdd576000805460ff60a81b1916600160a81b1790555b611cee611ce8613867565b83614023565b611cff611cf9613867565b8361408c565b671bc16d674ec80000600f819055611d19906000196156e4565b611d2590600019615526565b60105560408051808201909152601481527329ba3930ba37b9b83432b932902827a62c902b1960611b6020820152601390611d609082615754565b506040805180820190915260018152601960f91b6020820152601490611d869082615754565b5060408051808201909152600581526414d514905560da1b6020820152601590611db09082615754565b506016805460ff19166009179055600a601781905560185560056019819055601a55601e601b819055601c55655af3107a4000602155600060238190556024819055603080546001600160a01b038616600164ffffffff0160a01b031990911617630101010160a81b17905560105490602590611e2b613867565b6001600160a01b039081168252602080830193909352604091820160002093909355603054815163c45a015560e01b81529151931692839263c45a015592600480820193918290030181865afa158015611e89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ead9190615814565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611efa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1e9190615814565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611f6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8f9190615814565b602f80546001600160a01b03199081166001600160a01b0393841617909155602e80548216848416179055600180549092166000908152602960209081526040808320805460ff1990811687179091553084529220805490921690931790556011601e819055601f5581541673c08af4fb5dc4e1bb707a384dba75011028cd67e117905561201b613867565b6001600160a01b031660006001600160a01b0316600080516020615a69833981519152600f5460405161205091815260200190565b60405180910390a3600060136040516120699190615831565b60405180910390209050600060146040516120849190615831565b604051908190039020600c839055600d81905546600a5590507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6120c98184846140f5565b600955600b80546001600160a01b03191630179055600e5550508115905061212d576000805460ff60a81b19169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050565b602d600061213e613867565b6001600160a01b0316815260208101919091526040016000205460ff16156121785760405162461bcd60e51b8152600401610fdf906155af565b6023541561238457600061218d61dead6126a3565b600f5461219a9190615526565b90506000816121aa610a2c613867565b6024546121b79190615539565b6121c19190615566565b9050602760006121cf613867565b6001600160a01b03166001600160a01b0316815260200190815260200160002054811161220e5760405162461bcd60e51b8152600401610fdf906155d4565b60006027600061221c613867565b6001600160a01b031681526020810191909152604001600020546122409083615526565b9050806027600061224f613867565b6001600160a01b03166001600160a01b031681526020019081526020016000205461227a9190615601565b60276000612286613867565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060006122b4613867565b6001600160a01b03168260405160006040518083038185875af1925050503d80600081146122fe576040519150601f19603f3d011682016040523d82523d6000602084013e612303565b606091505b50509050806123245760405162461bcd60e51b8152600401610fdf90615614565b816012546123329190615601565b60125561233d613867565b6001600160a01b03167f706d86f303d3982fd109c247d05ba2d25bb4f4eb0565d5ecf3849199045f78c88360405161237791815260200190565b60405180910390a2505050505b565b61238e613867565b6001546001600160a01b039081169116146123bb5760405162461bcd60e51b8152600401610fdf9061557a565b6001600160a01b0381166000908152602b602052604090205460ff16156123f45760405162461bcd60e51b8152600401610fdf9061563a565b6001600160a01b0381166000908152602560205260409020541561244e576001600160a01b0381166000908152602560205260409020546124349061130a565b6001600160a01b0382166000908152602660205260409020555b6001600160a01b03166000818152602b60205260408120805460ff19166001908117909155602c805491820181559091527f7416c943b4a09859521022fd2e90eac0dd9026dad28fa317782a135f28a860910180546001600160a01b0319169091179055565b6124bc613867565b6001546001600160a01b039081169116146124e95760405162461bcd60e51b8152600401610fdf9061557a565b6001600160a01b03166000908152602d60205260409020805460ff19169055565b612512613867565b6001600160a01b031661252d6004546001600160a01b031690565b6001600160a01b0316148061256b5750612545613867565b6001600160a01b03166125606001546001600160a01b031690565b6001600160a01b0316145b6125875760405162461bcd60e51b8152600401610fdf906154a5565b60308054911515600160c01b0260ff60c01b19909216919091179055565b6125ad613867565b6001546001600160a01b039081169116146125da5760405162461bcd60e51b8152600401610fdf9061557a565b601e55565b6125e7613867565b6001600160a01b03166126026004546001600160a01b031690565b6001600160a01b03161480612640575061261a613867565b6001600160a01b03166126356001546001600160a01b031690565b6001600160a01b0316145b61265c5760405162461bcd60e51b8152600401610fdf906154a5565b3460245461266a9190615601565b6024556040513481527fe886af6e2aeffc62ccede70e056589559fb700a6686e016bf96dc6c933f75d94906020015b60405180910390a1565b6001600160a01b0381166000908152602b602052604081205460ff16156126e057506001600160a01b031660009081526026602052604090205490565b6001600160a01b0382166000908152602560205260409020546111c59061130a565b61270a613867565b6001546001600160a01b039081169116146127375760405162461bcd60e51b8152600401610fdf9061557a565b6001546040516000916001600160a01b031690600080516020615a49833981519152908390a3600180546001600160a01b0319169055565b612777613867565b6001546001600160a01b039081169116146127a45760405162461bcd60e51b8152600401610fdf9061557a565b6001600160a01b039091166000908152601d6020526040902055565b6127c8613867565b6001600160a01b03166127e36004546001600160a01b031690565b6001600160a01b0316148061282157506127fb613867565b6001600160a01b03166128166001546001600160a01b031690565b6001600160a01b0316145b61283d5760405162461bcd60e51b8152600401610fdf906154a5565b61284681611966565b6030546040805163c45a015560e01b815290516001600160a01b0390921691829163c45a01559160048083019260209291908290030181865afa158015612891573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b59190615814565b6001600160a01b031663e6a4390530836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612902573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129269190615814565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015612971573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129959190615814565b602f80546001600160a01b0319166001600160a01b03929092169182179055612b1d57806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a1a9190615814565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a8b9190615814565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015612ad8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612afc9190615814565b602f80546001600160a01b0319166001600160a01b03929092169190911790555b602e80546001600160a01b0319166001600160a01b039290921691909117905550565b612b48613867565b6004546001600160a01b03908116911614612b755760405162461bcd60e51b8152600401610fdf906158a7565b6001600160a01b038116612bde5760405162461bcd60e51b815260206004820152602a60248201527f4a616e697461626c653a206e6577206a616e69746f7220697320746865207a65604482015269726f206164647265737360b01b6064820152608401610fdf565b6004546040516001600160a01b03808416921690600080516020615a8983398151915290600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152600760205260408120546111c5565b612c4e613867565b6001600160a01b0316612c696004546001600160a01b031690565b6001600160a01b03161480612ca75750612c81613867565b6001600160a01b0316612c9c6001546001600160a01b031690565b6001600160a01b0316145b612cc35760405162461bcd60e51b8152600401610fdf906154a5565b6030805460ff60b01b1916600160b01b179055604051600181527fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a90602001612699565b606060158054611092906154dc565b612d1e613867565b6001546001600160a01b03908116911614612d4b5760405162461bcd60e51b8152600401610fdf9061557a565b601b55565b612d58613867565b6001600160a01b0316612d736004546001600160a01b031690565b6001600160a01b03161480612db15750612d8b613867565b6001600160a01b0316612da66001546001600160a01b031690565b6001600160a01b0316145b612dcd5760405162461bcd60e51b8152600401610fdf906154a5565b602f80546001600160a01b0319166001600160a01b0392909216919091179055565b60006111c1612dfc613867565b848460286000612e0a613867565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546112fb9190615526565b6002546001600160a01b03163314612e685760405162461bcd60e51b8152600401610fdf906156a1565b6003544211612eb95760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610fdf565b6002546001546040516001600160a01b039283169290911690600080516020615a4983398151915290600090a3600254600180546001600160a01b0319166001600160a01b03909216919091179055565b6000602d6000612f18613867565b6001600160a01b0316815260208101919091526040016000205460ff1615612f525760405162461bcd60e51b8152600401610fdf906155af565b6111c1612f5d613867565b8484613968565b612f6c613867565b6001546001600160a01b03908116911614612f995760405162461bcd60e51b8152600401610fdf9061557a565b60308054821515600160b01b0260ff60b01b199091161790556040517fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a9061184d90831515815260200190565b612fee613867565b6001600160a01b03166130096004546001600160a01b031690565b6001600160a01b031614806130475750613021613867565b6001600160a01b031661303c6001546001600160a01b031690565b6001600160a01b0316145b6130635760405162461bcd60e51b8152600401610fdf906154a5565b60308054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061184d90831515815260200190565b834211156131005760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610fdf565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861312f8c61413e565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061318a82614166565b9050600061319a828787876141b4565b9050896001600160a01b0316816001600160a01b0316146131fd5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610fdf565b6132088a8a8a61389b565b50505050505050505050565b61321c613867565b6001600160a01b03166132376004546001600160a01b031690565b6001600160a01b03161480613275575061324f613867565b6001600160a01b031661326a6001546001600160a01b031690565b6001600160a01b0316145b6132915760405162461bcd60e51b8152600401610fdf906154a5565b61329a816141dc565b6132a3816141fe565b6115a68161423c565b6132b4613867565b6001546001600160a01b039081169116146132e15760405162461bcd60e51b8152600401610fdf9061557a565b60018054600280546001600160a01b03199081166001600160a01b038416179091551690556133108142615601565b6003556001546040516000916001600160a01b031690600080516020615a49833981519152908390a350565b613344613867565b6001546001600160a01b039081169116146133715760405162461bcd60e51b8152600401610fdf9061557a565b6001600160a01b03166000908152602a60205260409020805460ff19169055565b61339a613867565b6001546001600160a01b039081169116146133c75760405162461bcd60e51b8152600401610fdf9061557a565b6001600160a01b03166000908152602960205260409020805460ff19169055565b6133f0613867565b6001600160a01b031661340b6004546001600160a01b031690565b6001600160a01b031614806134495750613423613867565b6001600160a01b031661343e6001546001600160a01b031690565b6001600160a01b0316145b6134655760405162461bcd60e51b8152600401610fdf906154a5565b602155565b613472613867565b6001546001600160a01b0390811691161461349f5760405162461bcd60e51b8152600401610fdf9061557a565b6001600160a01b0381166135045760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610fdf565b6001546040516001600160a01b03808416921690600080516020615a4983398151915290600090a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b613556613867565b6001546001600160a01b039081169116146135835760405162461bcd60e51b8152600401610fdf9061557a565b602080546001600160a01b0319166001600160a01b0392909216919091179055565b6135ad613867565b6004546001600160a01b039081169116146135da5760405162461bcd60e51b8152600401610fdf906158a7565b60048054600580546001600160a01b03199081166001600160a01b038416179091551690556136098142615601565b6006556004546040516000916001600160a01b031690600080516020615a89833981519152908390a350565b602d6000613641613867565b6001600160a01b0316815260208101919091526040016000205460ff161561367b5760405162461bcd60e51b8152600401610fdf906155af565b6023541561238457600061369061dead6126a3565b600f5461369d9190615526565b90506000816136ad610a2c613867565b6024546136ba9190615539565b6136c49190615566565b9050602760006136d2613867565b6001600160a01b03166001600160a01b031681526020019081526020016000205481116137115760405162461bcd60e51b8152600401610fdf906155d4565b60006027600061371f613867565b6001600160a01b031681526020810191909152604001600020546137439083615526565b90508060276000613752613867565b6001600160a01b03166001600160a01b031681526020019081526020016000205461377d9190615601565b60276000613789613867565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060006137c1826137bb613867565b30613ce4565b9050806000036137e35760405162461bcd60e51b8152600401610fdf90615614565b816012546137f19190615601565b60125550505050565b613802613867565b6004546001600160a01b0390811691161461382f5760405162461bcd60e51b8152600401610fdf906158a7565b6004546040516000916001600160a01b031690600080516020615a89833981519152908390a3600480546001600160a01b0319169055565b60006014361080159061388457506000546001600160a01b031633145b15613896575060131936013560601c90565b503390565b6001600160a01b038316158015906138bb57506001600160a01b03821615155b6139075760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20617070726f7665207a65726f206164647265737300000000006044820152606401610fdf565b6001600160a01b0383811660008181526028602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383161580159061398857506001600160a01b03821615155b6139d45760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e73666572207a65726f2061646472657373000000006044820152606401610fdf565b6001600160a01b0383166000908152602a602052604090205460ff16156139fa57600080fd5b60008111613a3d5760405162461bcd60e51b815260206004820152601060248201526f5472616e73666572203c3d207a65726f60801b6044820152606401610fdf565b6001546001600160a01b03848116911614801590613a6957506001546001600160a01b03838116911614155b8015613a8357506004546001600160a01b03848116911614155b8015613a9d57506004546001600160a01b03838116911614155b15613af157603054600160b01b900460ff16613af15760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610fdf565b602f546001600160a01b0390811690841603613b5a5780602354613b159190615601565b6023556001600160a01b038216600090815260226020526040902054613b3c908290615601565b6001600160a01b038316600090815260226020526040902055613bb3565b602f546001600160a01b0390811690831603613bb3576001600160a01b038316600090815260226020526040902054602354613b969190615526565b6023556001600160a01b0383166000908152602260205260408120555b6000613bbe306126a3565b60215490915081108015908190613bdf5750603054600160a01b900460ff16155b8015613bf95750602f546001600160a01b03868116911614155b8015613c3f5750603054600160b81b900460ff1680613c3f57506030546001600160a01b03868116911614801590613c3f57506030546001600160a01b03858116911614155b8015613c545750603054600160a81b900460ff165b15613c6257613c6282614271565b6001600160a01b03851660009081526029602052604090205460019060ff1680613ca457506001600160a01b03851660009081526029602052604090205460ff165b15613cad575060005b613cb986868684614382565b505050505050565b6000806000613cce61451a565b9092509050613cdd8183615566565b9250505090565b6001600160a01b0382166000908152602d602052604081205460ff1615613d4d5760405162461bcd60e51b815260206004820181905260248201527f596f752061726520626c61636b6c69737465642066726f6d2073776170696e676044820152606401610fdf565b6040805160028082526060820183526000926020830190803683375050602e54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015613db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ddb9190615814565b81600081518110613dee57613dee61565c565b60200260200101906001600160a01b031690816001600160a01b0316815250508281600181518110613e2257613e2261565c565b6001600160a01b0392831660209182029290920101526040516370a0823160e01b815285821660048201526000918516906370a0823190602401602060405180830381865afa158015613e79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e9d91906158eb565b602e5460405163b6f9de9560e01b81529192506001600160a01b03169063b6f9de95908890613ed79060009087908b904290600401615948565b6000604051808303818588803b158015613ef057600080fd5b505af1158015613f04573d6000803e3d6000fd5b50506040516370a0823160e01b81526001600160a01b03898116600483015260009450859350881691506370a0823190602401602060405180830381865afa158015613f54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f7891906158eb565b613f829190615526565b979650505050505050565b600b546000906001600160a01b031630148015613fab5750600a5446145b15613fb7575060095490565b6115ed600e54600c54600d546140f5565b6000806000806000806000806000806000613fe28c61469d565b935093509350935060008060006140038f878787613ffe613cc1565b6146fc565b919f509d509b509599509397509195509350505050919395979092949650565b600054600160a81b900460ff1661404c5760405162461bcd60e51b8152600401610fdf9061597d565b600180546001600160a01b0319166001600160a01b038416908117909155604051600090600080516020615a49833981519152908290a361177f816141dc565b600054600160a81b900460ff166140b55760405162461bcd60e51b8152600401610fdf9061597d565b600480546001600160a01b0319166001600160a01b038416908117909155604051600090600080516020615a89833981519152908290a361177f816141dc565b6040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b6001600160a01b03811660009081526007602052604090208054600181018255905b50919050565b60006111c5614173613f8d565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008060006141c58787878761476e565b915091506141d281614832565b5095945050505050565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b614206613867565b6001546001600160a01b039081169116146142335760405162461bcd60e51b8152600401610fdf9061557a565b6115a6816141dc565b614244613867565b6004546001600160a01b039081169116146142335760405162461bcd60e51b8152600401610fdf906158a7565b6030805460ff60a01b1916600160a01b179055601b5460195460009161429691615601565b90506000600282601954856142ab9190615539565b6142b59190615566565b6142bf9190615566565b9050828110156143705760006142d58285615526565b9050476142e18261497c565b60006142ed8247615526565b90506000836142fc8684615539565b6143069190615566565b905060006143148284615526565b9050806024546143249190615601565b6024556143318683614ace565b60408051878152602081018490527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150505050505b50506030805460ff60a01b1916905550565b6017546019548261439557614395614ba3565b6001600160a01b0386166000908152602b602052604090205460ff1680156143d657506001600160a01b0385166000908152602b602052604090205460ff16155b156143eb576143e6868686614bf2565b6144e9565b6001600160a01b0386166000908152602b602052604090205460ff1615801561442c57506001600160a01b0385166000908152602b602052604090205460ff165b1561443c576143e6868686614d21565b6001600160a01b0386166000908152602b602052604090205460ff1615801561447e57506001600160a01b0385166000908152602b602052604090205460ff16155b1561448e576143e6868686614dd9565b6001600160a01b0386166000908152602b602052604090205460ff1680156144ce57506001600160a01b0385166000908152602b602052604090205460ff165b156144de576143e6868686614e2a565b6144e9868686614dd9565b8261450b5761450b601854601755601a54601955601c54601b55601f54601e55565b60179190915560195550505050565b601054600f546000918291825b602c5481101561466c578260256000602c84815481106145495761454961565c565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806145b457508160266000602c848154811061458d5761458d61565c565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156145ca57601054600f54945094505050509091565b60256000602c83815481106145e1576145e161565c565b60009182526020808320909101546001600160a01b031683528201929092526040019020546146109084615526565b925060266000602c83815481106146295761462961565c565b60009182526020808320909101546001600160a01b031683528201929092526040019020546146589083615526565b91508061466481615688565b915050614527565b50600f5460105461467d9190615566565b82101561469457601054600f549350935050509091565b90939092509050565b60008060008060006146ae86614eab565b905060006146bb87614ec8565b905060006146c888614ef4565b9050600081836146d8868c615526565b6146e29190615526565b6146ec9190615526565b9993985091965094509092505050565b600080808061470b858a615539565b90506000614719868a615539565b90506000614727878a615539565b90506000614735888a615539565b9050600081836147458688615526565b61474f9190615526565b6147599190615526565b949d949c50929a509298505050505050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156147a55750600090506003614829565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156147f9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661482257600060019250925050614829565b9150600090505b94509492505050565b6000816004811115614846576148466159c8565b0361484e5750565b6001816004811115614862576148626159c8565b036148af5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610fdf565b60028160048111156148c3576148c36159c8565b036149105760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610fdf565b6003816004811115614924576149246159c8565b036115a65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610fdf565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106149b1576149b161565c565b6001600160a01b03928316602091820292909201810191909152602e54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015614a0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614a2e9190615814565b81600181518110614a4157614a4161565c565b6001600160a01b039283166020918202929092010152602e54614a67913091168461389b565b602e5460405163791ac94760e01b81526001600160a01b039091169063791ac94790614aa09085906000908690309042906004016159de565b600060405180830381600087803b158015614aba57600080fd5b505af1158015613cb9573d6000803e3d6000fd5b602e54614ae69030906001600160a01b03168461389b565b602e546001600160a01b031663f305d719823085600080614b0f6004546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015614b77573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190614b9c9190615a1a565b5050505050565b601754158015614bb35750601954155b8015614bbf5750601b54155b15614bc657565b6017805460185560198054601a55601e8054601f55601b8054601c556000938490559183905582905555565b6000806000806000806000614c0688613fc8565b9650965096509650965096509650614c1f8a8a8a614f97565b6001600160a01b038a16600090815260266020526040902054614c43908990615526565b6001600160a01b038b16600090815260266020908152604080832093909355602590522054614c73908890615526565b6001600160a01b03808c1660009081526025602052604080822093909355908b1681522054614ca3908790615601565b6001600160a01b038a16600090815260256020526040902055614cc6828b6150b9565b614cd0818b615174565b614cda858461526d565b886001600160a01b03168a6001600160a01b0316600080516020615a6983398151915286604051614d0d91815260200190565b60405180910390a350505050505050505050565b6000806000806000806000614d3588613fc8565b9650965096509650965096509650614d4e8a8a8a614f97565b6001600160a01b038a16600090815260256020526040902054614d72908890615526565b6001600160a01b03808c16600090815260256020908152604080832094909455918c16815260269091522054614da9908590615601565b6001600160a01b038a16600090815260266020908152604080832093909355602590522054614ca3908790615601565b6000806000806000806000614ded88613fc8565b9650965096509650965096509650614e068a8a8a614f97565b6001600160a01b038a16600090815260256020526040902054614c73908890615526565b6000806000806000806000614e3e88613fc8565b9650965096509650965096509650614e578a8a8a614f97565b6001600160a01b038a16600090815260266020526040902054614e7b908990615526565b6001600160a01b038b16600090815260266020908152604080832093909355602590522054614d72908890615526565b60006103e860175483614ebe9190615539565b6111c59190615566565b600080601b54601954614edb9190615601565b90506103e8614eea8285615539565b61136b9190615566565b601e54602054600091906001600160a01b0316614f0f613867565b6001600160a01b031603614f2557506000614f8a565b6000601d6000614f33613867565b6001600160a01b03166001600160a01b03168152602001908152602001600020541115614f8a57601d6000614f66613867565b6001600160a01b03166001600160a01b031681526020019081526020016000205490505b6103e8614eea8285615539565b603054600160c01b900460ff161561212d576000614fb4846126a3565b11614fbe57600080fd5b6000614fc9846126a3565b6001600160a01b038516600090815260276020526040902054614fed908490615539565b614ff79190615566565b6001600160a01b03851660009081526027602052604090205490915081101561505c576001600160a01b03841660009081526027602052604090205461503e908290615526565b6001600160a01b038516600090815260276020526040902055615076565b6001600160a01b0384166000908152602760205260408120555b6001600160a01b03831660009081526027602052604090205461509a908290615601565b6001600160a01b03841660009081526027602052604090205550505050565b60006150c3613cc1565b905060006150d18285615539565b306000908152602560205260409020549091506150ef908290615601565b30600090815260256020908152604080832093909355602b9052205460ff161561513f573060009081526026602052604090205461512e908590615601565b306000908152602660205260409020555b60405184815230906001600160a01b03851690600080516020615a69833981519152906020015b60405180910390a350505050565b81600003615180575050565b600061518a613cc1565b905060006151988285615539565b602080546001600160a01b03166000908152602590915260409020549091506151c2908290615601565b602080546001600160a01b0390811660009081526025835260408082209490945582549091168152602b909152205460ff161561523d57602080546001600160a01b0316600090815260269091526040902054615220908590615601565b602080546001600160a01b03166000908152602690915260409020555b602080546040518681526001600160a01b039182169291861691600080516020615a698339815191529101615166565b8160105461527b9190615526565b60105560115461528c908290615601565b6011555050565b6001600160a01b03811681146115a657600080fd5b6000602082840312156152ba57600080fd5b813561136b81615293565b600060208083528351808285015260005b818110156152f2578581018301518582016040015282016152d6565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561532657600080fd5b823561533181615293565b946020939093013593505050565b60006020828403121561535157600080fd5b5035919050565b60008060006060848603121561536d57600080fd5b833561537881615293565b9250602084013561538881615293565b929592945050506040919091013590565b803580151581146153a957600080fd5b919050565b6000602082840312156153c057600080fd5b61136b82615399565b600080604083850312156153dc57600080fd5b823591506153ec60208401615399565b90509250929050565b6000806040838503121561540857600080fd5b823561541381615293565b9150602083013561542381615293565b809150509250929050565b600080600080600080600060e0888a03121561544957600080fd5b873561545481615293565b9650602088013561546481615293565b95506040880135945060608801359350608088013560ff8116811461548857600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60208082526019908201527f43616c6c6572206e6f74206a616e69746f722f6f776e65722e00000000000000604082015260600190565b600181811c908216806154f057607f821691505b60208210810361416057634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156111c5576111c5615510565b80820281158282048414176111c5576111c5615510565b634e487b7160e01b600052601260045260246000fd5b60008261557557615575615550565b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b6020808252601390820152724e6f7420656e6f75676820746f20636c61696d60681b604082015260600190565b808201808211156111c5576111c5615510565b6020808252600c908201526b10db185a5b4819985a5b195960a21b604082015260600190565b602080825260089082015267115e18db1d59195960c21b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b60006001820161569a5761569a615510565b5060010190565b60208082526023908201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6040820152626f636b60e81b606082015260800190565b6000826156f3576156f3615550565b500690565b634e487b7160e01b600052604160045260246000fd5b601f82111561212d57600081815260208120601f850160051c810160208610156157355750805b601f850160051c820191505b81811015613cb957828155600101615741565b815167ffffffffffffffff81111561576e5761576e6156f8565b6157828161577c84546154dc565b8461570e565b602080601f8311600181146157b7576000841561579f5750858301515b600019600386901b1c1916600185901b178555613cb9565b600085815260208120601f198616915b828110156157e6578886015182559484019460019091019084016157c7565b50858210156158045787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561582657600080fd5b815161136b81615293565b600080835461583f816154dc565b60018281168015615857576001811461586c5761589b565b60ff198416875282151583028701945061589b565b8760005260208060002060005b858110156158925781548a820152908401908201615879565b50505082870194505b50929695505050505050565b60208082526024908201527f4a616e697461626c653a2063616c6c6572206973206e6f7420746865206a616e60408201526334ba37b960e11b606082015260800190565b6000602082840312156158fd57600080fd5b5051919050565b600081518084526020808501945080840160005b8381101561593d5781516001600160a01b031687529582019590820190600101615918565b509495945050505050565b8481526080602082015260006159616080830186615904565b6001600160a01b03949094166040830152506060015292915050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b634e487b7160e01b600052602160045260246000fd5b85815284602082015260a0604082015260006159fd60a0830186615904565b6001600160a01b0394909416606083015250608001529392505050565b600080600060608486031215615a2f57600080fd5b835192506020840151915060408401519050925092509256fe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef95c4a9510afb68f721833e1e2aee2035604523dce5d6b9a4031b98420bfcf9eea264697066735822122057a12d5236bcd5bb6851067694b5ad270f44d649a5ce9f282922b559517927f764736f6c63430008110033
Deployed ByteCode Sourcemap
88811:35994:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110224:225;;;;;;;;;;-1:-1:-1;110224:225:0;;;;;:::i;:::-;;:::i;94880:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118772:344;;;;;;;;;;-1:-1:-1;118772:344:0;;;;;:::i;:::-;;:::i;:::-;;;1385:25:1;;;1373:2;1358:18;118772:344:0;1239:177:1;96116:186:0;;;;;;;;;;-1:-1:-1;96116:186:0;;;;;:::i;:::-;;:::i;:::-;;;1914:14:1;;1907:22;1889:41;;1877:2;1862:18;96116:186:0;1749:187:1;118671:93:0;;;;;;;;;;-1:-1:-1;118743:13:0;;118671:93;;97881:87;;;;;;;;;;-1:-1:-1;97950:10:0;;97881:87;;91261:35;;;;;;;;;;-1:-1:-1;91261:35:0;;;;-1:-1:-1;;;91261:35:0;;;;;;90961:41;;;;;;;;;;-1:-1:-1;90961:41:0;;;;-1:-1:-1;;;;;90961:41:0;;;;;;-1:-1:-1;;;;;2132:32:1;;;2114:51;;2102:2;2087:18;90961:41:0;1941:230:1;100997:94:0;;;;;;;;;;-1:-1:-1;100997:94:0;;;;;:::i;:::-;;:::i;101919:97::-;;;;;;;;;;-1:-1:-1;101919:97:0;;;;;:::i;:::-;;:::i;95157:95::-;;;;;;;;;;-1:-1:-1;95237:7:0;;95157:95;;96619:404;;;;;;;;;;-1:-1:-1;96619:404:0;;;;;:::i;:::-;;:::i;20524:83::-;;;;;;;;;;-1:-1:-1;20591:8:0;;-1:-1:-1;;;;;20591:8:0;20524:83;;98791:244;;;;;;;;;;-1:-1:-1;98791:244:0;;;;;:::i;:::-;;:::i;95066:83::-;;;;;;;;;;-1:-1:-1;95132:9:0;;95066:83;;95132:9;;;;3188:36:1;;3176:2;3161:18;95066:83:0;3046:184:1;120601:879:0;;;;;;;;;;-1:-1:-1;120601:879:0;;;;;:::i;:::-;;:::i;102141:121::-;;;;;;;;;;-1:-1:-1;102141:121:0;;;;;:::i;:::-;;:::i;123374:106::-;;;;;;;;;;;;;:::i;99364:458::-;;;;;;;;;;-1:-1:-1;99364:458:0;;;;;:::i;:::-;;:::i;103111:162::-;;;;;;;;;;-1:-1:-1;103111:162:0;;;;;:::i;:::-;;:::i;97031:290::-;;;;;;;;;;-1:-1:-1;97031:290:0;;;;;:::i;:::-;;:::i;89849:22::-;;;;;;;;;;;;;;;;97976:339;;;;;;;;;;-1:-1:-1;97976:339:0;;;;;:::i;:::-;;:::i;103281:124::-;;;;;;;;;;-1:-1:-1;103281:124:0;;;;;:::i;:::-;;:::i;100760:111::-;;;;;;;;;;-1:-1:-1;100760:111:0;;;;;:::i;:::-;;:::i;101204:103::-;;;;;;;;;;-1:-1:-1;101204:103:0;;;;;:::i;:::-;;:::i;98323:460::-;;;;;;;;;;-1:-1:-1;98323:460:0;;;;;:::i;:::-;;:::i;22139:471::-;;;;;;;;;;;;;:::i;92200:2672::-;;;;;;;;;;-1:-1:-1;92200:2672:0;;;;;:::i;:::-;;:::i;91031:28::-;;;;;;;;;;-1:-1:-1;91031:28:0;;;;-1:-1:-1;;;;;91031:28:0;;;91154:33;;;;;;;;;;-1:-1:-1;91154:33:0;;;;-1:-1:-1;;;91154:33:0;;;;;;91194:26;;;;;;;;;;-1:-1:-1;91194:26:0;;;;-1:-1:-1;;;91194:26:0;;;;;;119830:763;;;;;;;;;;;;;:::i;89999:25::-;;;;;;;;;;;;;;;;99043:313;;;;;;;;;;-1:-1:-1;99043:313:0;;;;;:::i;:::-;;:::i;109775:124::-;;;;;;;;;;-1:-1:-1;109775:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;109864:27:0;109840:4;109864:27;;;:18;:27;;;;;;;;;109775:124;101315:109;;;;;;;;;;-1:-1:-1;101315:109:0;;;;;:::i;:::-;;:::i;3267:146::-;;;;;;;;;;-1:-1:-1;3267:146:0;;;;;:::i;:::-;3351:4;3388:17;-1:-1:-1;;;;;3375:30:0;;;3388:17;;3375:30;;3267:146;102672:145;;;;;;;;;;-1:-1:-1;102672:145:0;;;;;:::i;:::-;;:::i;101562:::-;;;;;;;;;;-1:-1:-1;101562:145:0;;;;;:::i;:::-;;:::i;95466:107::-;;;;;;;;;;-1:-1:-1;95466:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;95549:16:0;95522:7;95549:16;;;:7;:16;;;;;;;95466:107;24777:90;;;;;;;;;;-1:-1:-1;24850:9:0;;24777:90;;110457:204;;;:::i;89918:28::-;;;;;;;;;;;;;;;;95260:198;;;;;;;;;;-1:-1:-1;95260:198:0;;;;;:::i;:::-;;:::i;24185:148::-;;;;;;;;;;;;;:::i;101715:196::-;;;;;;;;;;-1:-1:-1;101715:196:0;;;;;:::i;:::-;;:::i;103538:641::-;;;;;;;;;;-1:-1:-1;103538:641:0;;;;;:::i;:::-;;:::i;21373:315::-;;;;;;;;;;-1:-1:-1;21373:315:0;;;;;:::i;:::-;;:::i;123247:119::-;;;;;;;;;;-1:-1:-1;123247:119:0;;;;;:::i;:::-;;:::i;97637:120::-;;;;;;;;;;-1:-1:-1;97637:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;97729:20:0;97705:4;97729:20;;;:11;:20;;;;;;;;;97637:120;102976:127;;;;;;;;;;;;;:::i;90139:30::-;;;;;;;;;;;;;;;;23543:79;;;;;;;;;;-1:-1:-1;23608:6:0;;-1:-1:-1;;;;;23608:6:0;23543:79;;94971:87;;;;;;;;;;;;;:::i;90224:42::-;;;;;;;;;;-1:-1:-1;90224:42:0;;;;-1:-1:-1;;;;;90224:42:0;;;102024:109;;;;;;;;;;-1:-1:-1;102024:109:0;;;;;:::i;:::-;;:::i;21696:104::-;;;;;;;;;;-1:-1:-1;21776:16:0;;21696:104;;90910:42;;;;;;;;;;-1:-1:-1;90910:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;103413:117;;;;;;;;;;-1:-1:-1;103413:117:0;;;;;:::i;:::-;;:::i;97765:108::-;;;;;;;;;;-1:-1:-1;97765:108:0;;;;;:::i;:::-;-1:-1:-1;;;;;97846:19:0;97822:4;97846:19;;;:10;:19;;;;;;;;;97765:108;97329:300;;;;;;;;;;-1:-1:-1;97329:300:0;;;;;:::i;:::-;;:::i;25182:410::-;;;;;;;;;;;;;:::i;95680:252::-;;;;;;;;;;-1:-1:-1;95680:252:0;;;;;:::i;:::-;;:::i;90275:45::-;;;;;;;;;;;;;;;;90074:58;;;;;;;;;;-1:-1:-1;90074:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;102825:143;;;;;;;;;;-1:-1:-1;102825:143:0;;;;;:::i;:::-;;:::i;102484:180::-;;;;;;;;;;-1:-1:-1;102484:180:0;;;;;:::i;:::-;;:::i;119124:111::-;;;;;;;;;;-1:-1:-1;119124:111:0;;;;;:::i;:::-;-1:-1:-1;;;;;119208:19:0;119181:7;119208:19;;;:8;:19;;;;;;;119124:111;2983:121;;;;;;;;;;-1:-1:-1;3043:17:0;3079;-1:-1:-1;;;;;3079:17:0;2983:121;;122462:777;;;;;;;;;;-1:-1:-1;122462:777:0;;;;;:::i;:::-;;:::i;122303:93::-;;;;;;;;;;-1:-1:-1;122375:13:0;;122303:93;;91227:27;;;;;;;;;;-1:-1:-1;91227:27:0;;;;-1:-1:-1;;;91227:27:0;;;;;;91088:29;;;;;;;;;;-1:-1:-1;91088:29:0;;;;-1:-1:-1;;;;;91088:29:0;;;96310:301;;;;;;;;;;-1:-1:-1;96310:301:0;;;;;:::i;:::-;;:::i;95581:91::-;;;;;;;;;;-1:-1:-1;95652:12:0;;95581:91;;24875:299;;;;;;;;;;-1:-1:-1;24875:299:0;;;;;:::i;:::-;;:::i;95940:168::-;;;;;;;;;;-1:-1:-1;95940:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;96073:18:0;;;96046:7;96073:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;95940:168;101099:97;;;;;;;;;;-1:-1:-1;101099:97:0;;;;;:::i;:::-;;:::i;100879:110::-;;;;;;;;;;-1:-1:-1;100879:110:0;;;;;:::i;:::-;;:::i;102270:206::-;;;;;;;;;;-1:-1:-1;102270:206:0;;;;;:::i;:::-;;:::i;24488:281::-;;;;;;;;;;-1:-1:-1;24488:281:0;;;;;:::i;:::-;;:::i;101432:122::-;;;;;;;;;;-1:-1:-1;101432:122:0;;;;;:::i;:::-;;:::i;21808:323::-;;;;;;;;;;-1:-1:-1;21808:323:0;;;;;:::i;:::-;;:::i;121488:807::-;;;;;;;;;;;;;:::i;21058:154::-;;;;;;;;;;;;;:::i;110224:225::-;92080:12;:10;:12::i;:::-;-1:-1:-1;;;;;92067:25:0;:9;20591:8;;-1:-1:-1;;;;;20591:8:0;;20524:83;92067:9;-1:-1:-1;;;;;92067:25:0;;:52;;;;92107:12;:10;:12::i;:::-;-1:-1:-1;;;;;92096:23:0;:7;23608:6;;-1:-1:-1;;;;;23608:6:0;;23543:79;92096:7;-1:-1:-1;;;;;92096:23:0;;92067:52;92045:127;;;;-1:-1:-1;;;92045:127:0;;;;;;;:::i;:::-;;;;;;;;;110304:12:::1;110322:9;-1:-1:-1::0;;;;;110322:14:0::1;110344:21;110322:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110303:67;;;110389:7;110381:32;;;::::0;-1:-1:-1;;;110381:32:0;;6269:2:1;110381:32:0::1;::::0;::::1;6251:21:1::0;6308:2;6288:18;;;6281:30;-1:-1:-1;;;6327:18:1;;;6320:42;6379:18;;110381:32:0::1;6067:336:1::0;110381:32:0::1;-1:-1:-1::0;;110440:1:0::1;110424:13;:17:::0;110224:225::o;94880:83::-;94917:13;94950:5;94943:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94880:83;:::o;118772:344::-;118829:7;118849:13;118888:53;118898:42;118888:9;:53::i;:::-;118865:7;;:76;;;;:::i;:::-;118849:92;;118952:12;119008:5;118984:20;118994:9;118984;:20::i;:::-;118968:13;;:36;;;;:::i;:::-;118967:46;;;;:::i;:::-;-1:-1:-1;;;;;119035:19:0;;;;;;:8;:19;;;;;;118952:61;;-1:-1:-1;119028:26:0;;119024:65;;;-1:-1:-1;;;;;119070:19:0;;;;;;:8;:19;;;;;;119063:26;;:4;:26;:::i;:::-;119056:33;118772:344;-1:-1:-1;;;;118772:344:0:o;119024:65::-;-1:-1:-1;119107:1:0;;118772:344;-1:-1:-1;;;118772:344:0:o;96116:186::-;96216:4;96233:39;96242:12;:10;:12::i;:::-;96256:7;96265:6;96233:8;:39::i;:::-;-1:-1:-1;96290:4:0;96116:186;;;;;:::o;100997:94::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;101057:19:0::1;;::::0;;;:10:::1;:19;::::0;;;;:26;;-1:-1:-1;;101057:26:0::1;101079:4;101057:26;::::0;;100997:94::o;101919:97::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;101992:7:::1;:16:::0;101919:97::o;96619:404::-;-1:-1:-1;;;;;96777:18:0;;96751:4;96777:18;;;:10;:18;;;;;;;;96776:19;96768:43;;;;-1:-1:-1;;;96768:43:0;;;;;;;:::i;:::-;96822:36;96832:6;96840:9;96851:6;96822:9;:36::i;:::-;96869:124;96892:6;96913:12;:10;:12::i;:::-;-1:-1:-1;;;;;96940:19:0;;;;;;:11;:19;;;;;96976:6;;96960:12;:10;:12::i;:::-;-1:-1:-1;;;;;96940:33:0;-1:-1:-1;;;;;96940:33:0;;;;;;;;;;;;;:42;;;;:::i;:::-;96869:8;:124::i;:::-;-1:-1:-1;97011:4:0;96619:404;;;;;:::o;98791:244::-;98874:7;98913;;98902;:18;;98894:51;;;;-1:-1:-1;;;98894:51:0;;8391:2:1;98894:51:0;;;8373:21:1;8430:2;8410:18;;;8403:30;-1:-1:-1;;;8449:18:1;;;8442:50;8509:18;;98894:51:0;8189:344:1;98894:51:0;98956:19;98978:10;:8;:10::i;:::-;98956:32;-1:-1:-1;99006:21:0;98956:32;99006:7;:21;:::i;:::-;98999:28;98791:244;-1:-1:-1;;;98791:244:0:o;120601:879::-;120663:10;:24;120674:12;:10;:12::i;:::-;-1:-1:-1;;;;;120663:24:0;;;;;;;;;;;;-1:-1:-1;120663:24:0;;;;120662:25;120654:57;;;;-1:-1:-1;;;120654:57:0;;8740:2:1;120654:57:0;;;8722:21:1;8779:2;8759:18;;;8752:30;-1:-1:-1;;;8798:18:1;;;8791:49;8857:18;;120654:57:0;8538:343:1;120654:57:0;120726:12;;:16;120722:751;;120759:13;120802:53;120812:42;120802:9;:53::i;:::-;120775:7;;:80;;;;:::i;:::-;120759:96;;120870:12;120930:5;120902:23;120912:12;:10;:12::i;120902:23::-;120886:13;;:39;;;;:::i;:::-;120885:51;;;;:::i;:::-;120870:66;;120966:8;:22;120975:12;:10;:12::i;:::-;-1:-1:-1;;;;;120966:22:0;-1:-1:-1;;;;;120966:22:0;;;;;;;;;;;;;120959:4;:29;120951:61;;;;-1:-1:-1;;;120951:61:0;;;;;;;:::i;:::-;121027:15;121052:8;:22;121061:12;:10;:12::i;:::-;-1:-1:-1;;;;;121052:22:0;;;;;;;;;;;;-1:-1:-1;121052:22:0;;121045:29;;:4;:29;:::i;:::-;121027:47;;121139:7;121114:8;:22;121123:12;:10;:12::i;:::-;-1:-1:-1;;;;;121114:22:0;-1:-1:-1;;;;;121114:22:0;;;;;;;;;;;;;:32;;;;:::i;:::-;121089:8;:22;121098:12;:10;:12::i;:::-;-1:-1:-1;;;;;121089:22:0;-1:-1:-1;;;;;121089:22:0;;;;;;;;;;;;:57;;;;121161:19;121183:113;121219:7;121245:12;:10;:12::i;:::-;121276:5;121183:17;:113::i;:::-;121161:135;;121319:11;121334:1;121319:16;121311:41;;;;-1:-1:-1;;;121311:41:0;;;;;;;:::i;:::-;121399:7;121383:13;;:23;;;;:::i;:::-;121367:13;:39;121439:12;:10;:12::i;:::-;-1:-1:-1;;;;;121426:35:0;;121453:7;121426:35;;;;1385:25:1;;1373:2;1358:18;;1239:177;121426:35:0;;;;;;;;120744:729;;;;120722:751;120601:879;:::o;102141:121::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;102226:13:::1;:28:::0;102141:121::o;123374:106::-;123425:7;123452:20;:18;:20::i;:::-;123445:27;;123374:106;:::o;99364:458::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;99444:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;99436:41;;;;-1:-1:-1::0;;;99436:41:0::1;;;;;;;:::i;:::-;99493:9;99488:327;99512:9;:16:::0;99508:20;::::1;99488:327;;;99570:7;-1:-1:-1::0;;;;;99554:23:0::1;:9;99564:1;99554:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;99554:12:0::1;:23:::0;99550:254:::1;;99613:9;99623:16:::0;;:20:::1;::::0;99642:1:::1;::::0;99623:20:::1;:::i;:::-;99613:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;99598:9:::1;:12:::0;;-1:-1:-1;;;;;99613:31:0;;::::1;::::0;99608:1;;99598:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;99598:46:0::1;-1:-1:-1::0;;;;;99598:46:0;;::::1;;::::0;;99663:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;99702:11:::1;:20:::0;;;;:28;;-1:-1:-1;;99702:28:0::1;::::0;;99749:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;99749:15:0;;;;;-1:-1:-1;;;;;;99749:15:0::1;::::0;;;;;99488:327:::1;99364:458:::0;:::o;99550:254::-:1;99530:3:::0;::::1;::::0;::::1;:::i;:::-;;;;99488:327;;;;99364:458:::0;:::o;103111:162::-;92080:12;:10;:12::i;:::-;-1:-1:-1;;;;;92067:25:0;:9;20591:8;;-1:-1:-1;;;;;20591:8:0;;20524:83;92067:9;-1:-1:-1;;;;;92067:25:0;;:52;;;;92107:12;:10;:12::i;:::-;-1:-1:-1;;;;;92096:23:0;:7;23608:6;;-1:-1:-1;;;;;23608:6:0;;23543:79;92096:7;-1:-1:-1;;;;;92096:23:0;;92067:52;92045:127;;;;-1:-1:-1;;;92045:127:0;;;;;;;:::i;:::-;103191:15:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;103191:26:0::1;-1:-1:-1::0;;;;103191:26:0;;::::1;;::::0;;103233:32:::1;::::0;::::1;::::0;::::1;::::0;103209:8;1914:14:1;1907:22;1889:41;;1877:2;1862:18;;1749:187;103233:32:0::1;;;;;;;;103111:162:::0;:::o;97031:290::-;97144:4;97161:130;97184:12;:10;:12::i;:::-;97211:7;97270:10;97233:11;:25;97245:12;:10;:12::i;:::-;-1:-1:-1;;;;;97233:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;97233:25:0;;;:34;;;;;;;;;;:47;;;;:::i;97976:339::-;98028:14;98045:12;:10;:12::i;:::-;-1:-1:-1;;;;;98077:19:0;;;;;;:11;:19;;;;;;98028:29;;-1:-1:-1;98077:19:0;;98076:20;98068:41;;;;-1:-1:-1;;;98068:41:0;;;;;;;:::i;:::-;98121:15;98152:19;98163:7;98152:10;:19::i;:::-;-1:-1:-1;;;;;;;;;98200:15:0;;;;;;:7;:15;;;;;;98120:51;;-1:-1:-1;98200:25:0;;98120:51;;-1:-1:-1;98200:15:0;-1:-1:-1;98200:25:0;:::i;:::-;-1:-1:-1;;;;;98182:15:0;;;;;;:7;:15;;;;;:43;98246:7;;:17;;98256:7;;98246:17;:::i;:::-;98236:7;:27;98287:10;;:20;;98300:7;;98287:20;:::i;:::-;98274:10;:33;-1:-1:-1;;;97976:339:0:o;103281:124::-;92080:12;:10;:12::i;:::-;-1:-1:-1;;;;;92067:25:0;:9;20591:8;;-1:-1:-1;;;;;20591:8:0;;20524:83;92067:9;-1:-1:-1;;;;;92067:25:0;;:52;;;;92107:12;:10;:12::i;:::-;-1:-1:-1;;;;;92096:23:0;:7;23608:6;;-1:-1:-1;;;;;23608:6:0;;23543:79;92096:7;-1:-1:-1;;;;;92096:23:0;;92067:52;92045:127;;;;-1:-1:-1;;;92045:127:0;;;;;;;:::i;:::-;103367:14:::1;:30:::0;;-1:-1:-1;;;;;;103367:30:0::1;-1:-1:-1::0;;;;;103367:30:0;;;::::1;::::0;;;::::1;::::0;;103281:124::o;100760:111::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;100829:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;100829:34:0::1;100859:4;100829:34;::::0;;100760:111::o;101204:103::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;101273:19:0::1;;::::0;;;:10:::1;:19;::::0;;;;:26;;-1:-1:-1;;101273:26:0::1;101295:4;101273:26;::::0;;101204:103::o;98323:460::-;98439:7;98478;;98467;:18;;98459:46;;;;-1:-1:-1;;;98459:46:0;;10647:2:1;98459:46:0;;;10629:21:1;10686:2;10666:18;;;10659:30;-1:-1:-1;;;10705:18:1;;;10698:45;10760:18;;98459:46:0;10445:339:1;98459:46:0;98521:17;98516:260;;98556:15;98587:19;98598:7;98587:10;:19::i;:::-;-1:-1:-1;98555:51:0;;-1:-1:-1;98621:14:0;;-1:-1:-1;;;;;;98621:14:0;98516:260;98671:23;98708:19;98719:7;98708:10;:19::i;:::-;-1:-1:-1;98668:59:0;;-1:-1:-1;98742:22:0;;-1:-1:-1;;;;;;98742:22:0;22139:471;22283:16;;-1:-1:-1;;;;;22283:16:0;22303:10;22283:30;22261:115;;;;-1:-1:-1;;;22261:115:0;;;;;;;:::i;:::-;22427:16;;22409:15;:34;22387:115;;;;-1:-1:-1;;;22387:115:0;;11395:2:1;22387:115:0;;;11377:21:1;11434:2;11414:18;;;11407:30;11473:33;11453:18;;;11446:61;11524:18;;22387:115:0;11193:355:1;22387:115:0;22547:16;;22537:8;;22518:46;;-1:-1:-1;;;;;22547:16:0;;;;22537:8;;;;-1:-1:-1;;;;;;;;;;;22518:46:0;22547:16;;22518:46;22586:16;;22575:8;:27;;-1:-1:-1;;;;;;22575:27:0;-1:-1:-1;;;;;22586:16:0;;;22575:27;;;;;;22139:471::o;92200:2672::-;16258:19;16281:13;-1:-1:-1;;;16281:13:0;;;;16280:14;;16328:34;;;;-1:-1:-1;16346:12:0;;16361:1;-1:-1:-1;;;16346:12:0;;;;;:16;16328:34;16327:108;;;-1:-1:-1;16407:4:0;5913:19;:23;;;16368:66;;-1:-1:-1;16417:12:0;;-1:-1:-1;;;16417:12:0;;;;16433:1;16417:17;16368:66;16305:204;;;;-1:-1:-1;;;16305:204:0;;11755:2:1;16305:204:0;;;11737:21:1;11794:2;11774:18;;;11767:30;11833:34;11813:18;;;11806:62;-1:-1:-1;;;11884:18:1;;;11877:44;11938:19;;16305:204:0;11553:410:1;16305:204:0;16520:12;:16;;-1:-1:-1;;;;16520:16:0;-1:-1:-1;;;16520:16:0;;;16547:67;;;;16582:13;:20;;-1:-1:-1;;;;16582:20:0;-1:-1:-1;;;16582:20:0;;;16547:67;92353:50:::1;92372:12;:10;:12::i;:::-;92386:16;92353:18;:50::i;:::-;92414:52;92435:12;:10;:12::i;:::-;92449:16;92414:20;:52::i;:::-;92512:24;92502:7;:34:::0;;;92565:13:::1;::::0;-1:-1:-1;;92565:13:0::1;:::i;:::-;92558:21;::::0;-1:-1:-1;;92558:21:0::1;:::i;:::-;92547:7;:33:::0;92591:30:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;92591:30:0::1;::::0;::::1;::::0;:5:::1;::::0;:30:::1;::::0;:5;:30:::1;:::i;:::-;-1:-1:-1::0;92632:14:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;92632:14:0::1;::::0;::::1;::::0;:8:::1;::::0;:14:::1;::::0;:8;:14:::1;:::i;:::-;-1:-1:-1::0;92657:17:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;92657:17:0::1;::::0;::::1;::::0;:7:::1;::::0;:17:::1;::::0;:7;:17:::1;:::i;:::-;-1:-1:-1::0;92685:9:0::1;:13:::0;;-1:-1:-1;;92685:13:0::1;92697:1;92685:13;::::0;;92721:2:::1;92711:7;:12:::0;;;92734:15:::1;:25:::0;92788:1:::1;92772:13;:17:::0;;;92800:21:::1;:37:::0;92861:2:::1;92848:10;:15:::0;;;92874:18:::1;:31:::0;92949:15:::1;92916:30;:48:::0;92685:9:::1;92975:12;:16:::0;;;93002:13:::1;:17:::0;;;93032:21:::1;:28:::0;;-1:-1:-1;;;;;93411:30:0;::::1;-1:-1:-1::0;;;;;;93411:30:0;;;;-1:-1:-1;;;93411:30:0;;;93476:7:::1;::::0;;93452::::1;::::0;93460:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;93452:21:0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;93452:21:0;:31;;;;93565:14:::1;::::0;93656:26;;-1:-1:-1;;;93656:26:0;;;;93565:14;::::1;::::0;;;93656:24:::1;::::0;:26:::1;::::0;;::::1;::::0;;;;;;;93565:14;93656:26:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;93638:70:0::1;;93717:4;93724:16;-1:-1:-1::0;;;;;93724:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;93638:110;::::0;-1:-1:-1;;;;;;93638:110:0::1;::::0;;;;;;-1:-1:-1;;;;;14915:15:1;;;93638:110:0::1;::::0;::::1;14897:34:1::0;14967:15;;14947:18;;;14940:43;14832:18;;93638:110:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;93622:13;:126:::0;;-1:-1:-1;;;;;;93622:126:0;;::::1;-1:-1:-1::0;;;;;93622:126:0;;::::1;;::::0;;;93759:15:::1;:34:::0;;;::::1;::::0;;::::1;;::::0;;-1:-1:-1;23608:6:0;;;;;-1:-1:-1;93804:27:0;;;:18:::1;:27;::::0;;;;;;;:34;;-1:-1:-1;;93804:34:0;;::::1;::::0;::::1;::::0;;;93931:4:::1;93904:33:::0;;;;:40;;;;::::1;::::0;;::::1;::::0;;94012:2:::1;93994:15;:20:::0;;;94025:23:::1;:41:::0;94077:97;;::::1;94121:42;94077:97;::::0;;94213:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;94192:43:0::1;94209:1;-1:-1:-1::0;;;;;94192:43:0::1;-1:-1:-1::0;;;;;;;;;;;94227:7:0::1;;94192:43;;;;1385:25:1::0;;1373:2;1358:18;;1239:177;94192:43:0::1;;;;;;;;94272:18;94309:5;94293:23;;;;;;:::i;:::-;;;;;;;;94272:44;;94327:21;94367:8;94351:26;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;94537:12:::1;:25:::0;;;94573:15:::1;:31:::0;;;94634:13:::1;94615:16;:32:::0;94351:26;-1:-1:-1;94407:119:0::1;94685:108;94407:119:::0;94552:10;94351:26;94685:21:::1;:108::i;:::-;94658:24;:135:::0;94804:12:::1;:28:::0;;-1:-1:-1;;;;;;94804:28:0::1;94827:4;94804:28;::::0;;94843:10:::1;:21:::0;-1:-1:-1;;16636:102:0;;;-1:-1:-1;16636:102:0;;16687:5;16671:21;;-1:-1:-1;;;;16671:21:0;;;16712:14;;-1:-1:-1;3188:36:1;;16712:14:0;;3176:2:1;3161:18;16712:14:0;;;;;;;16636:102;16247:498;92200:2672;;:::o;119830:763::-;119874:10;:24;119885:12;:10;:12::i;:::-;-1:-1:-1;;;;;119874:24:0;;;;;;;;;;;;-1:-1:-1;119874:24:0;;;;119873:25;119865:49;;;;-1:-1:-1;;;119865:49:0;;;;;;;:::i;:::-;119929:12;;:16;119925:661;;119962:13;120005:53;120015:42;120005:9;:53::i;:::-;119978:7;;:80;;;;:::i;:::-;119962:96;;120073:12;120132:5;120105:23;120115:12;:10;:12::i;120105:23::-;120089:13;;:39;;;;:::i;:::-;120088:49;;;;:::i;:::-;120073:64;;120167:8;:22;120176:12;:10;:12::i;:::-;-1:-1:-1;;;;;120167:22:0;-1:-1:-1;;;;;120167:22:0;;;;;;;;;;;;;120160:4;:29;120152:61;;;;-1:-1:-1;;;120152:61:0;;;;;;;:::i;:::-;120228:15;120253:8;:22;120262:12;:10;:12::i;:::-;-1:-1:-1;;;;;120253:22:0;;;;;;;;;;;;-1:-1:-1;120253:22:0;;120246:29;;:4;:29;:::i;:::-;120228:47;;120340:7;120315:8;:22;120324:12;:10;:12::i;:::-;-1:-1:-1;;;;;120315:22:0;-1:-1:-1;;;;;120315:22:0;;;;;;;;;;;;;:32;;;;:::i;:::-;120290:8;:22;120299:12;:10;:12::i;:::-;-1:-1:-1;;;;;120290:22:0;-1:-1:-1;;;;;120290:22:0;;;;;;;;;;;;:57;;;;120363:12;120381;:10;:12::i;:::-;-1:-1:-1;;;;;120381:17:0;120406:7;120381:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120362:56;;;120441:7;120433:32;;;;-1:-1:-1;;;120433:32:0;;;;;;;:::i;:::-;120512:7;120496:13;;:23;;;;:::i;:::-;120480:13;:39;120552:12;:10;:12::i;:::-;-1:-1:-1;;;;;120539:35:0;;120566:7;120539:35;;;;1385:25:1;;1373:2;1358:18;;1239:177;120539:35:0;;;;;;;;119947:639;;;;119925:661;119830:763::o;99043:313::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;99124:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;99123:21;99115:42;;;;-1:-1:-1::0;;;99115:42:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;99172:16:0;::::1;99191:1;99172:16:::0;;;:7:::1;:16;::::0;;;;;:20;99168:109:::1;;-1:-1:-1::0;;;;;99248:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;99228:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;99209:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;99168:109:::1;-1:-1:-1::0;;;;;99287:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;99287:27:0::1;99310:4;99287:27:::0;;::::1;::::0;;;99325:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;99325:23:0::1;::::0;;::::1;::::0;;99043:313::o;101315:109::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;101389:19:0::1;101411:5;101389:19:::0;;;:10:::1;:19;::::0;;;;:27;;-1:-1:-1;;101389:27:0::1;::::0;;101315:109::o;102672:145::-;92080:12;:10;:12::i;:::-;-1:-1:-1;;;;;92067:25:0;:9;20591:8;;-1:-1:-1;;;;;20591:8:0;;20524:83;92067:9;-1:-1:-1;;;;;92067:25:0;;:52;;;;92107:12;:10;:12::i;:::-;-1:-1:-1;;;;;92096:23:0;:7;23608:6;;-1:-1:-1;;;;;23608:6:0;;23543:79;92096:7;-1:-1:-1;;;;;92096:23:0;;92067:52;92045:127;;;;-1:-1:-1;;;92045:127:0;;;;;;;:::i;:::-;102775:23:::1;:34:::0;;;::::1;;-1:-1:-1::0;;;102775:34:0::1;-1:-1:-1::0;;;;102775:34:0;;::::1;::::0;;;::::1;::::0;;102672:145::o;101562:::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;101667:15:::1;:32:::0;101562:145::o;110457:204::-;92080:12;:10;:12::i;:::-;-1:-1:-1;;;;;92067:25:0;:9;20591:8;;-1:-1:-1;;;;;20591:8:0;;20524:83;92067:9;-1:-1:-1;;;;;92067:25:0;;:52;;;;92107:12;:10;:12::i;:::-;-1:-1:-1;;;;;92096:23:0;:7;23608:6;;-1:-1:-1;;;;;23608:6:0;;23543:79;92096:7;-1:-1:-1;;;;;92096:23:0;;92067:52;92045:127;;;;-1:-1:-1;;;92045:127:0;;;;;;;:::i;:::-;110596:9:::1;110580:13;;:25;;;;:::i;:::-;110564:13;:41:::0;110621:32:::1;::::0;110643:9:::1;1385:25:1::0;;110621:32:0::1;::::0;1373:2:1;1358:18;110621:32:0::1;;;;;;;;110457:204::o:0;95260:198::-;-1:-1:-1;;;;;95350:20:0;;95326:7;95350:20;;;:11;:20;;;;;;;;95346:49;;;-1:-1:-1;;;;;;95379:16:0;;;;;:7;:16;;;;;;;95260:198::o;95346:49::-;-1:-1:-1;;;;;95433:16:0;;;;;;:7;:16;;;;;;95413:37;;:19;:37::i;24185:148::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;24276:6:::1;::::0;24255:40:::1;::::0;24292:1:::1;::::0;-1:-1:-1;;;;;24276:6:0::1;::::0;-1:-1:-1;;;;;;;;;;;24255:40:0;24292:1;;24255:40:::1;24306:6;:19:::0;;-1:-1:-1;;;;;;24306:19:0::1;::::0;;24185:148::o;101715:196::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;101854:32:0;;::::1;;::::0;;;:23:::1;:32;::::0;;;;:49;101715:196::o;103538:641::-;92080:12;:10;:12::i;:::-;-1:-1:-1;;;;;92067:25:0;:9;20591:8;;-1:-1:-1;;;;;20591:8:0;;20524:83;92067:9;-1:-1:-1;;;;;92067:25:0;;:52;;;;92107:12;:10;:12::i;:::-;-1:-1:-1;;;;;92096:23:0;:7;23608:6;;-1:-1:-1;;;;;23608:6:0;;23543:79;92096:7;-1:-1:-1;;;;;92096:23:0;;92067:52;92045:127;;;;-1:-1:-1;;;92045:127:0;;;;;;;:::i;:::-;103623:31:::1;103640:13;103623:16;:31::i;:::-;103736:14;::::0;103827:26:::1;::::0;;-1:-1:-1;;;103827:26:0;;;;-1:-1:-1;;;;;103736:14:0;;::::1;::::0;;;103827:24:::1;::::0;:26:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;103736:14;103827:26:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;103809:53:0::1;;103885:4;103905:16;-1:-1:-1::0;;;;;103905:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;103809:130;::::0;-1:-1:-1;;;;;;103809:130:0::1;::::0;;;;;;-1:-1:-1;;;;;14915:15:1;;;103809:130:0::1;::::0;::::1;14897:34:1::0;14967:15;;14947:18;;;14940:43;14832:18;;103809:130:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;103793:13;:146:::0;;-1:-1:-1;;;;;;103793:146:0::1;-1:-1:-1::0;;;;;103793:146:0;;;::::1;::::0;;::::1;::::0;;103950:176:::1;;104030:16;-1:-1:-1::0;;;;;104030:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;104012:74:0::1;;104095:4;104102:16;-1:-1:-1::0;;;;;104102:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;104012:114;::::0;-1:-1:-1;;;;;;104012:114:0::1;::::0;;;;;;-1:-1:-1;;;;;14915:15:1;;;104012:114:0::1;::::0;::::1;14897:34:1::0;14967:15;;14947:18;;;14940:43;14832:18;;104012:114:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;103996:13;:130:::0;;-1:-1:-1;;;;;;103996:130:0::1;-1:-1:-1::0;;;;;103996:130:0;;;::::1;::::0;;;::::1;::::0;;103950:176:::1;104137:15;:34:::0;;-1:-1:-1;;;;;;104137:34:0::1;-1:-1:-1::0;;;;;104137:34:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;103538:641:0:o;21373:315::-;20770:12;:10;:12::i;:::-;20758:8;;-1:-1:-1;;;;;20758:8:0;;;:24;;;20736:110;;;;-1:-1:-1;;;20736:110:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21498:24:0;::::1;21476:116;;;::::0;-1:-1:-1;;;21476:116:0;;16649:2:1;21476:116:0::1;::::0;::::1;16631:21:1::0;16688:2;16668:18;;;16661:30;16727:34;16707:18;;;16700:62;-1:-1:-1;;;16778:18:1;;;16771:40;16828:19;;21476:116:0::1;16447:406:1::0;21476:116:0::1;21627:8;::::0;21608:40:::1;::::0;-1:-1:-1;;;;;21608:40:0;;::::1;::::0;21627:8:::1;::::0;-1:-1:-1;;;;;;;;;;;21608:40:0;21627:8:::1;::::0;21608:40:::1;21659:8;:21:::0;;-1:-1:-1;;;;;;21659:21:0::1;-1:-1:-1::0;;;;;21659:21:0;;;::::1;::::0;;;::::1;::::0;;21373:315::o;123247:119::-;-1:-1:-1;;;;;123334:14:0;;123307:7;123334:14;;;:7;:14;;;;;67068;123334:24;66976:114;102976:127;92080:12;:10;:12::i;:::-;-1:-1:-1;;;;;92067:25:0;:9;20591:8;;-1:-1:-1;;;;;20591:8:0;;20524:83;92067:9;-1:-1:-1;;;;;92067:25:0;;:52;;;;92107:12;:10;:12::i;:::-;-1:-1:-1;;;;;92096:23:0;:7;23608:6;;-1:-1:-1;;;;;23608:6:0;;23543:79;92096:7;-1:-1:-1;;;;;92096:23:0;;92067:52;92045:127;;;;-1:-1:-1;;;92045:127:0;;;;;;;:::i;:::-;103038:14:::1;:21:::0;;-1:-1:-1;;;;103038:21:0::1;-1:-1:-1::0;;;103038:21:0::1;::::0;;103075:20:::1;::::0;-1:-1:-1;1889:41:1;;103075:20:0::1;::::0;1877:2:1;1862:18;103075:20:0::1;1749:187:1::0;94971:87:0;95010:13;95043:7;95036:14;;;;;:::i;102024:109::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;102103:10:::1;:22:::0;102024:109::o;103413:117::-;92080:12;:10;:12::i;:::-;-1:-1:-1;;;;;92067:25:0;:9;20591:8;;-1:-1:-1;;;;;20591:8:0;;20524:83;92067:9;-1:-1:-1;;;;;92067:25:0;;:52;;;;92107:12;:10;:12::i;:::-;-1:-1:-1;;;;;92096:23:0;:7;23608:6;;-1:-1:-1;;;;;23608:6:0;;23543:79;92096:7;-1:-1:-1;;;;;92096:23:0;;92067:52;92045:127;;;;-1:-1:-1;;;92045:127:0;;;;;;;:::i;:::-;103495:13:::1;:27:::0;;-1:-1:-1;;;;;;103495:27:0::1;-1:-1:-1::0;;;;;103495:27:0;;;::::1;::::0;;;::::1;::::0;;103413:117::o;97329:300::-;97447:4;97464:135;97487:12;:10;:12::i;:::-;97514:7;97573:15;97536:11;:25;97548:12;:10;:12::i;:::-;-1:-1:-1;;;;;97536:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;97536:25:0;;;:34;;;;;;;;;;:52;;;;:::i;25182:410::-;25317:14;;-1:-1:-1;;;;;25317:14:0;25335:10;25317:28;25295:113;;;;-1:-1:-1;;;25295:113:0;;;;;;;:::i;:::-;25445:9;;25427:15;:27;25419:71;;;;-1:-1:-1;;;25419:71:0;;11395:2:1;25419:71:0;;;11377:21:1;11434:2;11414:18;;;11407:30;11473:33;11453:18;;;11446:61;11524:18;;25419:71:0;11193:355:1;25419:71:0;25535:14;;;25527:6;25506:44;;-1:-1:-1;;;;;25535:14:0;;;;25527:6;;;;-1:-1:-1;;;;;;;;;;;25506:44:0;25535:14;;25506:44;25570:14;;;25561:23;;-1:-1:-1;;;;;;25561:23:0;-1:-1:-1;;;;;25570:14:0;;;25561:23;;;;;;25182:410::o;95680:252::-;95783:4;95809:10;:24;95820:12;:10;:12::i;:::-;-1:-1:-1;;;;;95809:24:0;;;;;;;;;;;;-1:-1:-1;95809:24:0;;;;95808:25;95800:49;;;;-1:-1:-1;;;95800:49:0;;;;;;;:::i;:::-;95860:42;95870:12;:10;:12::i;:::-;95884:9;95895:6;95860:9;:42::i;102825:143::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;102895:14:::1;:25:::0;;;::::1;;-1:-1:-1::0;;;102895:25:0::1;-1:-1:-1::0;;;;102895:25:0;;::::1;;::::0;;102936:24:::1;::::0;::::1;::::0;::::1;::::0;102912:8;1914:14:1;1907:22;1889:41;;1877:2;1862:18;;1749:187;102484:180:0;92080:12;:10;:12::i;:::-;-1:-1:-1;;;;;92067:25:0;:9;20591:8;;-1:-1:-1;;;;;20591:8:0;;20524:83;92067:9;-1:-1:-1;;;;;92067:25:0;;:52;;;;92107:12;:10;:12::i;:::-;-1:-1:-1;;;;;92096:23:0;:7;23608:6;;-1:-1:-1;;;;;23608:6:0;;23543:79;92096:7;-1:-1:-1;;;;;92096:23:0;;92067:52;92045:127;;;;-1:-1:-1;;;92045:127:0;;;;;;;:::i;:::-;102570:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;102570:32:0::1;-1:-1:-1::0;;;;102570:32:0;;::::1;;::::0;;102618:38:::1;::::0;::::1;::::0;::::1;::::0;102594:8;1914:14:1;1907:22;1889:41;;1877:2;1862:18;;1749:187;122462:777:0;122697:8;122678:15;:27;;122670:69;;;;-1:-1:-1;;;122670:69:0;;17060:2:1;122670:69:0;;;17042:21:1;17099:2;17079:18;;;17072:30;17138:31;17118:18;;;17111:59;17187:18;;122670:69:0;16858:353:1;122670:69:0;122752:18;89068:119;122861:5;122885:7;122911:5;122935:16;122945:5;122935:9;:16::i;:::-;122797:196;;;;;;17503:25:1;;;;-1:-1:-1;;;;;17602:15:1;;;17582:18;;;17575:43;17654:15;;;;17634:18;;;17627:43;17686:18;;;17679:34;17729:19;;;17722:35;17773:19;;;17766:35;;;17475:19;;122797:196:0;;;;;;;;;;;;122773:231;;;;;;122752:252;;123017:12;123032:28;123049:10;123032:16;:28::i;:::-;123017:43;;123073:14;123090:28;123104:4;123110:1;123113;123116;123090:13;:28::i;:::-;123073:45;;123147:5;-1:-1:-1;;;;;123137:15:0;:6;-1:-1:-1;;;;;123137:15:0;;123129:58;;;;-1:-1:-1;;;123129:58:0;;18014:2:1;123129:58:0;;;17996:21:1;18053:2;18033:18;;;18026:30;18092:32;18072:18;;;18065:60;18142:18;;123129:58:0;17812:354:1;123129:58:0;123200:31;123209:5;123216:7;123225:5;123200:8;:31::i;:::-;122659:580;;;122462:777;;;;;;;:::o;96310:301::-;92080:12;:10;:12::i;:::-;-1:-1:-1;;;;;92067:25:0;:9;20591:8;;-1:-1:-1;;;;;20591:8:0;;20524:83;92067:9;-1:-1:-1;;;;;92067:25:0;;:52;;;;92107:12;:10;:12::i;:::-;-1:-1:-1;;;;;92096:23:0;:7;23608:6;;-1:-1:-1;;;;;23608:6:0;;23543:79;92096:7;-1:-1:-1;;;;;92096:23:0;;92067:52;92045:127;;;;-1:-1:-1;;;92045:127:0;;;;;;;:::i;:::-;96448:39:::1;96469:17;96448:20;:39::i;:::-;96498:46;96526:17;96498:27;:46::i;:::-;96555:48;96585:17;96555:29;:48::i;24875:299::-:0;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;25029:6:::1;::::0;;25012:14:::1;:23:::0;;-1:-1:-1;;;;;;25012:23:0;;::::1;-1:-1:-1::0;;;;;25029:6:0;::::1;25012:23;::::0;;;25046:19:::1;::::0;;25088:22:::1;25106:4:::0;25088:15:::1;:22;:::i;:::-;25076:9;:34:::0;25147:6:::1;::::0;25126:40:::1;::::0;25163:1:::1;::::0;-1:-1:-1;;;;;25147:6:0::1;::::0;-1:-1:-1;;;;;;;;;;;25126:40:0;25163:1;;25126:40:::1;24875:299:::0;:::o;101099:97::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;101161:19:0::1;101183:5;101161:19:::0;;;:10:::1;:19;::::0;;;;:27;;-1:-1:-1;;101161:27:0::1;::::0;;101099:97::o;100879:110::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;100946:27:0::1;100976:5;100946:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;100946:35:0::1;::::0;;100879:110::o;102270:206::-;92080:12;:10;:12::i;:::-;-1:-1:-1;;;;;92067:25:0;:9;20591:8;;-1:-1:-1;;;;;20591:8:0;;20524:83;92067:9;-1:-1:-1;;;;;92067:25:0;;:52;;;;92107:12;:10;:12::i;:::-;-1:-1:-1;;;;;92096:23:0;:7;23608:6;;-1:-1:-1;;;;;23608:6:0;;23543:79;92096:7;-1:-1:-1;;;;;92096:23:0;;92067:52;92045:127;;;;-1:-1:-1;;;92045:127:0;;;;;;;:::i;:::-;102406:30:::1;:62:::0;102270:206::o;24488:281::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24591:22:0;::::1;24569:110;;;::::0;-1:-1:-1;;;24569:110:0;;18373:2:1;24569:110:0::1;::::0;::::1;18355:21:1::0;18412:2;18392:18;;;18385:30;18451:34;18431:18;;;18424:62;-1:-1:-1;;;18502:18:1;;;18495:36;18548:19;;24569:110:0::1;18171:402:1::0;24569:110:0::1;24716:6;::::0;24695:38:::1;::::0;-1:-1:-1;;;;;24695:38:0;;::::1;::::0;24716:6:::1;::::0;-1:-1:-1;;;;;;;;;;;24695:38:0;24716:6:::1;::::0;24695:38:::1;24744:6;:17:::0;;-1:-1:-1;;;;;;24744:17:0::1;-1:-1:-1::0;;;;;24744:17:0;;;::::1;::::0;;;::::1;::::0;;24488:281::o;101432:122::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;101508:19:::1;:38:::0;;-1:-1:-1;;;;;;101508:38:0::1;-1:-1:-1::0;;;;;101508:38:0;;;::::1;::::0;;;::::1;::::0;;101432:122::o;21808:323::-;20770:12;:10;:12::i;:::-;20758:8;;-1:-1:-1;;;;;20758:8:0;;;:24;;;20736:110;;;;-1:-1:-1;;;20736:110:0;;;;;;;:::i;:::-;21975:8:::1;::::0;;21956:16:::1;:27:::0;;-1:-1:-1;;;;;;21956:27:0;;::::1;-1:-1:-1::0;;;;;21975:8:0;::::1;21956:27;::::0;;;21994:21:::1;::::0;;22045:22:::1;22063:4:::0;22045:15:::1;:22;:::i;:::-;22026:16;:41:::0;22102:8:::1;::::0;22083:40:::1;::::0;22120:1:::1;::::0;-1:-1:-1;;;;;22102:8:0::1;::::0;-1:-1:-1;;;;;;;;;;;22083:40:0;22120:1;;22083:40:::1;21808:323:::0;:::o;121488:807::-;121535:10;:24;121546:12;:10;:12::i;:::-;-1:-1:-1;;;;;121535:24:0;;;;;;;;;;;;-1:-1:-1;121535:24:0;;;;121534:25;121526:49;;;;-1:-1:-1;;;121526:49:0;;;;;;;:::i;:::-;121590:12;;:16;121586:702;;121623:13;121666:53;121676:42;121666:9;:53::i;:::-;121639:7;;:80;;;;:::i;:::-;121623:96;;121734:12;121793:5;121766:23;121776:12;:10;:12::i;121766:23::-;121750:13;;:39;;;;:::i;:::-;121749:49;;;;:::i;:::-;121734:64;;121828:8;:22;121837:12;:10;:12::i;:::-;-1:-1:-1;;;;;121828:22:0;-1:-1:-1;;;;;121828:22:0;;;;;;;;;;;;;121821:4;:29;121813:61;;;;-1:-1:-1;;;121813:61:0;;;;;;;:::i;:::-;121889:15;121914:8;:22;121923:12;:10;:12::i;:::-;-1:-1:-1;;;;;121914:22:0;;;;;;;;;;;;-1:-1:-1;121914:22:0;;121907:29;;:4;:29;:::i;:::-;121889:47;;122001:7;121976:8;:22;121985:12;:10;:12::i;:::-;-1:-1:-1;;;;;121976:22:0;-1:-1:-1;;;;;121976:22:0;;;;;;;;;;;;;:32;;;;:::i;:::-;121951:8;:22;121960:12;:10;:12::i;:::-;-1:-1:-1;;;;;121951:22:0;-1:-1:-1;;;;;121951:22:0;;;;;;;;;;;;:57;;;;122023:19;122045:121;122081:7;122107:12;:10;:12::i;:::-;122146:4;122045:17;:121::i;:::-;122023:143;;122189:11;122204:1;122189:16;122181:41;;;;-1:-1:-1;;;122181:41:0;;;;;;;:::i;:::-;122269:7;122253:13;;:23;;;;:::i;:::-;122237:13;:39;-1:-1:-1;;;;121488:807:0:o;21058:154::-;20770:12;:10;:12::i;:::-;20758:8;;-1:-1:-1;;;;;20758:8:0;;;:24;;;20736:110;;;;-1:-1:-1;;;20736:110:0;;;;;;;:::i;:::-;21151:8:::1;::::0;21132:40:::1;::::0;21169:1:::1;::::0;-1:-1:-1;;;;;21151:8:0::1;::::0;-1:-1:-1;;;;;;;;;;;21132:40:0;21169:1;;21132:40:::1;21183:8;:21:::0;;-1:-1:-1;;;;;;21183:21:0::1;::::0;;21058:154::o;3460:558::-;3522:11;3569:2;3550:8;:21;;;;:55;;-1:-1:-1;3351:4:0;3388:17;-1:-1:-1;;;;;3388:17:0;3594:10;3375:30;3575;3546:465;;;-1:-1:-1;;;3916:14:0;3912:22;3899:36;3896:2;3892:44;3460:558;:::o;3546:465::-;-1:-1:-1;3989:10:0;3460:558;:::o;109907:309::-;-1:-1:-1;;;;;110014:19:0;;;;;;:44;;-1:-1:-1;;;;;;110037:21:0;;;;110014:44;109992:121;;;;-1:-1:-1;;;109992:121:0;;18780:2:1;109992:121:0;;;18762:21:1;18819:2;18799:18;;;18792:30;18858:29;18838:18;;;18831:57;18905:18;;109992:121:0;18578:351:1;109992:121:0;-1:-1:-1;;;;;110124:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;110176:32;;1385:25:1;;;110176:32:0;;1358:18:1;110176:32:0;;;;;;;109907:309;;;:::o;110669:1500::-;-1:-1:-1;;;;;110771:18:0;;;;;;:38;;-1:-1:-1;;;;;;110793:16:0;;;;110771:38;110749:116;;;;-1:-1:-1;;;110749:116:0;;19136:2:1;110749:116:0;;;19118:21:1;19175:2;19155:18;;;19148:30;19214;19194:18;;;19187:58;19262:18;;110749:116:0;18934:352:1;110749:116:0;-1:-1:-1;;;;;110885:16:0;;;;;;:10;:16;;;;;;;;110884:17;110876:26;;;;;;110930:1;110921:6;:10;110913:39;;;;-1:-1:-1;;;110913:39:0;;19493:2:1;110913:39:0;;;19475:21:1;19532:2;19512:18;;;19505:30;-1:-1:-1;;;19551:18:1;;;19544:46;19607:18;;110913:39:0;19291:340:1;110913:39:0;23608:6;;-1:-1:-1;;;;;110981:15:0;;;23608:6;;110981:15;;;;:45;;-1:-1:-1;23608:6:0;;-1:-1:-1;;;;;111013:13:0;;;23608:6;;111013:13;;110981:45;:79;;;;-1:-1:-1;20591:8:0;;-1:-1:-1;;;;;111043:17:0;;;20591:8;;111043:17;;110981:79;:111;;;;-1:-1:-1;20591:8:0;;-1:-1:-1;;;;;111077:15:0;;;20591:8;;111077:15;;110981:111;110963:214;;;111127:14;;-1:-1:-1;;;111127:14:0;;;;111119:46;;;;-1:-1:-1;;;111119:46:0;;19838:2:1;111119:46:0;;;19820:21:1;19877:2;19857:18;;;19850:30;-1:-1:-1;;;19896:18:1;;;19889:49;19955:18;;111119:46:0;19636:343:1;111119:46:0;111199:13;;-1:-1:-1;;;;;111199:13:0;;;111191:21;;;;111187:272;;111259:6;111244:12;;:21;;;;:::i;:::-;111229:12;:36;-1:-1:-1;;;;;111294:11:0;;;;;;:7;:11;;;;;;:20;;111308:6;;111294:20;:::i;:::-;-1:-1:-1;;;;;111280:11:0;;;;;;:7;:11;;;;;:34;111187:272;;;111342:13;;-1:-1:-1;;;;;111342:13:0;;;111336:19;;;;111332:127;;-1:-1:-1;;;;;111402:13:0;;;;;;:7;:13;;;;;;111387:12;;:28;;111402:13;111387:28;:::i;:::-;111372:12;:43;-1:-1:-1;;;;;111430:13:0;;111446:1;111430:13;;;:7;:13;;;;;:17;111332:127;111469:28;111500:24;111518:4;111500:9;:24::i;:::-;111599:30;;111469:55;;-1:-1:-1;111562:67:0;;;;;;;111658:53;;-1:-1:-1;111695:16:0;;-1:-1:-1;;;111695:16:0;;;;111694:17;111658:53;:91;;;;-1:-1:-1;111736:13:0;;-1:-1:-1;;;;;111728:21:0;;;111736:13;;111728:21;;111658:91;:194;;;;-1:-1:-1;111767:15:0;;-1:-1:-1;;;111767:15:0;;;;;:84;;-1:-1:-1;111812:14:0;;-1:-1:-1;;;;;111804:22:0;;;111812:14;;111804:22;;;;:46;;-1:-1:-1;111836:14:0;;-1:-1:-1;;;;;111830:20:0;;;111836:14;;111830:20;;111804:46;111658:232;;;;-1:-1:-1;111869:21:0;;-1:-1:-1;;;111869:21:0;;;;111658:232;111640:332;;;111917:26;111922:20;111917:4;:26::i;:::-;-1:-1:-1;;;;;112016:24:0;;111982:12;112016:24;;;:18;:24;;;;;;111997:4;;112016:24;;;:50;;-1:-1:-1;;;;;;112044:22:0;;;;;;:18;:22;;;;;;;;112016:50;112012:98;;;-1:-1:-1;112093:5:0;112012:98;112120:41;112135:4;112141:2;112145:6;112153:7;112120:14;:41::i;:::-;110738:1431;;;110669:1500;;;:::o;106319:161::-;106361:7;106382:15;106399;106418:19;:17;:19::i;:::-;106381:56;;-1:-1:-1;106381:56:0;-1:-1:-1;106455:17:0;106381:56;;106455:17;:::i;:::-;106448:24;;;;106319:161;:::o;113870:716::-;-1:-1:-1;;;;;114032:21:0;;114003:7;114032:21;;;:10;:21;;;;;;;;114031:22;114023:67;;;;-1:-1:-1;;;114023:67:0;;20186:2:1;114023:67:0;;;20168:21:1;;;20205:18;;;20198:30;20264:34;20244:18;;;20237:62;20316:18;;114023:67:0;19984:356:1;114023:67:0;114127:16;;;114141:1;114127:16;;;;;;;;114103:21;;114127:16;;;;;;;;-1:-1:-1;;114164:15:0;;:22;;;-1:-1:-1;;;114164:22:0;;;;114103:40;;-1:-1:-1;;;;;;114164:15:0;;;;:20;;-1:-1:-1;114164:22:0;;;;;;;;;;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;114154:4;114159:1;114154:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;114154:32:0;;;-1:-1:-1;;;;;114154:32:0;;;;;114215:5;114197:4;114202:1;114197:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;114197:24:0;;;:7;;;;;;;;;:24;114258:34;;-1:-1:-1;;;114258:34:0;;2132:32:1;;;114258:34:0;;;2114:51:1;114234:21:0;;114258:23;;;;;2087:18:1;;114258:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;114305:15;;:146;;-1:-1:-1;;;114305:146:0;;114234:58;;-1:-1:-1;;;;;;114305:15:0;;:66;;114393:10;;114305:146;;:15;;114418:4;;114424:9;;114435:15;;114305:146;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;114486:34:0;;-1:-1:-1;;;114486:34:0;;-1:-1:-1;;;;;2132:32:1;;;114486:34:0;;;2114:51:1;114464:19:0;;-1:-1:-1;114536:13:0;;-1:-1:-1;114486:23:0;;;-1:-1:-1;114486:23:0;;2087:18:1;;114486:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:63;;;;:::i;:::-;114464:85;113870:716;-1:-1:-1;;;;;;;113870:716:0:o;123734:437::-;123842:12;;123787:7;;-1:-1:-1;;;;;123842:12:0;123833:4;123825:29;:66;;;;;123875:16;;123858:13;:33;123825:66;123807:357;;;-1:-1:-1;123925:24:0;;;123734:437::o;123807:357::-;124006:146;124050:10;;124083:12;;124118:15;;124006:21;:146::i;104336:797::-;104438:7;104447;104456;104465;104474;104483;104492;104532:23;104570:12;104597:28;104640:20;104674;104686:7;104674:11;:20::i;:::-;104517:177;;;;;;;;104706:15;104723:23;104748:12;104764:150;104790:7;104812:4;104831:20;104866:12;104893:10;:8;:10::i;:::-;104764:11;:150::i;:::-;104705:209;;-1:-1:-1;104705:209:0;-1:-1:-1;104705:209:0;-1:-1:-1;105018:15:0;;-1:-1:-1;105048:4:0;;-1:-1:-1;105067:20:0;;-1:-1:-1;105102:12:0;-1:-1:-1;;;;104336:797:0;;;;;;;;;:::o;23195:267::-;18401:13;;-1:-1:-1;;;18401:13:0;;;;18393:69;;;;-1:-1:-1;;;18393:69:0;;;;;;;:::i;:::-;23328:6:::1;:18:::0;;-1:-1:-1;;;;;;23328:18:0::1;-1:-1:-1::0;;;;;23328:18:0;::::1;::::0;;::::1;::::0;;;23362:43:::1;::::0;-1:-1:-1;;;;;;;;;;;;;23362:43:0;-1:-1:-1;;23362:43:0::1;23416:38;23437:16;23416:20;:38::i;20168:273::-:0;18401:13;;-1:-1:-1;;;18401:13:0;;;;18393:69;;;;-1:-1:-1;;;18393:69:0;;;;;;;:::i;:::-;20303:8:::1;:22:::0;;-1:-1:-1;;;;;;20303:22:0::1;-1:-1:-1::0;;;;;20303:22:0;::::1;::::0;;::::1;::::0;;;20341:43:::1;::::0;-1:-1:-1;;;;;;;;;;;;;20341:43:0;-1:-1:-1;;20341:43:0::1;20395:38;20416:16;20395:20;:38::i;124179:432::-:0;124391:197;;;;;;22186:25:1;;;22227:18;;;22220:34;;;22270:18;;;22263:34;;;124520:13:0;22313:18:1;;;22306:34;124564:4:0;22356:19:1;;;22349:61;124323:7:0;;22158:19:1;;124391:197:0;;;;;;;;;;;;124363:240;;;;;;124343:260;;124179:432;;;;;:::o;123488:223::-;-1:-1:-1;;;;;123625:14:0;;123564:15;123625:14;;;:7;:14;;;;;67068;;67205:1;67187:19;;;;67068:14;123686:17;123581:130;123488:223;;;:::o;124619:183::-;124712:7;124739:55;124761:20;:18;:20::i;:::-;124783:10;59010:57;;-1:-1:-1;;;59010:57:0;;;22932:27:1;22975:11;;;22968:27;;;23011:12;;;23004:28;;;58973:7:0;;23048:12:1;;59010:57:0;;;;;;;;;;;;59000:68;;;;;;58993:75;;58880:196;;;;;57189:279;57317:7;57338:17;57357:18;57379:25;57390:4;57396:1;57399;57402;57379:10;:25::i;:::-;57337:67;;;;57415:18;57427:5;57415:11;:18::i;:::-;-1:-1:-1;57451:9:0;57189:279;-1:-1:-1;;;;;57189:279:0:o;3112:108::-;3182:17;:30;;-1:-1:-1;;;;;;3182:30:0;-1:-1:-1;;;;;3182:30:0;;;;;;;;;;3112:108::o;25600:153::-;23765:12;:10;:12::i;:::-;23755:6;;-1:-1:-1;;;;;23755:6:0;;;:22;;;23747:67;;;;-1:-1:-1;;;23747:67:0;;;;;;;:::i;:::-;25707:38:::1;25728:16;25707:20;:38::i;22618:125::-:0;20770:12;:10;:12::i;:::-;20758:8;;-1:-1:-1;;;;;20758:8:0;;;:24;;;20736:110;;;;-1:-1:-1;;;20736:110:0;;;;;;;:::i;112177:1095::-;91843:16;:23;;-1:-1:-1;;;;91843:23:0;-1:-1:-1;;;91843:23:0;;;112287:10:::1;::::0;112271:13:::1;::::0;91843:23;;112271:26:::1;::::0;::::1;:::i;:::-;112252:45;;112308:26;112404:1;112392:8;112362:13;;112339:20;:36;;;;:::i;:::-;112338:62;;;;:::i;:::-;112337:68;;;;:::i;:::-;112308:97;;112441:20;112420:18;:41;112416:849;;;112506:20;112529:41;112552:18:::0;112529:20;:41:::1;:::i;:::-;112506:64:::0;-1:-1:-1;112610:21:0::1;112646:32;112506:64:::0;112646:18:::1;:32::i;:::-;112693:21;112717:38;112741:14:::0;112717:21:::1;:38;:::i;:::-;112693:62:::0;-1:-1:-1;112827:24:0::1;112910:12:::0;112855:34:::1;112871:18:::0;112693:62;112855:34:::1;:::i;:::-;112854:68;;;;:::i;:::-;112827:95:::0;-1:-1:-1;112937:22:0::1;112962:32;112827:95:::0;112962:13;:32:::1;:::i;:::-;112937:57;;113072:14;113056:13;;:30;;;;:::i;:::-;113040:13;:46:::0;113131:50:::1;113144:18:::0;113164:16;113131:12:::1;:50::i;:::-;113201:52;::::0;;22595:25:1;;;22651:2;22636:18;;22629:34;;;113201:52:0::1;::::0;22568:18:1;113201:52:0::1;;;;;;;112463:802;;;;;112416:849;-1:-1:-1::0;;91889:16:0;:24;;-1:-1:-1;;;;91889:24:0;;;-1:-1:-1;112177:1095:0:o;115103:1020::-;115274:7;;115318:13;;115347:7;115342:55;;115371:14;:12;:14::i;:::-;-1:-1:-1;;;;;115411:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;115435:22:0;;;;;;:11;:22;;;;;;;;115434:23;115411:46;115407:597;;;115474:48;115496:6;115504:9;115515:6;115474:21;:48::i;:::-;115407:597;;;-1:-1:-1;;;;;115545:19:0;;;;;;:11;:19;;;;;;;;115544:20;:46;;;;-1:-1:-1;;;;;;115568:22:0;;;;;;:11;:22;;;;;;;;115544:46;115540:464;;;115607:46;115627:6;115635:9;115646:6;115607:19;:46::i;115540:464::-;-1:-1:-1;;;;;115676:19:0;;;;;;:11;:19;;;;;;;;115675:20;:47;;;;-1:-1:-1;;;;;;115700:22:0;;;;;;:11;:22;;;;;;;;115699:23;115675:47;115671:333;;;115739:44;115757:6;115765:9;115776:6;115739:17;:44::i;115671:333::-;-1:-1:-1;;;;;115805:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;115828:22:0;;;;;;:11;:22;;;;;;;;115805:45;115801:203;;;115867:48;115889:6;115897:9;115908:6;115867:21;:48::i;115801:203::-;115948:44;115966:6;115974:9;115985:6;115948:17;:44::i;:::-;116019:7;116014:29;;116028:15;109602;;109592:7;:25;109644:21;;109628:13;:37;109689:18;;109676:10;:31;109736:23;;109718:15;:41;109548:219;116028:15;116054:7;:19;;;;116084:13;:31;-1:-1:-1;;;;115103:1020:0:o;106488:596::-;106586:7;;106622;;106539;;;;;106640:332;106664:9;:16;106660:20;;106640:332;;;106748:7;106724;:21;106732:9;106742:1;106732:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;106732:12:0;106724:21;;;;;;;;;;;;;:31;;:83;;;106800:7;106776;:21;106784:9;106794:1;106784:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;106784:12:0;106776:21;;;;;;;;;;;;;:31;106724:83;106702:146;;;106831:7;;106840;;106823:25;;;;;;;106488:596;;:::o;106702:146::-;106883:7;:21;106891:9;106901:1;106891:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;106891:12:0;106883:21;;;;;;;;;;;;;106873:31;;:7;:31;:::i;:::-;106863:41;;106939:7;:21;106947:9;106957:1;106947:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;106947:12:0;106939:21;;;;;;;;;;;;;106929:31;;:7;:31;:::i;:::-;106919:41;-1:-1:-1;106682:3:0;;;;:::i;:::-;;;;106640:332;;;;107006:7;;106996;;:17;;;;:::i;:::-;106986:7;:27;106982:58;;;107023:7;;107032;;107015:25;;;;;;106488:596;;:::o;106982:58::-;107059:7;;107068;;-1:-1:-1;106488:596:0;-1:-1:-1;106488:596:0:o;105141:520::-;105217:7;105226;105235;105244;105264:12;105279:24;105295:7;105279:15;:24::i;:::-;105264:39;;105314:28;105345:37;105374:7;105345:28;:37::i;:::-;105314:68;;105393:20;105416:32;105440:7;105416:23;:32::i;:::-;105393:55;-1:-1:-1;105459:23:0;105393:55;105528:20;105485:27;105508:4;105485:7;:27;:::i;:::-;:63;;;;:::i;:::-;:91;;;;:::i;:::-;105459:117;105612:4;;-1:-1:-1;105618:20:0;;-1:-1:-1;105618:20:0;-1:-1:-1;105141:520:0;;-1:-1:-1;;;105141:520:0:o;105669:642::-;105868:7;;;;105924:21;105934:11;105924:7;:21;:::i;:::-;105906:39;-1:-1:-1;105956:12:0;105971:18;105978:11;105971:4;:18;:::i;:::-;105956:33;-1:-1:-1;106000:28:0;106031:34;106054:11;106031:20;:34;:::i;:::-;106000:65;-1:-1:-1;106076:20:0;106099:26;106114:11;106099:12;:26;:::i;:::-;106076:49;-1:-1:-1;106136:23:0;106076:49;106205:20;106162:27;106185:4;106162:7;:27;:::i;:::-;:63;;;;:::i;:::-;:91;;;;:::i;:::-;106272:7;;;;-1:-1:-1;106298:4:0;;-1:-1:-1;105669:642:0;;-1:-1:-1;;;;;;;;;105669:642:0:o;55530:1520::-;55661:7;;56595:66;56582:79;;56578:163;;;-1:-1:-1;56694:1:0;;-1:-1:-1;56698:30:0;56678:51;;56578:163;56855:24;;;56838:14;56855:24;;;;;;;;;23298:25:1;;;23371:4;23359:17;;23339:18;;;23332:45;;;;23393:18;;;23386:34;;;23436:18;;;23429:34;;;56855:24:0;;23270:19:1;;56855:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56855:24:0;;-1:-1:-1;;56855:24:0;;;-1:-1:-1;;;;;;;56894:20:0;;56890:103;;56947:1;56951:29;56931:50;;;;;;;56890:103;57013:6;-1:-1:-1;57021:20:0;;-1:-1:-1;55530:1520:0;;;;;;;;:::o;50922:521::-;51000:20;50991:5;:29;;;;;;;;:::i;:::-;;50987:449;;50922:521;:::o;50987:449::-;51098:29;51089:5;:38;;;;;;;;:::i;:::-;;51085:351;;51144:34;;-1:-1:-1;;;51144:34:0;;23808:2:1;51144:34:0;;;23790:21:1;23847:2;23827:18;;;23820:30;23886:26;23866:18;;;23859:54;23930:18;;51144:34:0;23606:348:1;51085:351:0;51209:35;51200:5;:44;;;;;;;;:::i;:::-;;51196:240;;51261:41;;-1:-1:-1;;;51261:41:0;;24161:2:1;51261:41:0;;;24143:21:1;24200:2;24180:18;;;24173:30;24239:33;24219:18;;;24212:61;24290:18;;51261:41:0;23959:355:1;51196:240:0;51333:30;51324:5;:39;;;;;;;;:::i;:::-;;51320:116;;51380:44;;-1:-1:-1;;;51380:44:0;;24521:2:1;51380:44:0;;;24503:21:1;24560:2;24540:18;;;24533:30;24599:34;24579:18;;;24572:62;-1:-1:-1;;;24650:18:1;;;24643:32;24692:19;;51380:44:0;24319:398:1;113280:582:0;113434:16;;;113448:1;113434:16;;;;;;;;113410:21;;113434:16;;;;;;;;;;-1:-1:-1;113434:16:0;113410:40;;113479:4;113461;113466:1;113461:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;113461:23:0;;;:7;;;;;;;;;;:23;;;;113505:15;;:22;;;-1:-1:-1;;;113505:22:0;;;;:15;;;;;:20;;:22;;;;;113461:7;;113505:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;113495:4;113500:1;113495:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;113495:32:0;;;:7;;;;;;;;;:32;113570:15;;113538:62;;113555:4;;113570:15;113588:11;113538:8;:62::i;:::-;113611:15;;:243;;-1:-1:-1;;;113611:243:0;;-1:-1:-1;;;;;113611:15:0;;;;:66;;:243;;113709:11;;113611:15;;113781:4;;113808;;113828:15;;113611:243;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114594:501;114775:15;;114743:62;;114760:4;;-1:-1:-1;;;;;114775:15:0;114793:11;114743:8;:62::i;:::-;114816:15;;-1:-1:-1;;;;;114816:15:0;:31;114855:10;114905:4;114925:11;114816:15;;115037:9;20591:8;;-1:-1:-1;;;;;20591:8:0;;20524:83;115037:9;114816:271;;;;;;-1:-1:-1;;;;;;114816:271:0;;;-1:-1:-1;;;;;25668:15:1;;;114816:271:0;;;25650:34:1;25700:18;;;25693:34;;;;25743:18;;;25736:34;;;;25786:18;;;25779:34;25850:15;;;25829:19;;;25822:44;115061:15:0;25882:19:1;;;25875:35;25584:19;;114816:271:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;114594:501;;:::o;109141:399::-;109188:7;;:12;:34;;;;-1:-1:-1;109204:13:0;;:18;109188:34;:53;;;;-1:-1:-1;109226:10:0;;:15;109188:53;109184:66;;;109141:399::o;109184:66::-;109278:7;;;109260:15;:25;109320:13;;;109296:21;:37;109370:15;;;109344:23;:41;109417:10;;;109396:18;:31;-1:-1:-1;109438:11:0;;;;109460:17;;;;109488:19;;;109518:14;109141:399::o;117809:854::-;117960:15;117990:23;118028:12;118055:23;118093:12;118120:28;118163:20;118197:19;118208:7;118197:10;:19::i;:::-;117945:271;;;;;;;;;;;;;;118227:44;118244:6;118252:9;118263:7;118227:16;:44::i;:::-;-1:-1:-1;;;;;118300:15:0;;;;;;:7;:15;;;;;;:25;;118318:7;;118300:25;:::i;:::-;-1:-1:-1;;;;;118282:15:0;;;;;;:7;:15;;;;;;;;:43;;;;118354:7;:15;;;;:25;;118372:7;;118354:25;:::i;:::-;-1:-1:-1;;;;;118336:15:0;;;;;;;:7;:15;;;;;;:43;;;;118411:18;;;;;;;:36;;118432:15;;118411:36;:::i;:::-;-1:-1:-1;;;;;118390:18:0;;;;;;:7;:18;;;;;:57;118458:54;118483:20;118505:6;118458:24;:54::i;:::-;118523:38;118540:12;118554:6;118523:16;:38::i;:::-;118572:23;118584:4;118590;118572:11;:23::i;:::-;118628:9;-1:-1:-1;;;;;118611:44:0;118620:6;-1:-1:-1;;;;;118611:44:0;-1:-1:-1;;;;;;;;;;;118639:15:0;118611:44;;;;1385:25:1;;1373:2;1358:18;;1239:177;118611:44:0;;;;;;;;117934:729;;;;;;;117809:854;;;:::o;116935:866::-;117084:15;117114:23;117152:12;117179:23;117217:12;117244:28;117287:20;117321:19;117332:7;117321:10;:19::i;:::-;117069:271;;;;;;;;;;;;;;117351:44;117368:6;117376:9;117387:7;117351:16;:44::i;:::-;-1:-1:-1;;;;;117424:15:0;;;;;;:7;:15;;;;;;:25;;117442:7;;117424:25;:::i;:::-;-1:-1:-1;;;;;117406:15:0;;;;;;;:7;:15;;;;;;;;:43;;;;117481:18;;;;;:7;:18;;;;;:36;;117502:15;;117481:36;:::i;:::-;-1:-1:-1;;;;;117460:18:0;;;;;;:7;:18;;;;;;;;:57;;;;117549:7;:18;;;;:36;;117570:15;;117549:36;:::i;116131:796::-;116278:15;116308:23;116346:12;116373:23;116411:12;116438:28;116481:20;116515:19;116526:7;116515:10;:19::i;:::-;116263:271;;;;;;;;;;;;;;116545:44;116562:6;116570:9;116581:7;116545:16;:44::i;:::-;-1:-1:-1;;;;;116618:15:0;;;;;;:7;:15;;;;;;:25;;116636:7;;116618:25;:::i;99830:922::-;99981:15;100011:23;100049:12;100076:23;100114:12;100141:28;100184:20;100218:19;100229:7;100218:10;:19::i;:::-;99966:271;;;;;;;;;;;;;;100248:44;100265:6;100273:9;100284:7;100248:16;:44::i;:::-;-1:-1:-1;;;;;100321:15:0;;;;;;:7;:15;;;;;;:25;;100339:7;;100321:25;:::i;:::-;-1:-1:-1;;;;;100303:15:0;;;;;;:7;:15;;;;;;;;:43;;;;100375:7;:15;;;;:25;;100393:7;;100375:25;:::i;108221:128::-;108285:7;108334;108323;;108313;:17;;;;:::i;:::-;108312:29;;;;:::i;108929:204::-;109022:7;109042:11;109072:10;;109056:13;;:26;;;;:::i;:::-;109042:40;-1:-1:-1;109118:7:0;109101:13;109042:40;109101:7;:13;:::i;:::-;109100:25;;;;:::i;108523:398::-;108645:15;;108691:19;;108611:7;;108645:15;-1:-1:-1;;;;;108691:19:0;108675:12;:10;:12::i;:::-;-1:-1:-1;;;;;108675:35:0;;108671:198;;-1:-1:-1;108733:1:0;108671:198;;;108796:1;108756:23;:37;108780:12;:10;:12::i;:::-;-1:-1:-1;;;;;108756:37:0;-1:-1:-1;;;;;108756:37:0;;;;;;;;;;;;;:41;108752:117;;;108820:23;:37;108844:12;:10;:12::i;:::-;-1:-1:-1;;;;;108820:37:0;-1:-1:-1;;;;;108820:37:0;;;;;;;;;;;;;108814:43;;108752:117;108905:7;108887:13;108897:3;108887:7;:13;:::i;119243:579::-;119378:23;;-1:-1:-1;;;119378:23:0;;;;119374:441;;;119446:1;119426:17;119436:6;119426:9;:17::i;:::-;:21;119418:30;;;;;;119463:25;119541:17;119551:6;119541:9;:17::i;:::-;-1:-1:-1;;;;;119492:16:0;;;;;;:8;:16;;;;;;:28;;119512:7;;119492:28;:::i;:::-;119491:67;;;;:::i;:::-;-1:-1:-1;;;;;119577:16:0;;;;;;:8;:16;;;;;;119463:95;;-1:-1:-1;119577:36:0;-1:-1:-1;119573:154:0;;;-1:-1:-1;;;;;119651:16:0;;;;;;:8;:16;;;;;;:36;;119670:17;;119651:36;:::i;:::-;-1:-1:-1;;;;;119632:16:0;;;;;;:8;:16;;;;;:55;119573:154;;;-1:-1:-1;;;;;119707:16:0;;119726:1;119707:16;;;:8;:16;;;;;:20;119573:154;-1:-1:-1;;;;;119764:19:0;;;;;;:8;:19;;;;;;:39;;119786:17;;119764:39;:::i;:::-;-1:-1:-1;;;;;119742:19:0;;;;;;:8;:19;;;;;:61;-1:-1:-1;119243:579:0;;;:::o;107667:546::-;107789:19;107811:10;:8;:10::i;:::-;107789:32;-1:-1:-1;107832:28:0;107863:34;107789:32;107863:20;:34;:::i;:::-;107949:4;107933:22;;;;:7;:22;;;;;;107832:65;;-1:-1:-1;107933:45:0;;107832:65;;107933:45;:::i;:::-;107924:4;107908:22;;;;:7;:22;;;;;;;;:70;;;;107993:11;:26;;;;;;107989:149;;;108092:4;108076:22;;;;:7;:22;;;;;;:62;;108118:20;;108076:62;:::i;:::-;108050:4;108034:22;;;;:7;:22;;;;;:104;107989:149;108154:51;;1385:25:1;;;108177:4:0;;-1:-1:-1;;;;;108154:51:0;;;-1:-1:-1;;;;;;;;;;;108154:51:0;1373:2:1;1358:18;108154:51:0;;;;;;;;107778:435;;107667:546;;:::o;107092:567::-;107177:12;107193:1;107177:17;107173:30;;107092:567;;:::o;107173:30::-;107213:19;107235:10;:8;:10::i;:::-;107213:32;-1:-1:-1;107256:20:0;107279:26;107213:32;107279:12;:26;:::i;:::-;107368:19;;;-1:-1:-1;;;;;107368:19:0;107360:28;;;;:7;:28;;;;;;;107256:49;;-1:-1:-1;107360:56:0;;107256:49;;107360:56;:::i;:::-;107324:19;;;-1:-1:-1;;;;;107324:19:0;;;107316:28;;;;:7;:28;;;;;;:100;;;;107443:19;;;;;107431:32;;:11;:32;;;;;;;107427:159;;;107534:19;;;-1:-1:-1;;;;;107534:19:0;107526:28;;;;:7;:28;;;;;;;:60;;107574:12;;107526:60;:::i;:::-;107486:19;;;-1:-1:-1;;;;;107486:19:0;107478:28;;;;:7;:28;;;;;;:108;107427:159;107617:19;;;107602:49;;1385:25:1;;;-1:-1:-1;;;;;107617:19:0;;;;107602:49;;;;-1:-1:-1;;;;;;;;;;;107602:49:0;1358:18:1;107602:49:0;1239:177:1;104187:141:0;104275:4;104265:7;;:14;;;;:::i;:::-;104255:7;:24;104303:10;;:17;;104316:4;;104303:17;:::i;:::-;104290:10;:30;-1:-1:-1;;104187:141:0:o;14:139:1:-;-1:-1:-1;;;;;97:31:1;;87:42;;77:70;;143:1;140;133:12;158:263;225:6;278:2;266:9;257:7;253:23;249:32;246:52;;;294:1;291;284:12;246:52;333:9;320:23;352:39;385:5;352:39;:::i;426:548::-;538:4;567:2;596;585:9;578:21;628:6;622:13;671:6;666:2;655:9;651:18;644:34;696:1;706:140;720:6;717:1;714:13;706:140;;;815:14;;;811:23;;805:30;781:17;;;800:2;777:26;770:66;735:10;;706:140;;;710:3;895:1;890:2;881:6;870:9;866:22;862:31;855:42;965:2;958;954:7;949:2;941:6;937:15;933:29;922:9;918:45;914:54;906:62;;;;426:548;;;;:::o;1421:323::-;1489:6;1497;1550:2;1538:9;1529:7;1525:23;1521:32;1518:52;;;1566:1;1563;1556:12;1518:52;1605:9;1592:23;1624:39;1657:5;1624:39;:::i;:::-;1682:5;1734:2;1719:18;;;;1706:32;;-1:-1:-1;;;1421:323:1:o;2176:180::-;2235:6;2288:2;2276:9;2267:7;2263:23;2259:32;2256:52;;;2304:1;2301;2294:12;2256:52;-1:-1:-1;2327:23:1;;2176:180;-1:-1:-1;2176:180:1:o;2361:472::-;2438:6;2446;2454;2507:2;2495:9;2486:7;2482:23;2478:32;2475:52;;;2523:1;2520;2513:12;2475:52;2562:9;2549:23;2581:39;2614:5;2581:39;:::i;:::-;2639:5;-1:-1:-1;2696:2:1;2681:18;;2668:32;2709:41;2668:32;2709:41;:::i;:::-;2361:472;;2769:7;;-1:-1:-1;;;2823:2:1;2808:18;;;;2795:32;;2361:472::o;3417:160::-;3482:20;;3538:13;;3531:21;3521:32;;3511:60;;3567:1;3564;3557:12;3511:60;3417:160;;;:::o;3582:180::-;3638:6;3691:2;3679:9;3670:7;3666:23;3662:32;3659:52;;;3707:1;3704;3697:12;3659:52;3730:26;3746:9;3730:26;:::i;3767:248::-;3832:6;3840;3893:2;3881:9;3872:7;3868:23;3864:32;3861:52;;;3909:1;3906;3899:12;3861:52;3945:9;3932:23;3922:33;;3974:35;4005:2;3994:9;3990:18;3974:35;:::i;:::-;3964:45;;3767:248;;;;;:::o;4020:404::-;4088:6;4096;4149:2;4137:9;4128:7;4124:23;4120:32;4117:52;;;4165:1;4162;4155:12;4117:52;4204:9;4191:23;4223:39;4256:5;4223:39;:::i;:::-;4281:5;-1:-1:-1;4338:2:1;4323:18;;4310:32;4351:41;4310:32;4351:41;:::i;:::-;4411:7;4401:17;;;4020:404;;;;;:::o;4653:845::-;4764:6;4772;4780;4788;4796;4804;4812;4865:3;4853:9;4844:7;4840:23;4836:33;4833:53;;;4882:1;4879;4872:12;4833:53;4921:9;4908:23;4940:39;4973:5;4940:39;:::i;:::-;4998:5;-1:-1:-1;5055:2:1;5040:18;;5027:32;5068:41;5027:32;5068:41;:::i;:::-;5128:7;-1:-1:-1;5182:2:1;5167:18;;5154:32;;-1:-1:-1;5233:2:1;5218:18;;5205:32;;-1:-1:-1;5289:3:1;5274:19;;5261:33;5338:4;5325:18;;5313:31;;5303:59;;5358:1;5355;5348:12;5303:59;4653:845;;;;-1:-1:-1;4653:845:1;;;;5381:7;5435:3;5420:19;;5407:33;;-1:-1:-1;5487:3:1;5472:19;;;5459:33;;4653:845;-1:-1:-1;;4653:845:1:o;5503:349::-;5705:2;5687:21;;;5744:2;5724:18;;;5717:30;5783:27;5778:2;5763:18;;5756:55;5843:2;5828:18;;5503:349::o;6408:380::-;6487:1;6483:12;;;;6530;;;6551:61;;6605:4;6597:6;6593:17;6583:27;;6551:61;6658:2;6650:6;6647:14;6627:18;6624:38;6621:161;;6704:10;6699:3;6695:20;6692:1;6685:31;6739:4;6736:1;6729:15;6767:4;6764:1;6757:15;6793:127;6854:10;6849:3;6845:20;6842:1;6835:31;6885:4;6882:1;6875:15;6909:4;6906:1;6899:15;6925:128;6992:9;;;7013:11;;;7010:37;;;7027:18;;:::i;7058:168::-;7131:9;;;7162;;7179:15;;;7173:22;;7159:37;7149:71;;7200:18;;:::i;7231:127::-;7292:10;7287:3;7283:20;7280:1;7273:31;7323:4;7320:1;7313:15;7347:4;7344:1;7337:15;7363:120;7403:1;7429;7419:35;;7434:18;;:::i;:::-;-1:-1:-1;7468:9:1;;7363:120::o;7488:356::-;7690:2;7672:21;;;7709:18;;;7702:30;7768:34;7763:2;7748:18;;7741:62;7835:2;7820:18;;7488:356::o;7849:335::-;8051:2;8033:21;;;8090:2;8070:18;;;8063:30;-1:-1:-1;;;8124:2:1;8109:18;;8102:41;8175:2;8160:18;;7849:335::o;8886:343::-;9088:2;9070:21;;;9127:2;9107:18;;;9100:30;-1:-1:-1;;;9161:2:1;9146:18;;9139:49;9220:2;9205:18;;8886:343::o;9234:125::-;9299:9;;;9320:10;;;9317:36;;;9333:18;;:::i;9364:336::-;9566:2;9548:21;;;9605:2;9585:18;;;9578:30;-1:-1:-1;;;9639:2:1;9624:18;;9617:42;9691:2;9676:18;;9364:336::o;9705:331::-;9907:2;9889:21;;;9946:1;9926:18;;;9919:29;-1:-1:-1;;;9979:2:1;9964:18;;9957:38;10027:2;10012:18;;9705:331::o;10041:127::-;10102:10;10097:3;10093:20;10090:1;10083:31;10133:4;10130:1;10123:15;10157:4;10154:1;10147:15;10173:127;10234:10;10229:3;10225:20;10222:1;10215:31;10265:4;10262:1;10255:15;10289:4;10286:1;10279:15;10305:135;10344:3;10365:17;;;10362:43;;10385:18;;:::i;:::-;-1:-1:-1;10432:1:1;10421:13;;10305:135::o;10789:399::-;10991:2;10973:21;;;11030:2;11010:18;;;11003:30;11069:34;11064:2;11049:18;;11042:62;-1:-1:-1;;;11135:2:1;11120:18;;11113:33;11178:3;11163:19;;10789:399::o;11968:112::-;12000:1;12026;12016:35;;12031:18;;:::i;:::-;-1:-1:-1;12065:9:1;;11968:112::o;12085:127::-;12146:10;12141:3;12137:20;12134:1;12127:31;12177:4;12174:1;12167:15;12201:4;12198:1;12191:15;12343:545;12445:2;12440:3;12437:11;12434:448;;;12481:1;12506:5;12502:2;12495:17;12551:4;12547:2;12537:19;12621:2;12609:10;12605:19;12602:1;12598:27;12592:4;12588:38;12657:4;12645:10;12642:20;12639:47;;;-1:-1:-1;12680:4:1;12639:47;12735:2;12730:3;12726:12;12723:1;12719:20;12713:4;12709:31;12699:41;;12790:82;12808:2;12801:5;12798:13;12790:82;;;12853:17;;;12834:1;12823:13;12790:82;;13064:1352;13190:3;13184:10;13217:18;13209:6;13206:30;13203:56;;;13239:18;;:::i;:::-;13268:97;13358:6;13318:38;13350:4;13344:11;13318:38;:::i;:::-;13312:4;13268:97;:::i;:::-;13420:4;;13484:2;13473:14;;13501:1;13496:663;;;;14203:1;14220:6;14217:89;;;-1:-1:-1;14272:19:1;;;14266:26;14217:89;-1:-1:-1;;13021:1:1;13017:11;;;13013:24;13009:29;12999:40;13045:1;13041:11;;;12996:57;14319:81;;13466:944;;13496:663;12290:1;12283:14;;;12327:4;12314:18;;-1:-1:-1;;13532:20:1;;;13650:236;13664:7;13661:1;13658:14;13650:236;;;13753:19;;;13747:26;13732:42;;13845:27;;;;13813:1;13801:14;;;;13680:19;;13650:236;;;13654:3;13914:6;13905:7;13902:19;13899:201;;;13975:19;;;13969:26;-1:-1:-1;;14058:1:1;14054:14;;;14070:3;14050:24;14046:37;14042:42;14027:58;14012:74;;13899:201;-1:-1:-1;;;;;14146:1:1;14130:14;;;14126:22;14113:36;;-1:-1:-1;13064:1352:1:o;14421:259::-;14491:6;14544:2;14532:9;14523:7;14519:23;14515:32;14512:52;;;14560:1;14557;14550:12;14512:52;14592:9;14586:16;14611:39;14644:5;14611:39;:::i;14994:844::-;15124:3;15153:1;15186:6;15180:13;15216:36;15242:9;15216:36;:::i;:::-;15271:1;15288:18;;;15315:133;;;;15462:1;15457:356;;;;15281:532;;15315:133;-1:-1:-1;;15348:24:1;;15336:37;;15421:14;;15414:22;15402:35;;15393:45;;;-1:-1:-1;15315:133:1;;15457:356;15488:6;15485:1;15478:17;15518:4;15563:2;15560:1;15550:16;15588:1;15602:165;15616:6;15613:1;15610:13;15602:165;;;15694:14;;15681:11;;;15674:35;15737:16;;;;15631:10;;15602:165;;;15606:3;;;15796:6;15791:3;15787:16;15780:23;;15281:532;-1:-1:-1;15829:3:1;;14994:844;-1:-1:-1;;;;;;14994:844:1:o;16042:400::-;16244:2;16226:21;;;16283:2;16263:18;;;16256:30;16322:34;16317:2;16302:18;;16295:62;-1:-1:-1;;;16388:2:1;16373:18;;16366:34;16432:3;16417:19;;16042:400::o;20345:184::-;20415:6;20468:2;20456:9;20447:7;20443:23;20439:32;20436:52;;;20484:1;20481;20474:12;20436:52;-1:-1:-1;20507:16:1;;20345:184;-1:-1:-1;20345:184:1:o;20534:461::-;20587:3;20625:5;20619:12;20652:6;20647:3;20640:19;20678:4;20707:2;20702:3;20698:12;20691:19;;20744:2;20737:5;20733:14;20765:1;20775:195;20789:6;20786:1;20783:13;20775:195;;;20854:13;;-1:-1:-1;;;;;20850:39:1;20838:52;;20910:12;;;;20945:15;;;;20886:1;20804:9;20775:195;;;-1:-1:-1;20986:3:1;;20534:461;-1:-1:-1;;;;;20534:461:1:o;21000:510::-;21271:6;21260:9;21253:25;21314:3;21309:2;21298:9;21294:18;21287:31;21234:4;21335:57;21387:3;21376:9;21372:19;21364:6;21335:57;:::i;:::-;-1:-1:-1;;;;;21428:32:1;;;;21423:2;21408:18;;21401:60;-1:-1:-1;21492:2:1;21477:18;21470:34;21327:65;21000:510;-1:-1:-1;;21000:510:1:o;21515:407::-;21717:2;21699:21;;;21756:2;21736:18;;;21729:30;21795:34;21790:2;21775:18;;21768:62;-1:-1:-1;;;21861:2:1;21846:18;;21839:41;21912:3;21897:19;;21515:407::o;23474:127::-;23535:10;23530:3;23526:20;23523:1;23516:31;23566:4;23563:1;23556:15;23590:4;23587:1;23580:15;24722:582;25021:6;25010:9;25003:25;25064:6;25059:2;25048:9;25044:18;25037:34;25107:3;25102:2;25091:9;25087:18;25080:31;24984:4;25128:57;25180:3;25169:9;25165:19;25157:6;25128:57;:::i;:::-;-1:-1:-1;;;;;25221:32:1;;;;25216:2;25201:18;;25194:60;-1:-1:-1;25285:3:1;25270:19;25263:35;25120:65;24722:582;-1:-1:-1;;;24722:582:1:o;25921:306::-;26009:6;26017;26025;26078:2;26066:9;26057:7;26053:23;26049:32;26046:52;;;26094:1;26091;26084:12;26046:52;26123:9;26117:16;26107:26;;26173:2;26162:9;26158:18;26152:25;26142:35;;26217:2;26206:9;26202:18;26196:25;26186:35;;25921:306;;;;;:::o
Swarm Source
ipfs://57a12d5236bcd5bb6851067694b5ad270f44d649a5ce9f282922b559517927f7
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.