Overview
SOPH Balance
SOPH Value
-More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
3129726 | 86 days ago | Contract Creation | 0 SOPH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
NFTPositionDescriptorZKSync
Compiler Version
v0.7.6+commit.7338295f
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; pragma abicoder v2; import "./interfaces/ISyncSwapRangePool.sol"; import "./libraries/external/SafeERC20Namer.sol"; import "./libraries/external/Base64.sol"; import "./libraries/external/ChainId.sol"; import "./interfaces/INonfungiblePositionManager.sol"; import "./interfaces/INonfungibleTokenPositionDescriptor.sol"; import "./interfaces/external/IERC20Metadata.sol"; import "./libraries/PoolAddress.sol"; import "./libraries/NFTDescriptor.sol"; import "./libraries/TokenRatioSortOrder.sol"; import "./libraries/NFTSVG.sol"; /// @title Describes NFT token positions /// @notice Produces a string containing the data URI for a JSON metadata string contract NFTPositionDescriptorZKSync is INonfungibleTokenPositionDescriptor { address private constant USDCE = 0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4; // USDC.e address private constant USDC = 0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4; // USDC Native address private constant USDT = 0x493257fD37EDB34451f62EDf8D2a0C418852bA4C; address private constant WBTC = 0xBBeB516fb02a01611cBBE0453Fe3c580D7281011; address public immutable WETH9 = 0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91; /// @notice Returns the native currency label as a string function nativeCurrencyLabel() public pure returns (string memory) { return "ETH"; } /// @inheritdoc INonfungibleTokenPositionDescriptor function tokenURI(INonfungiblePositionManager positionManager, uint256 tokenId) external view override returns (string memory) { (,, address token0, address token1, int24 tickSpacing, int24 tickLower, int24 tickUpper,,,,,) = positionManager.positions(tokenId); ISyncSwapRangePool pool = ISyncSwapRangePool( PoolAddress.computeAddress( positionManager.factory(), PoolAddress.PoolKey({token0: token0, token1: token1, tickSpacing: tickSpacing}) ) ); NFTDescriptor.ConstructTokenURIParams memory params; { bool _flipRatio = flipRatio(token0, token1, 0); address quoteTokenAddress = !_flipRatio ? token1 : token0; address baseTokenAddress = !_flipRatio ? token0 : token1; (, int24 tick, , , , ) = pool.slot0(); params = NFTDescriptor.ConstructTokenURIParams({ tokenId: tokenId, quoteTokenAddress: quoteTokenAddress, baseTokenAddress: baseTokenAddress, quoteTokenSymbol: quoteTokenAddress == WETH9 ? nativeCurrencyLabel() : SafeERC20Namer.tokenSymbol(quoteTokenAddress), baseTokenSymbol: baseTokenAddress == WETH9 ? nativeCurrencyLabel() : SafeERC20Namer.tokenSymbol(baseTokenAddress), quoteTokenDecimals: IERC20Metadata(quoteTokenAddress).decimals(), baseTokenDecimals: IERC20Metadata(baseTokenAddress).decimals(), flipRatio: _flipRatio, tickLower: tickLower, tickUpper: tickUpper, tickCurrent: tick, tickSpacing: tickSpacing, poolAddress: address(pool) }); } string memory image = Base64.encode(bytes(generateSVG(params))); string memory nameAndDescription = NFTDescriptor.constructTokenURI(params); return string( abi.encodePacked( "data:application/json;base64,", Base64.encode( bytes( abi.encodePacked( "{", nameAndDescription, ', "image": "', "data:image/svg+xml;base64,", image, '"}' ) ) ) ) ); } function generateSVG( NFTDescriptor.ConstructTokenURIParams memory params ) internal pure returns (string memory) { return NFTSVG.generateSVG({ quoteTokenAddress: params.quoteTokenAddress, baseTokenAddress: params.baseTokenAddress, quoteTokenSymbol: params.quoteTokenSymbol, baseTokenSymbol: params.baseTokenSymbol, tokenId: params.tokenId, tickLower: params.tickLower, tickUpper: params.tickUpper, tickCurrent: params.tickCurrent, tickSpacing: params.tickSpacing }); } function tokensOwed(INonfungiblePositionManager positionManager, uint256 tokenId, bool _flipRatio) internal view returns (uint256 quoteTokensOwed, uint256 baseTokensOwed) { (,,,,,,,,,, uint256 tokensOwed0, uint256 tokensOwed1) = positionManager.positions(tokenId); quoteTokensOwed = _flipRatio ? tokensOwed1 : tokensOwed0; baseTokensOwed = _flipRatio ? tokensOwed0 : tokensOwed1; } function flipRatio(address token0, address token1, uint256 chainId) public view returns (bool) { return tokenRatioPriority(token0, chainId) > tokenRatioPriority(token1, chainId); } function tokenRatioPriority(address token, uint256) public view returns (int256) { if (token == WETH9) { return TokenRatioSortOrder.DENOMINATOR; } if (token == USDCE || token == USDC) { return TokenRatioSortOrder.NUMERATOR_MOST; } else if (token == USDT) { return TokenRatioSortOrder.NUMERATOR_MORE; } else if (token == WBTC) { return TokenRatioSortOrder.DENOMINATOR_MOST; } return 0; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "./ICLPoolConstants.sol"; import "./ICLPoolState.sol"; import "./ICLPoolDerivedState.sol"; import "./ICLPoolActions.sol"; import "./ICLPoolOwnerActions.sol"; import "./ICLPoolEvents.sol"; /// @title The interface for a CL Pool /// @notice A CL pool facilitates swapping and automated market making between any two assets that strictly conform /// to the ERC20 specification /// @dev The pool interface is broken up into many smaller pieces interface ISyncSwapRangePool is ICLPoolConstants, ICLPoolState, ICLPoolDerivedState, ICLPoolActions, ICLPoolEvents, ICLPoolOwnerActions {}
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "../interfaces/ISyncSwapRangePoolFactory.sol"; /// @title Provides functions for deriving a pool address from the factory, tokens, and the fee library PoolAddress { /// @notice The identifying key of the pool struct PoolKey { address token0; address token1; int24 tickSpacing; } /// @notice Returns PoolKey: the ordered tokens with the matched fee levels /// @param tokenA The first token of a pool, unsorted /// @param tokenB The second token of a pool, unsorted /// @param tickSpacing The tick spacing of the pool /// @return Poolkey The pool details with ordered token0 and token1 assignments function getPoolKey(address tokenA, address tokenB, int24 tickSpacing) internal pure returns (PoolKey memory) { if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA); return PoolKey({token0: tokenA, token1: tokenB, tickSpacing: tickSpacing}); } /// @notice Deterministically computes the pool address given the factory and PoolKey /// @param factory The CL factory contract address /// @param key The PoolKey /// @return pool The contract address of the V3 pool function computeAddress(address factory, PoolKey memory key) internal view returns (address pool) { /* require(key.token0 < key.token1); pool = Clones.predictDeterministicAddress({ master: ISyncSwapRangePoolFactory(factory).poolImplementation(), salt: keccak256(abi.encode(key.token0, key.token1, key.tickSpacing)), deployer: factory }); */ pool = ISyncSwapRangePoolFactory(factory).getPool(key.token0, key.token1, key.tickSpacing); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "./INonfungiblePositionManager.sol"; /// @title Describes position NFT tokens via URI interface INonfungibleTokenPositionDescriptor { /// @notice Produces the URI describing a particular token ID for a position manager /// @dev Note this URI may be a data: URI with the JSON contents directly inlined /// @param positionManager The position manager for which to describe the token /// @param tokenId The ID of the token for which to produce a description, which may not be valid /// @return The URI of the ERC721-compliant metadata function tokenURI(INonfungiblePositionManager positionManager, uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; pragma abicoder v2; import "./external/IERC721Metadata.sol"; import "./external/IERC721Enumerable.sol"; import "./external/IERC721Permit.sol"; import "./external/IERC4906.sol"; import "./IPeripheryPayments.sol"; import "./IPeripheryImmutableState.sol"; import "../libraries/PoolAddress.sol"; /// @title Non-fungible token for positions /// @notice Wraps CL positions in a non-fungible token interface which allows for them to be transferred /// and authorized. interface INonfungiblePositionManager is IPeripheryPayments, IPeripheryImmutableState, IERC721Metadata, IERC721Enumerable, IERC721Permit, IERC4906 { /// @notice Emitted when liquidity is increased for a position NFT /// @dev Also emitted when a token is minted /// @param tokenId The ID of the token for which liquidity was increased /// @param liquidity The amount by which liquidity for the NFT position was increased /// @param amount0 The amount of token0 that was paid for the increase in liquidity /// @param amount1 The amount of token1 that was paid for the increase in liquidity event IncreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1); /// @notice Emitted when liquidity is decreased for a position NFT /// @param tokenId The ID of the token for which liquidity was decreased /// @param liquidity The amount by which liquidity for the NFT position was decreased /// @param amount0 The amount of token0 that was accounted for the decrease in liquidity /// @param amount1 The amount of token1 that was accounted for the decrease in liquidity event DecreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1); /// @notice Emitted when tokens are collected for a position NFT /// @dev The amounts reported may not be exactly equivalent to the amounts transferred, due to rounding behavior /// @param tokenId The ID of the token for which underlying tokens were collected /// @param recipient The address of the account that received the collected tokens /// @param amount0 The amount of token0 owed to the position that was collected /// @param amount1 The amount of token1 owed to the position that was collected event Collect(uint256 indexed tokenId, address recipient, uint256 amount0, uint256 amount1); /// @notice Emitted when a new Token Descriptor is set /// @param tokenDescriptor Address of the new Token Descriptor event TokenDescriptorChanged(address indexed tokenDescriptor); /// @notice Emitted when a new Owner is set /// @param owner Address of the new Owner event TransferOwnership(address indexed owner); /// @notice Returns the position information associated with a given token ID. /// @dev Throws if the token ID is not valid. /// @param tokenId The ID of the token that represents the position /// @return nonce The nonce for permits /// @return operator The address that is approved for spending /// @return token0 The address of the token0 for a specific pool /// @return token1 The address of the token1 for a specific pool /// @return tickSpacing The tick spacing associated with the pool /// @return tickLower The lower end of the tick range for the position /// @return tickUpper The higher end of the tick range for the position /// @return liquidity The liquidity of the position /// @return feeGrowthInside0LastX128 The fee growth of token0 as of the last action on the individual position /// @return feeGrowthInside1LastX128 The fee growth of token1 as of the last action on the individual position /// @return tokensOwed0 The uncollected amount of token0 owed to the position as of the last computation /// @return tokensOwed1 The uncollected amount of token1 owed to the position as of the last computation function positions(uint256 tokenId) external view returns ( uint96 nonce, address operator, address token0, address token1, int24 tickSpacing, int24 tickLower, int24 tickUpper, uint128 liquidity, uint256 feeGrowthInside0LastX128, uint256 feeGrowthInside1LastX128, uint128 tokensOwed0, uint128 tokensOwed1 ); /// @notice Returns the address of the Token Descriptor, that handles generating token URIs for Positions function tokenDescriptor() external view returns (address); struct MintParams { address token0; address token1; int24 tickSpacing; int24 tickLower; int24 tickUpper; uint256 amount0Desired; uint256 amount1Desired; uint256 amount0Min; uint256 amount1Min; address recipient; uint256 deadline; uint160 sqrtPriceX96; } /// @notice Creates a new position wrapped in a NFT /// @dev Call this when the pool does exist and is initialized. Note that if the pool is created but not initialized /// a method does not exist, i.e. the pool is assumed to be initialized. /// @param params The params necessary to mint a position, encoded as `MintParams` in calldata /// @return tokenId The ID of the token that represents the minted position /// @return liquidity The amount of liquidity for this position /// @return amount0 The amount of token0 /// @return amount1 The amount of token1 function mint(MintParams calldata params) external payable returns (uint256 tokenId, uint128 liquidity, uint256 amount0, uint256 amount1); struct IncreaseLiquidityParams { uint256 tokenId; uint256 amount0Desired; uint256 amount1Desired; uint256 amount0Min; uint256 amount1Min; uint256 deadline; } /// @notice Increases the amount of liquidity in a position, with tokens paid by the `msg.sender` /// @param params tokenId The ID of the token for which liquidity is being increased, /// amount0Desired The desired amount of token0 to be spent, /// amount1Desired The desired amount of token1 to be spent, /// amount0Min The minimum amount of token0 to spend, which serves as a slippage check, /// amount1Min The minimum amount of token1 to spend, which serves as a slippage check, /// deadline The time by which the transaction must be included to effect the change /// @return liquidity The new liquidity amount as a result of the increase /// @return amount0 The amount of token0 to acheive resulting liquidity /// @return amount1 The amount of token1 to acheive resulting liquidity function increaseLiquidity(IncreaseLiquidityParams calldata params) external payable returns (uint128 liquidity, uint256 amount0, uint256 amount1); struct DecreaseLiquidityParams { uint256 tokenId; uint128 liquidity; uint256 amount0Min; uint256 amount1Min; uint256 deadline; } /// @notice Decreases the amount of liquidity in a position and accounts it to the position /// @param params tokenId The ID of the token for which liquidity is being decreased, /// amount The amount by which liquidity will be decreased, /// amount0Min The minimum amount of token0 that should be accounted for the burned liquidity, /// amount1Min The minimum amount of token1 that should be accounted for the burned liquidity, /// deadline The time by which the transaction must be included to effect the change /// @return amount0 The amount of token0 accounted to the position's tokens owed /// @return amount1 The amount of token1 accounted to the position's tokens owed /// @dev The use of this function can cause a loss to users of the NonfungiblePositionManager /// @dev for tokens that have very high decimals. /// @dev The amount of tokens necessary for the loss is: 3.4028237e+38. /// @dev This is equivalent to 1e20 value with 18 decimals. function decreaseLiquidity(DecreaseLiquidityParams calldata params) external payable returns (uint256 amount0, uint256 amount1); struct CollectParams { uint256 tokenId; address recipient; uint128 amount0Max; uint128 amount1Max; } /// @notice Collects up to a maximum amount of fees owed to a specific position to the recipient /// @notice Used to update staked positions before deposit and withdraw /// @param params tokenId The ID of the NFT for which tokens are being collected, /// recipient The account that should receive the tokens, /// amount0Max The maximum amount of token0 to collect, /// amount1Max The maximum amount of token1 to collect /// @return amount0 The amount of fees collected in token0 /// @return amount1 The amount of fees collected in token1 function collect(CollectParams calldata params) external payable returns (uint256 amount0, uint256 amount1); /// @notice Burns a token ID, which deletes it from the NFT contract. The token must have 0 liquidity and all tokens /// must be collected first. /// @param tokenId The ID of the token that is being burned function burn(uint256 tokenId) external payable; /// @notice Sets a new Token Descriptor /// @param _tokenDescriptor Address of the new Token Descriptor to be chosen function setTokenDescriptor(address _tokenDescriptor) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.0; pragma abicoder v2; import "./external/BitMath.sol"; import "./external/FullMath.sol"; import "./external/HexStrings.sol"; import "./external/Strings.sol"; import "./external/SafeMath.sol"; import "./external/SignedSafeMath.sol"; import "./TickMath.sol"; library NFTDescriptor { using TickMath for int24; using Strings for uint256; using SafeMath for uint256; using SafeMath for uint160; using SafeMath for uint8; using SignedSafeMath for int256; using HexStrings for uint256; uint256 constant sqrt10X128 = 1076067327063303206878105757264492625226; struct ConstructTokenURIParams { uint256 tokenId; address quoteTokenAddress; address baseTokenAddress; string quoteTokenSymbol; string baseTokenSymbol; uint8 quoteTokenDecimals; uint8 baseTokenDecimals; bool flipRatio; int24 tickLower; int24 tickUpper; int24 tickCurrent; int24 tickSpacing; address poolAddress; } function constructTokenURI(ConstructTokenURIParams memory params) internal pure returns (string memory) { string memory name = generateName(params); string memory descriptionPartOne = generateDescriptionPartOne( escapeQuotes(params.quoteTokenSymbol), escapeQuotes(params.baseTokenSymbol), addressToString(params.poolAddress) ); string memory descriptionPartTwo = generateDescriptionPartTwo( params.tokenId.toString(), escapeQuotes(params.baseTokenSymbol), addressToString(params.quoteTokenAddress), addressToString(params.baseTokenAddress), (uint256(params.tickSpacing)).toString() ); return string( abi.encodePacked('"name":"', name, '", "description":"', descriptionPartOne, descriptionPartTwo, '"') ); } function escapeQuotes(string memory symbol) internal pure returns (string memory) { bytes memory symbolBytes = bytes(symbol); uint8 quotesCount = 0; for (uint8 i = 0; i < symbolBytes.length; i++) { if (symbolBytes[i] == '"') { quotesCount++; } } if (quotesCount > 0) { bytes memory escapedBytes = new bytes(symbolBytes.length + (quotesCount)); uint256 index; for (uint8 i = 0; i < symbolBytes.length; i++) { if (symbolBytes[i] == '"') { escapedBytes[index++] = "\\"; } escapedBytes[index++] = symbolBytes[i]; } return string(escapedBytes); } return symbol; } function generateDescriptionPartOne( string memory quoteTokenSymbol, string memory baseTokenSymbol, string memory poolAddress ) private pure returns (string memory) { return string( abi.encodePacked( "This NFT represents a liquidity position in a SyncSwap ", quoteTokenSymbol, "-", baseTokenSymbol, " pool. ", "The owner of this NFT can modify or redeem the position.\\n", "\\nPool Address: ", poolAddress, "\\n", quoteTokenSymbol ) ); } function generateDescriptionPartTwo( string memory tokenId, string memory baseTokenSymbol, string memory quoteTokenAddress, string memory baseTokenAddress, string memory tickSpacing ) private pure returns (string memory) { return string( abi.encodePacked( " Address: ", quoteTokenAddress, "\\n", baseTokenSymbol, " Address: ", baseTokenAddress, "\\nTick Spacing: ", tickSpacing, "\\nToken ID: ", tokenId, "\\n\\n", unicode"⚠️ DISCLAIMER: Due diligence is imperative when assessing this NFT. Make sure token addresses match the expected tokens, as token symbols may be imitated." ) ); } function generateName(ConstructTokenURIParams memory params) private pure returns (string memory) { return string( abi.encodePacked( "CL - ", escapeQuotes(params.quoteTokenSymbol), "/", escapeQuotes(params.baseTokenSymbol), " - ", tickToDecimalString( !params.flipRatio ? params.tickLower : params.tickUpper, params.tickSpacing, params.baseTokenDecimals, params.quoteTokenDecimals, params.flipRatio ), "<>", tickToDecimalString( !params.flipRatio ? params.tickUpper : params.tickLower, params.tickSpacing, params.baseTokenDecimals, params.quoteTokenDecimals, params.flipRatio ) ) ); } struct DecimalStringParams { // significant figures of decimal uint256 sigfigs; // length of decimal string uint8 bufferLength; // ending index for significant figures (funtion works backwards when copying sigfigs) uint8 sigfigIndex; // index of decimal place (0 if no decimal) uint8 decimalIndex; // start index for trailing/leading 0's for very small/large numbers uint8 zerosStartIndex; // end index for trailing/leading 0's for very small/large numbers uint8 zerosEndIndex; // true if decimal number is less than one bool isLessThanOne; // true if string should include "%" bool isPercent; } function generateDecimalString(DecimalStringParams memory params) private pure returns (string memory) { bytes memory buffer = new bytes(params.bufferLength); if (params.isPercent) { buffer[buffer.length - 1] = "%"; } if (params.isLessThanOne) { buffer[0] = "0"; buffer[1] = "."; } // add leading/trailing 0's for (uint256 zerosCursor = params.zerosStartIndex; zerosCursor < params.zerosEndIndex.add(1); zerosCursor++) { buffer[zerosCursor] = bytes1(uint8(48)); } // add sigfigs while (params.sigfigs > 0) { if (params.decimalIndex > 0 && params.sigfigIndex == params.decimalIndex) { buffer[params.sigfigIndex--] = "."; } buffer[params.sigfigIndex--] = bytes1(uint8(uint256(48).add(params.sigfigs % 10))); params.sigfigs /= 10; } return string(buffer); } function tickToDecimalString( int24 tick, int24 tickSpacing, uint8 baseTokenDecimals, uint8 quoteTokenDecimals, bool flipRatio ) internal pure returns (string memory) { if (tick == (TickMath.MIN_TICK / tickSpacing) * tickSpacing) { return !flipRatio ? "MIN" : "MAX"; } else if (tick == (TickMath.MAX_TICK / tickSpacing) * tickSpacing) { return !flipRatio ? "MAX" : "MIN"; } else { uint160 sqrtRatioX96 = TickMath.getSqrtRatioAtTick(tick); if (flipRatio) { sqrtRatioX96 = uint160(uint256(1 << 192).div(sqrtRatioX96)); } return fixedPointToDecimalString(sqrtRatioX96, baseTokenDecimals, quoteTokenDecimals); } } function sigfigsRounded(uint256 value, uint8 digits) private pure returns (uint256, bool) { bool extraDigit; if (digits > 5) { value = value.div((10 ** (digits - 5))); } bool roundUp = value % 10 > 4; value = value.div(10); if (roundUp) { value = value + 1; } // 99999 -> 100000 gives an extra sigfig if (value == 100000) { value /= 10; extraDigit = true; } return (value, extraDigit); } function adjustForDecimalPrecision(uint160 sqrtRatioX96, uint8 baseTokenDecimals, uint8 quoteTokenDecimals) private pure returns (uint256 adjustedSqrtRatioX96) { uint256 difference = abs(int256(baseTokenDecimals).sub(int256(quoteTokenDecimals))); if (difference > 0 && difference <= 18) { if (baseTokenDecimals > quoteTokenDecimals) { adjustedSqrtRatioX96 = sqrtRatioX96.mul(10 ** (difference.div(2))); if (difference % 2 == 1) { adjustedSqrtRatioX96 = FullMath.mulDiv(adjustedSqrtRatioX96, sqrt10X128, 1 << 128); } } else { adjustedSqrtRatioX96 = sqrtRatioX96.div(10 ** (difference.div(2))); if (difference % 2 == 1) { adjustedSqrtRatioX96 = FullMath.mulDiv(adjustedSqrtRatioX96, 1 << 128, sqrt10X128); } } } else { adjustedSqrtRatioX96 = uint256(sqrtRatioX96); } } function abs(int256 x) private pure returns (uint256) { return uint256(x >= 0 ? x : -x); } // @notice Returns string that includes first 5 significant figures of a decimal number // @param sqrtRatioX96 a sqrt price function fixedPointToDecimalString(uint160 sqrtRatioX96, uint8 baseTokenDecimals, uint8 quoteTokenDecimals) internal pure returns (string memory) { uint256 adjustedSqrtRatioX96 = adjustForDecimalPrecision(sqrtRatioX96, baseTokenDecimals, quoteTokenDecimals); uint256 value = FullMath.mulDiv(adjustedSqrtRatioX96, adjustedSqrtRatioX96, 1 << 64); bool priceBelow1 = adjustedSqrtRatioX96 < 2 ** 96; if (priceBelow1) { // 10 ** 43 is precision needed to retreive 5 sigfigs of smallest possible price + 1 for rounding value = FullMath.mulDiv(value, 10 ** 44, 1 << 128); } else { // leave precision for 4 decimal places + 1 place for rounding value = FullMath.mulDiv(value, 10 ** 5, 1 << 128); } // get digit count uint256 temp = value; uint8 digits; while (temp != 0) { digits++; temp /= 10; } // don't count extra digit kept for rounding digits = digits - 1; // address rounding (uint256 sigfigs, bool extraDigit) = sigfigsRounded(value, digits); if (extraDigit) { digits++; } DecimalStringParams memory params; if (priceBelow1) { // 7 bytes ( "0." and 5 sigfigs) + leading 0's bytes params.bufferLength = uint8(uint8(7).add(uint8(43).sub(digits))); params.zerosStartIndex = 2; params.zerosEndIndex = uint8(uint256(43).sub(digits).add(1)); params.sigfigIndex = uint8(params.bufferLength.sub(1)); } else if (digits >= 9) { // no decimal in price string params.bufferLength = uint8(digits.sub(4)); params.zerosStartIndex = 5; params.zerosEndIndex = uint8(params.bufferLength.sub(1)); params.sigfigIndex = 4; } else { // 5 sigfigs surround decimal params.bufferLength = 6; params.sigfigIndex = 5; params.decimalIndex = uint8(digits.sub(5).add(1)); } params.sigfigs = sigfigs; params.isLessThanOne = priceBelow1; params.isPercent = false; return generateDecimalString(params); } // @notice Returns string as decimal percentage of fee amount. // @param fee fee amount function feeToPercentString(uint24 fee) internal pure returns (string memory) { if (fee == 0) { return "0%"; } uint24 temp = fee; uint256 digits; uint8 numSigfigs; while (temp != 0) { if (numSigfigs > 0) { // count all digits preceding least significant figure numSigfigs++; } else if (temp % 10 != 0) { numSigfigs++; } digits++; temp /= 10; } DecimalStringParams memory params; uint256 nZeros; if (digits >= 5) { // if decimal > 1 (5th digit is the ones place) uint256 decimalPlace = digits.sub(numSigfigs) >= 4 ? 0 : 1; nZeros = digits.sub(5) < (numSigfigs.sub(1)) ? 0 : digits.sub(5).sub(numSigfigs.sub(1)); params.zerosStartIndex = numSigfigs; params.zerosEndIndex = uint8(params.zerosStartIndex.add(nZeros).sub(1)); params.sigfigIndex = uint8(params.zerosStartIndex.sub(1).add(decimalPlace)); params.bufferLength = uint8(nZeros.add(numSigfigs.add(1)).add(decimalPlace)); } else { // else if decimal < 1 nZeros = uint256(5).sub(digits); params.zerosStartIndex = 2; params.zerosEndIndex = uint8(nZeros.add(params.zerosStartIndex).sub(1)); params.bufferLength = uint8(nZeros.add(numSigfigs.add(2))); params.sigfigIndex = uint8((params.bufferLength).sub(2)); params.isLessThanOne = true; } params.sigfigs = uint256(fee).div(10 ** (digits.sub(numSigfigs))); params.isPercent = true; params.decimalIndex = digits > 4 ? uint8(digits.sub(4)) : 0; return generateDecimalString(params); } function addressToString(address addr) internal pure returns (string memory) { return (uint256(addr)).toHexString(20); } }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; library TokenRatioSortOrder { int256 constant NUMERATOR_MOST = 300; int256 constant NUMERATOR_MORE = 200; int256 constant NUMERATOR = 100; int256 constant DENOMINATOR_MOST = -300; int256 constant DENOMINATOR_MORE = -200; int256 constant DENOMINATOR = -100; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides functions for encoding/decoding base64 library Base64 { string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000" hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000" hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000" hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE_ENCODE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { // read 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // write 4 characters mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F)))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } function decode(string memory _data) internal pure returns (bytes memory) { bytes memory data = bytes(_data); if (data.length == 0) return new bytes(0); require(data.length % 4 == 0, "invalid base64 decoder input"); // load the table into memory bytes memory table = TABLE_DECODE; // every 4 characters represent 3 bytes uint256 decodedLen = (data.length / 4) * 3; // add some extra buffer at the end required for the writing bytes memory result = new bytes(decodedLen + 32); assembly { // padding with '=' let lastBytes := mload(add(data, mload(data))) if eq(and(lastBytes, 0xFF), 0x3d) { decodedLen := sub(decodedLen, 1) if eq(and(lastBytes, 0xFFFF), 0x3d3d) { decodedLen := sub(decodedLen, 1) } } // set the actual output length mstore(result, decodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 4 characters at a time for {} lt(dataPtr, endPtr) {} { // read 4 characters dataPtr := add(dataPtr, 4) let input := mload(dataPtr) // write 3 bytes let output := add( add( shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)), shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))), add( shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)), and(mload(add(tablePtr, and( input , 0xFF))), 0xFF) ) ) mstore(resultPtr, shl(232, output)) resultPtr := add(resultPtr, 3) } } return result; } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.5.0; import './AddressStringUtil.sol'; // produces token descriptors from inconsistent or absent ERC20 symbol implementations that can return string or bytes32 // this library will always produce a string symbol to represent the token library SafeERC20Namer { function bytes32ToString(bytes32 x) private pure returns (string memory) { bytes memory bytesString = new bytes(32); uint256 charCount = 0; for (uint256 j = 0; j < 32; j++) { bytes1 char = x[j]; if (char != 0) { bytesString[charCount] = char; charCount++; } } bytes memory bytesStringTrimmed = new bytes(charCount); for (uint256 j = 0; j < charCount; j++) { bytesStringTrimmed[j] = bytesString[j]; } return string(bytesStringTrimmed); } // assumes the data is in position 2 function parseStringData(bytes memory b) private pure returns (string memory) { uint256 charCount = 0; // first parse the charCount out of the data for (uint256 i = 32; i < 64; i++) { charCount <<= 8; charCount += uint8(b[i]); } bytes memory bytesStringTrimmed = new bytes(charCount); for (uint256 i = 0; i < charCount; i++) { bytesStringTrimmed[i] = b[i + 64]; } return string(bytesStringTrimmed); } // uses a heuristic to produce a token name from the address // the heuristic returns the full hex of the address string in upper case function addressToName(address token) private pure returns (string memory) { return AddressStringUtil.toAsciiString(token, 40); } // uses a heuristic to produce a token symbol from the address // the heuristic returns the first 6 hex of the address string in upper case function addressToSymbol(address token) private pure returns (string memory) { return AddressStringUtil.toAsciiString(token, 6); } // calls an external view token contract method that returns a symbol or name, and parses the output into a string function callAndParseStringReturn(address token, bytes4 selector) private view returns (string memory) { (bool success, bytes memory data) = token.staticcall(abi.encodeWithSelector(selector)); // if not implemented, or returns empty data, return empty string if (!success || data.length == 0) { return ''; } // bytes32 data always has length 32 if (data.length == 32) { bytes32 decoded = abi.decode(data, (bytes32)); return bytes32ToString(decoded); } else if (data.length > 64) { return abi.decode(data, (string)); } return ''; } // attempts to extract the token symbol. if it does not implement symbol, returns a symbol derived from the address function tokenSymbol(address token) internal view returns (string memory) { // 0x95d89b41 = bytes4(keccak256("symbol()")) string memory symbol = callAndParseStringReturn(token, 0x95d89b41); if (bytes(symbol).length == 0) { // fallback to 6 uppercase hex of address return addressToSymbol(token); } return symbol; } // attempts to extract the token name. if it does not implement name, returns a name derived from the address function tokenName(address token) internal view returns (string memory) { // 0x06fdde03 = bytes4(keccak256("name()")) string memory name = callAndParseStringReturn(token, 0x06fdde03); if (bytes(name).length == 0) { // fallback to full hex of address return addressToName(token); } return name; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.0; /// @title Function for getting the current chain ID library ChainId { /// @dev Gets the current chain ID /// @return chainId The current chain ID function get() internal pure returns (uint256 chainId) { assembly { chainId := chainid() } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.6; import "./external/Strings.sol"; import "./external/SafeMath.sol"; import "./external/Base64.sol"; import "./external/HexStrings.sol"; import "./TickMath.sol"; /// @title NFTSVG /// @notice Provides a function for generating an SVG associated with a CL NFT library NFTSVG { using Strings for uint256; using SafeMath for uint256; using HexStrings for uint256; string constant curve1 = 'M1 1C41 41 105 105 145 145'; string constant curve2 = 'M1 1C33 49 97 113 145 145'; string constant curve3 = 'M1 1C33 57 89 113 145 145'; string constant curve4 = 'M1 1C25 65 81 121 145 145'; string constant curve5 = 'M1 1C17 73 73 129 145 145'; string constant curve6 = 'M1 1C9 81 65 137 145 145'; string constant curve7 = 'M1 1C1 89 57.5 145 145 145'; string constant curve8 = 'M1 1C1 97 49 145 145 145'; struct DefParams { string color0; string color1; string color2; string color3; string x1; string x2; string x3; string y1; string y2; string y3; } function generateSVGDefs(DefParams memory params) private pure returns (string memory svg) { svg = string( abi.encodePacked( '<svg width="290" height="500" viewBox="0 0 290 500" xmlns="http://www.w3.org/2000/svg"', " xmlns:xlink='http://www.w3.org/1999/xlink'>", '<defs>', '<filter id="f1"><feImage result="p0" xlink:href="data:image/svg+xml;base64,', Base64.encode( bytes( abi.encodePacked( "<svg width='290' height='500' viewBox='0 0 290 500' xmlns='http://www.w3.org/2000/svg'><rect width='290px' height='500px' fill='#", params.color0, "'/></svg>" ) ) ), '"/><feImage result="p1" xlink:href="data:image/svg+xml;base64,', Base64.encode( bytes( abi.encodePacked( "<svg width='290' height='500' viewBox='0 0 290 500' xmlns='http://www.w3.org/2000/svg'><circle cx='", params.x1, "' cy='", params.y1, "' r='120px' fill='#", params.color1, "'/></svg>" ) ) ), '"/><feImage result="p2" xlink:href="data:image/svg+xml;base64,', Base64.encode( bytes( abi.encodePacked( "<svg width='290' height='500' viewBox='0 0 290 500' xmlns='http://www.w3.org/2000/svg'><circle cx='", params.x2, "' cy='", params.y2, "' r='120px' fill='#", params.color2, "'/></svg>" ) ) ), '" />', '<feImage result="p3" xlink:href="data:image/svg+xml;base64,', Base64.encode( bytes( abi.encodePacked( "<svg width='290' height='500' viewBox='0 0 290 500' xmlns='http://www.w3.org/2000/svg'><circle cx='", params.x3, "' cy='", params.y3, "' r='100px' fill='#", params.color3, "'/></svg>" ) ) ), '" /><feBlend mode="overlay" in="p0" in2="p1" /><feBlend mode="exclusion" in2="p2" /><feBlend mode="overlay" in2="p3" result="blendOut" /><feGaussianBlur ', 'in="blendOut" stdDeviation="42" /></filter> <clipPath id="corners"><rect width="290" height="500" rx="42" ry="42" /></clipPath>', '<path id="text-path-a" d="M40 12 H250 A28 28 0 0 1 278 40 V460 A28 28 0 0 1 250 488 H40 A28 28 0 0 1 12 460 V40 A28 28 0 0 1 40 12 z" />', '<path id="minimap" d="M234 444C234 457.949 242.21 463 253 463" />', '<filter id="top-region-blur"><feGaussianBlur in="SourceGraphic" stdDeviation="24" /></filter>', '<linearGradient id="grad-up" x1="1" x2="0" y1="1" y2="0"><stop offset="0.0" stop-color="white" stop-opacity="1" />', '<stop offset=".9" stop-color="white" stop-opacity="0" /></linearGradient>', '<linearGradient id="grad-down" x1="0" x2="1" y1="0" y2="1"><stop offset="0.0" stop-color="white" stop-opacity="1" /><stop offset="0.9" stop-color="white" stop-opacity="0" /></linearGradient>', '<mask id="fade-up" maskContentUnits="objectBoundingBox"><rect width="1" height="1" fill="url(#grad-up)" /></mask>', '<mask id="fade-down" maskContentUnits="objectBoundingBox"><rect width="1" height="1" fill="url(#grad-down)" /></mask>', '<mask id="none" maskContentUnits="objectBoundingBox"><rect width="1" height="1" fill="white" /></mask>', '<linearGradient id="grad-symbol"><stop offset="0.7" stop-color="white" stop-opacity="1" /><stop offset=".95" stop-color="white" stop-opacity="0" /></linearGradient>', '<mask id="fade-symbol" maskContentUnits="userSpaceOnUse"><rect width="290px" height="200px" fill="url(#grad-symbol)" /></mask></defs>', '<g clip-path="url(#corners)">', '<rect fill="', params.color0, '" x="0px" y="0px" width="290px" height="500px" />', '<rect style="filter: url(#f1)" x="0px" y="0px" width="290px" height="500px" />', ' <g style="filter:url(#top-region-blur); transform:scale(1.5); transform-origin:center top;">', '<rect fill="none" x="0px" y="0px" width="290px" height="500px" />', '<ellipse cx="50%" cy="0px" rx="180px" ry="120px" fill="#000" opacity="0.85" /></g>', '<rect x="0" y="0" width="290" height="500" rx="42" ry="42" fill="rgba(0,0,0,0)" stroke="rgba(255,255,255,0.2)" /></g>' ) ); } function generateSVGCardMantle( string memory quoteTokenSymbol, string memory baseTokenSymbol, string memory tickSpacing ) private pure returns (string memory svg) { svg = string( abi.encodePacked( '<g mask="url(#fade-symbol)"><rect fill="none" x="0px" y="0px" width="290px" height="200px" /> <text y="70px" x="32px" fill="white" font-family="\'Arial\', monospace" font-weight="200" font-size="36px">', quoteTokenSymbol, '/', baseTokenSymbol, '</text><text y="115px" x="32px" fill="white" font-family="\'Arial\', monospace" font-weight="200" font-size="36px">CL-', tickSpacing, '</text></g>', '<rect x="16" y="16" width="258" height="468" rx="26" ry="26" fill="rgba(0,0,0,0)" stroke="rgba(255,255,255,0.2)" />' ) ); } function generageSvgCurve( int24 tickLower, int24 tickUpper, int24 tickSpacing, int8 overRange ) private pure returns (string memory svg) { string memory fade = overRange == 1 ? '#fade-up' : overRange == -1 ? '#fade-down' : '#none'; string memory curve = getCurve(tickLower, tickUpper, tickSpacing); svg = string( abi.encodePacked( '<g mask="url(', fade, ')"', ' style="transform:translate(72px,189px)">' '<rect x="-16px" y="-16px" width="180px" height="180px" fill="none" />' '<path d="', curve, '" stroke="rgba(0,0,0,0.3)" stroke-width="32px" fill="none" stroke-linecap="round" />', '</g><g mask="url(', fade, ')"', ' style="transform:translate(72px,189px)">', '<rect x="-16px" y="-16px" width="180px" height="180px" fill="none" />', '<path d="', curve, '" stroke="rgba(255,255,255,1)" fill="none" stroke-linecap="round" /></g>', generateSVGCurveCircle(overRange) ) ); } function getCurve( int24 tickLower, int24 tickUpper, int24 tickSpacing ) internal pure returns (string memory curve) { int24 tickRange = (tickUpper - tickLower) / tickSpacing; if (tickRange <= 4) { curve = curve1; } else if (tickRange <= 8) { curve = curve2; } else if (tickRange <= 16) { curve = curve3; } else if (tickRange <= 32) { curve = curve4; } else if (tickRange <= 64) { curve = curve5; } else if (tickRange <= 128) { curve = curve6; } else if (tickRange <= 256) { curve = curve7; } else { curve = curve8; } } function generateSVGCurveCircle(int8 overRange) internal pure returns (string memory svg) { string memory curvex1 = '73'; string memory curvey1 = '190'; string memory curvex2 = '217'; string memory curvey2 = '334'; if (overRange == 1 || overRange == -1) { svg = string( abi.encodePacked( '<circle cx="', overRange == -1 ? curvex1 : curvex2, 'px" cy="', overRange == -1 ? curvey1 : curvey2, 'px" r="4px" fill="white" /><circle cx="', overRange == -1 ? curvex1 : curvex2, 'px" cy="', overRange == -1 ? curvey1 : curvey2, 'px" r="24px" fill="none" stroke="white" />' ) ); } else { svg = string( abi.encodePacked( '<circle cx="', curvex1, 'px" cy="', curvey1, 'px" r="4px" fill="white" />', '<circle cx="', curvex2, 'px" cy="', curvey2, 'px" r="4px" fill="white" />' ) ); } } function generateSVGPositionDataAndLocationCurve( string memory tokenId, int24 tickLower, int24 tickUpper ) private pure returns (string memory svg) { string memory tickLowerStr = tickToString(tickLower); string memory tickUpperStr = tickToString(tickUpper); uint256 str1length = bytes(tokenId).length + 4; uint256 str2length = bytes(tickLowerStr).length + 10; uint256 str3length = bytes(tickUpperStr).length + 10; (string memory xCoord, string memory yCoord) = rangeLocation(tickLower, tickUpper); svg = string( abi.encodePacked( ' <g style="transform:translate(29px, 384px)">', '<rect width="', uint256(7 * (str1length + 4)).toString(), 'px" height="26px" rx="8px" ry="8px" fill="rgba(0,0,0,0.6)" />', '<text x="12px" y="17px" font-family="\'Arial\', monospace" font-size="12px" fill="white"><tspan fill="rgba(255,255,255,0.6)">ID: </tspan>', tokenId, '</text></g>', ' <g style="transform:translate(29px, 414px)">', '<rect width="', uint256(7 * (str2length + 4)).toString(), 'px" height="26px" rx="8px" ry="8px" fill="rgba(0,0,0,0.6)" />', '<text x="12px" y="17px" font-family="\'Arial\', monospace" font-size="12px" fill="white"><tspan fill="rgba(255,255,255,0.6)">Min Tick: </tspan>', tickLowerStr, '</text></g>', ' <g style="transform:translate(29px, 444px)">', '<rect width="', uint256(7 * (str3length + 4)).toString(), 'px" height="26px" rx="8px" ry="8px" fill="rgba(0,0,0,0.6)" />', '<text x="12px" y="17px" font-family="\'Arial\', monospace" font-size="12px" fill="white"><tspan fill="rgba(255,255,255,0.6)">Max Tick: </tspan>', tickUpperStr, '</text></g>' '<g style="transform:translate(226px, 433px)">', '<rect width="36px" height="36px" rx="8px" ry="8px" fill="none" stroke="rgba(255,255,255,0.2)" />', '<path stroke-linecap="round" d="M8 9C8.00004 22.9494 16.2099 28 27 28" fill="none" stroke="white" />', '<circle style="transform:translate3d(', xCoord, 'px, ', yCoord, 'px, 0px)" cx="0px" cy="0px" r="4px" fill="white"/></g>' ) ); } function rangeLocation(int24 tickLower, int24 tickUpper) internal pure returns (string memory, string memory) { int24 midPoint = (tickLower + tickUpper) / 2; if (midPoint < -125_000) { return ('8', '7'); } else if (midPoint < -75_000) { return ('8', '10.5'); } else if (midPoint < -25_000) { return ('8', '14.25'); } else if (midPoint < -5_000) { return ('10', '18'); } else if (midPoint < 0) { return ('11', '21'); } else if (midPoint < 5_000) { return ('13', '23'); } else if (midPoint < 25_000) { return ('15', '25'); } else if (midPoint < 75_000) { return ('18', '26'); } else if (midPoint < 125_000) { return ('21', '27'); } else { return ('24', '27'); } } function generateSVGRareSparkle() private pure returns (string memory svg) { svg = string( abi.encodePacked( '<g style="transform:translate(226px, 392px)"><rect width="36px" height="36px" rx="8px" ry="8px" fill="none" stroke="rgba(255,255,255,0.2)" />', '<g><path style="transform:translate(6px,6px)" d="M12 0L12.6522 9.56587L18 1.6077L13.7819 10.2181L22.3923 6L14.4341 ', '11.3478L24 12L14.4341 12.6522L22.3923 18L13.7819 13.7819L18 22.3923L12.6522 14.4341L12 24L11.3478 14.4341L6 22.39', '23L10.2181 13.7819L1.6077 18L9.56587 12.6522L0 12L9.56587 11.3478L1.6077 6L10.2181 10.2181L6 1.6077L11.3478 9.56587L12 0Z" fill="white" />', '<animateTransform attributeName="transform" type="rotate" from="0 18 18" to="360 18 18" dur="10s" repeatCount="indefinite"/></g></g>' ) ); } function generateSVG( address quoteTokenAddress, address baseTokenAddress, string memory quoteTokenSymbol, string memory baseTokenSymbol, uint256 tokenId, int24 tickLower, int24 tickUpper, int24 tickCurrent, int24 tickSpacing ) internal pure returns (string memory svg) { return string( abi.encodePacked( generateSVGDefs(DefParams({ color0: tokenToColorHex(uint256(quoteTokenAddress), 68), color1: tokenToColorHex(uint256(baseTokenAddress), 136), color2: tokenToColorHex(uint256(quoteTokenAddress), 0), color3: tokenToColorHex(uint256(baseTokenAddress), 34), x1: scale(getCircleCoord(uint256(quoteTokenAddress), 16, tokenId), 0, 255, 16, 274), x2: scale(getCircleCoord(uint256(baseTokenAddress), 16, tokenId), 0, 255, 100, 484), x3: scale(getCircleCoord(uint256(quoteTokenAddress), 32, tokenId), 0, 255, 16, 274), y1: scale(getCircleCoord(uint256(baseTokenAddress), 32, tokenId), 0, 255, 100, 484), y2: scale(getCircleCoord(uint256(quoteTokenAddress), 48, tokenId), 0, 255, 16, 274), y3: scale(getCircleCoord(uint256(baseTokenAddress), 48, tokenId), 0, 255, 100, 484) })), generateSVGCardMantle( quoteTokenSymbol, baseTokenSymbol, (uint256(tickSpacing)).toString() ), generageSvgCurve( tickLower, tickUpper, tickSpacing, overRange(tickLower, tickUpper, tickCurrent) ), generateSVGPositionDataAndLocationCurve( tokenId.toString(), tickLower, tickUpper ), generateSVGRareSparkle(), '</svg>' ) ); } function overRange( int24 tickLower, int24 tickUpper, int24 tickCurrent ) private pure returns (int8) { if (tickCurrent < tickLower) { return -1; } else if (tickCurrent > tickUpper) { return 1; } else { return 0; } } function tokenToColorHex(uint256 token, uint256 offset) internal pure returns (string memory str) { return string((token >> offset).toHexStringNoPrefix(3)); } function tickToString(int24 tick) private pure returns (string memory) { string memory sign = ""; if (tick < 0) { tick = tick * -1; sign = "-"; } return string(abi.encodePacked(sign, uint256(tick).toString())); } function scale( uint256 n, uint256 inMn, uint256 inMx, uint256 outMn, uint256 outMx ) private pure returns (string memory) { return (n.sub(inMn).mul(outMx.sub(outMn)).div(inMx.sub(inMn)).add(outMn)).toString(); } function getCircleCoord( uint256 tokenAddress, uint256 offset, uint256 tokenId ) internal pure returns (uint256) { return (sliceTokenHex(tokenAddress, offset) * tokenId) % 255; } function sliceTokenHex(uint256 token, uint256 offset) internal pure returns (uint256) { return uint256(uint8(token >> offset)); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.7.0; import "./IERC20.sol"; /// @title IERC20Metadata /// @title Interface for ERC20 Metadata /// @notice Extension to IERC20 that includes token metadata interface IERC20Metadata is IERC20 { /// @return The name of the token function name() external view returns (string memory); /// @return The symbol of the token function symbol() external view returns (string memory); /// @return The number of decimal places the token has function decimals() external view returns (uint8); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Pool state that never changes /// @notice These parameters are not defined as immutable (due to proxy pattern) but are effectively immutable. /// @notice i.e., the methods will always return the same values interface ICLPoolConstants { function factory() external view returns (address); function master() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function gauge() external view returns (address); function nft() external view returns (address); /// @notice The pool tick spacing /// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive /// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ... /// This value is an int24 to avoid casting even though it is always positive. /// @return The tick spacing function tickSpacing() external view returns (int24); /// @notice The maximum amount of position liquidity that can use any tick in the range /// @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and /// also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool /// @return The max amount of liquidity per tick function maxLiquidityPerTick() external view returns (uint128); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Pool state that can change /// @notice These methods compose the pool's state, and can change with any frequency including multiple times /// per transaction interface ICLPoolState { /// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas /// when accessed externally. /// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value /// tick The current tick of the pool, i.e. according to the last tick transition that was run. /// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick /// boundary. /// observationIndex The index of the last oracle observation that was written, /// observationCardinality The current maximum number of observations stored in the pool, /// observationCardinalityNext The next maximum number of observations, to be updated when the observation. /// unlocked Whether the pool is currently locked to reentrancy function slot0() external view returns ( uint160 sqrtPriceX96, int24 tick, uint16 observationIndex, uint16 observationCardinality, uint16 observationCardinalityNext, bool unlocked ); /// @notice The pool's swap & flash fee in pips, i.e. 1e-6 /// @dev Can be modified in PoolFactory on a pool basis or upgraded to be dynamic. /// @return The swap & flash fee function getSwapFee(address sender, address tokenIn, address tokenOut, bytes memory data) external view returns (uint24); function fee() external view returns (uint24); /// @notice The pool's unstaked fee in pips, i.e. 1e-6 /// @dev Can be modified in PoolFactory on a pool basis or upgraded to be dynamic. /// @return The unstaked fee function getProtocolFee() external view returns (uint24); /// @notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool /// @dev This value can overflow the uint256 function feeGrowthGlobal0X128() external view returns (uint256); /// @notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool /// @dev This value can overflow the uint256 function feeGrowthGlobal1X128() external view returns (uint256); /// @notice The reward growth as a Q128.128 rewards of emission collected per unit of liquidity for the entire life of the pool /// @dev This value can overflow the uint256 function rewardGrowthGlobalX128() external view returns (uint256); /// @notice The amounts of token0 and token1 that are owed to the gauge /// @dev Gauge fees will never exceed uint128 max in either token function gaugeFees() external view returns (uint128 token0, uint128 token1); /// @notice the emission rate of time-based farming function rewardRate() external view returns (uint256); /// @notice acts as a virtual reserve that holds information on how many rewards are yet to be distributed function rewardReserve() external view returns (uint256); /// @notice timestamp of the end of the current epoch's rewards function periodFinish() external view returns (uint256); /// @notice last time the rewardReserve and rewardRate were updated function lastUpdated() external view returns (uint32); /// @notice tracks total rewards distributed when no staked liquidity in active tick for epoch ending at periodFinish /// @notice this amount is rolled over on the next call to notifyRewardAmount /// @dev rollover will always be smaller than the rewards distributed that epoch function rollover() external view returns (uint256); /// @notice The currently in range liquidity available to the pool /// @dev This value has no relationship to the total liquidity across all ticks /// @dev This value includes staked liquidity function liquidity() external view returns (uint128); /// @notice The currently in range staked liquidity available to the pool /// @dev This value has no relationship to the total staked liquidity across all ticks function stakedLiquidity() external view returns (uint128); /// @notice Look up information about a specific tick in the pool /// @param tick The tick to look up /// @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or /// tick upper, /// liquidityNet how much liquidity changes when the pool price crosses the tick, /// stakedLiquidityNet how much staked liquidity changes when the pool price crosses the tick, /// feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0, /// feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1, /// rewardGrowthOutsideX128 the reward growth on the other side of the tick from the current tick in emission token /// tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick /// secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick, /// secondsOutside the seconds spent on the other side of the tick from the current tick, /// initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false. /// Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0. /// In addition, these values are only relative and must be used only in comparison to previous snapshots for /// a specific position. function ticks(int24 tick) external view returns ( uint128 liquidityGross, int128 liquidityNet, int128 stakedLiquidityNet, uint256 feeGrowthOutside0X128, uint256 feeGrowthOutside1X128, uint256 rewardGrowthOutsideX128, int56 tickCumulativeOutside, uint160 secondsPerLiquidityOutsideX128, uint32 secondsOutside, bool initialized ); /// @notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information function tickBitmap(int16 wordPosition) external view returns (uint256); /// @notice Returns the information about a position by the position's key /// @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper /// @return _liquidity The amount of liquidity in the position, /// Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke, /// Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke, /// Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke, /// Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke function positions(bytes32 key) external view returns ( uint128 _liquidity, uint256 feeGrowthInside0LastX128, uint256 feeGrowthInside1LastX128, uint128 tokensOwed0, uint128 tokensOwed1 ); /// @notice Returns data about a specific observation index /// @param index The element of the observations array to fetch /// @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time /// ago, rather than at a specific index in the array. /// @return blockTimestamp The timestamp of the observation, /// Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp, /// Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp, /// Returns initialized whether the observation has been initialized and the values are safe to use function observations(uint256 index) external view returns ( uint32 blockTimestamp, int56 tickCumulative, uint160 secondsPerLiquidityCumulativeX128, bool initialized ); /// @notice Returns data about reward growth within a tick range. /// RewardGrowthGlobalX128 can be supplied as a parameter for claimable reward calculations. /// @dev Used in gauge reward/earned calculations /// @param tickLower The lower tick of the range /// @param tickUpper The upper tick of the range /// @param _rewardGrowthGlobalX128 a calculated rewardGrowthGlobalX128 or 0 (in case of 0 it means we use the rewardGrowthGlobalX128 from state) /// @return rewardGrowthInsideX128 The reward growth in the range function getRewardGrowthInside(int24 tickLower, int24 tickUpper, uint256 _rewardGrowthGlobalX128) external view returns (uint256 rewardGrowthInsideX128); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Pool state that is not stored /// @notice Contains view functions to provide information about the pool that is computed rather than stored on the /// blockchain. The functions here may have variable gas costs. interface ICLPoolDerivedState { /// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp /// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing /// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick, /// you must call it with secondsAgos = [3600, 0]. /// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in /// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio. /// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned /// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp /// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block /// timestamp function observe(uint32[] calldata secondsAgos) external view returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s); /// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range /// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed. /// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first /// snapshot is taken and the second snapshot is taken. /// @param tickLower The lower tick of the range /// @param tickUpper The upper tick of the range /// @return tickCumulativeInside The snapshot of the tick accumulator for the range /// @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range /// @return secondsInside The snapshot of seconds per liquidity for the range function snapshotCumulativesInside(int24 tickLower, int24 tickUpper) external view returns (int56 tickCumulativeInside, uint160 secondsPerLiquidityInsideX128, uint32 secondsInside); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Permissionless pool actions /// @notice Contains pool methods that can be called by anyone interface ICLPoolActions { /// @notice Initialize function used in proxy deployment /// @dev Can be called once only /// Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value /// @dev not locked because it initializes unlocked /// @param _factory The CL factory contract address /// @param _token0 The first token of the pool by address sort order /// @param _token1 The second token of the pool by address sort order /// @param _tickSpacing The pool tick spacing /// @param _sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96 function initialize( address _factory, address _token0, address _token1, int24 _tickSpacing, uint160 _sqrtPriceX96 ) external; /// @notice Initialize gauge and nft manager /// @dev Callable only once, by the gauge factory /// @param _gauge The gauge corresponding to this pool /// @param _nft The position manager used for position management function setGaugeAndPositionManager(address _gauge, address _nft) external; /// @notice Adds liquidity for the given recipient/tickLower/tickUpper position /// @dev The caller of this method receives a callback in the form of ICLMintCallback#uniswapV3MintCallback /// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends /// on tickLower, tickUpper, the amount of liquidity, and the current price. /// @param recipient The address for which the liquidity will be created /// @param tickLower The lower tick of the position in which to add liquidity /// @param tickUpper The upper tick of the position in which to add liquidity /// @param amount The amount of liquidity to mint /// @param data Any data that should be passed through to the callback /// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback /// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback function mint(address recipient, int24 tickLower, int24 tickUpper, uint128 amount, bytes calldata data) external returns (uint256 amount0, uint256 amount1); /// @notice Collects tokens owed to a position /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity. /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity. /// @param recipient The address which should receive the fees collected /// @param tickLower The lower tick of the position for which to collect fees /// @param tickUpper The upper tick of the position for which to collect fees /// @param amount0Requested How much token0 should be withdrawn from the fees owed /// @param amount1Requested How much token1 should be withdrawn from the fees owed /// @return amount0 The amount of fees collected in token0 /// @return amount1 The amount of fees collected in token1 function collect( address recipient, int24 tickLower, int24 tickUpper, uint128 amount0Requested, uint128 amount1Requested ) external returns (uint128 amount0, uint128 amount1); /// @notice Collects tokens owed to a position /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity. /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity. /// @param recipient The address which should receive the fees collected /// @param tickLower The lower tick of the position for which to collect fees /// @param tickUpper The upper tick of the position for which to collect fees /// @param amount0Requested How much token0 should be withdrawn from the fees owed /// @param amount1Requested How much token1 should be withdrawn from the fees owed /// @param owner Owner of the position in the pool (nft manager or gauge) /// @return amount0 The amount of fees collected in token0 /// @return amount1 The amount of fees collected in token1 function collect( address recipient, int24 tickLower, int24 tickUpper, uint128 amount0Requested, uint128 amount1Requested, address owner ) external returns (uint128 amount0, uint128 amount1); /// @notice Burn liquidity from the sender and account tokens owed for the liquidity to the position /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0 /// @dev Fees must be collected separately via a call to #collect /// @param tickLower The lower tick of the position for which to burn liquidity /// @param tickUpper The upper tick of the position for which to burn liquidity /// @param amount How much liquidity to burn /// @return amount0 The amount of token0 sent to the recipient /// @return amount1 The amount of token1 sent to the recipient function burn(int24 tickLower, int24 tickUpper, uint128 amount) external returns (uint256 amount0, uint256 amount1); /// @notice Burn liquidity from the supplied owner and account tokens owed for the liquidity to the position /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0 /// @dev Fees must be collected separately via a call to #collect /// @param tickLower The lower tick of the position for which to burn liquidity /// @param tickUpper The upper tick of the position for which to burn liquidity /// @param amount How much liquidity to burn /// @param owner Owner of the position in the pool (nft manager or gauge) /// @return amount0 The amount of token0 sent to the recipient /// @return amount1 The amount of token1 sent to the recipient function burn(int24 tickLower, int24 tickUpper, uint128 amount, address owner) external returns (uint256 amount0, uint256 amount1); /// @notice Convert existing liquidity into staked liquidity /// @notice Only callable by the gauge associated with this pool /// @param stakedLiquidityDelta The amount by which to increase or decrease the staked liquidity /// @param tickLower The lower tick of the position for which to stake liquidity /// @param tickUpper The upper tick of the position for which to stake liquidity /// @param positionUpdate If the nft and gauge position should be updated function stake(int128 stakedLiquidityDelta, int24 tickLower, int24 tickUpper, bool positionUpdate) external; /// @notice Swap token0 for token1, or token1 for token0 /// @dev The caller of this method receives a callback in the form of ICLSwapCallback#uniswapV3SwapCallback /// @param recipient The address to receive the output of the swap /// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0 /// @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative) /// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this /// value after the swap. If one for zero, the price cannot be greater than this value after the swap /// @param data Any data to be passed through to the callback /// @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive /// @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive function swap( address recipient, bool zeroForOne, int256 amountSpecified, uint160 sqrtPriceLimitX96, bytes calldata data ) external returns (int256 amount0, int256 amount1); function swap( address recipient, bool zeroForOne, int256 amountSpecified, uint160 sqrtPriceLimitX96, bytes calldata data, address sender, address callback, bytes calldata callbackData ) external returns (int256 amount0, int256 amount1); /// @notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback /// @dev The caller of this method receives a callback in the form of ICLFlashCallback#uniswapV3FlashCallback /// @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling /// with 0 amount{0,1} and sending the donation amount(s) from the callback /// @param recipient The address which will receive the token0 and token1 amounts /// @param amount0 The amount of token0 to send /// @param amount1 The amount of token1 to send /// @param data Any data to be passed through to the callback function flash(address recipient, uint256 amount0, uint256 amount1, bytes calldata data) external; /// @notice Increase the maximum number of price and liquidity observations that this pool will store /// @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to /// the input observationCardinalityNext. /// @param observationCardinalityNext The desired minimum number of observations for the pool to store function increaseObservationCardinalityNext(uint16 observationCardinalityNext) external; /// @notice Updates rewardGrowthGlobalX128 every time when any tick is crossed, /// or when any position is staked/unstaked from the gauge function updateRewardsGrowthGlobal() external; /// @notice Syncs rewards with gauge /// @param rewardRate the rate rewards being distributed during the epoch /// @param rewardReserve the available rewards to be distributed during the epoch /// @param periodFinish the end of the current period of rewards, updated once per epoch function syncReward(uint256 rewardRate, uint256 rewardReserve, uint256 periodFinish) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Events emitted by a pool /// @notice Contains all events emitted by the pool interface ICLPoolEvents { /// @notice Emitted exactly once by a pool when #initialize is first called on the pool /// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize /// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96 /// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool event Initialize(uint160 sqrtPriceX96, int24 tick); /// @notice Emitted when liquidity is minted for a given position /// @param sender The address that minted the liquidity /// @param owner The owner of the position and recipient of any minted liquidity /// @param tickLower The lower tick of the position /// @param tickUpper The upper tick of the position /// @param amount The amount of liquidity minted to the position range /// @param amount0 How much token0 was required for the minted liquidity /// @param amount1 How much token1 was required for the minted liquidity event Mint( address sender, address indexed owner, int24 indexed tickLower, int24 indexed tickUpper, uint128 amount, uint256 amount0, uint256 amount1 ); /// @notice Emitted when fees are collected by the owner of a position /// @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees /// @param owner The owner of the position for which fees are collected /// @param tickLower The lower tick of the position /// @param tickUpper The upper tick of the position /// @param amount0 The amount of token0 fees collected /// @param amount1 The amount of token1 fees collected event Collect( address indexed owner, address recipient, int24 indexed tickLower, int24 indexed tickUpper, uint128 amount0, uint128 amount1 ); /// @notice Emitted when a position's liquidity is removed /// @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect /// @param owner The owner of the position for which liquidity is removed /// @param tickLower The lower tick of the position /// @param tickUpper The upper tick of the position /// @param amount The amount of liquidity to remove /// @param amount0 The amount of token0 withdrawn /// @param amount1 The amount of token1 withdrawn event Burn( address indexed owner, int24 indexed tickLower, int24 indexed tickUpper, uint128 amount, uint256 amount0, uint256 amount1 ); /// @notice Emitted by the pool for any swaps between token0 and token1 /// @param sender The address that initiated the swap call, and that received the callback /// @param recipient The address that received the output of the swap /// @param amount0 The delta of the token0 balance of the pool /// @param amount1 The delta of the token1 balance of the pool /// @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96 /// @param liquidity The liquidity of the pool after the swap /// @param tick The log base 1.0001 of price of the pool after the swap event Swap( address indexed sender, address indexed recipient, int256 amount0, int256 amount1, uint160 sqrtPriceX96, uint128 liquidity, int24 tick ); /// @notice Emitted by the pool for any flashes of token0/token1 /// @param sender The address that initiated the swap call, and that received the callback /// @param recipient The address that received the tokens from flash /// @param amount0 The amount of token0 that was flashed /// @param amount1 The amount of token1 that was flashed /// @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee /// @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee event Flash( address indexed sender, address indexed recipient, uint256 amount0, uint256 amount1, uint256 paid0, uint256 paid1 ); /// @notice Emitted by the pool for increases to the number of observations that can be stored /// @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index /// just before a mint/swap/burn. /// @param observationCardinalityNextOld The previous value of the next observation cardinality /// @param observationCardinalityNextNew The updated value of the next observation cardinality event IncreaseObservationCardinalityNext( uint16 observationCardinalityNextOld, uint16 observationCardinalityNextNew ); /// @notice Emitted when the protocol fee is changed by the pool /// @param feeProtocol0Old The previous value of the token0 protocol fee /// @param feeProtocol1Old The previous value of the token1 protocol fee /// @param feeProtocol0New The updated value of the token0 protocol fee /// @param feeProtocol1New The updated value of the token1 protocol fee event SetFeeProtocol(uint8 feeProtocol0Old, uint8 feeProtocol1Old, uint8 feeProtocol0New, uint8 feeProtocol1New); /// @notice Emitted when the collected protocol fees are withdrawn by the gauge /// @param recipient The address that receives the collected protocol fees /// @param amount0 The amount of token0 protocol fees that is withdrawn /// @param amount0 The amount of token1 protocol fees that is withdrawn event CollectFees(address indexed recipient, uint128 amount0, uint128 amount1); event FeeAmount(address indexed token, uint24 indexed feeRate, uint256 totalFeeAmount, uint256 protocolFeeAmount); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "./IVoter.sol"; /// @title The interface for the CL Factory /// @notice The CL Factory facilitates creation of CL pools and control over the protocol fees interface ISyncSwapRangePoolFactory { /// @notice Emitted when a pool is created /// @param token0 The first token of the pool by address sort order /// @param token1 The second token of the pool by address sort order /// @param tickSpacing The minimum number of ticks between initialized ticks /// @param pool The address of the created pool event PoolCreated( address indexed token0, address indexed token1, int24 indexed tickSpacing, address pool ); /// @notice Emitted when a new tick spacing is enabled for pool creation via the factory /// @param tickSpacing The minimum number of ticks between initialized ticks for pools /// @param fee The default fee for a pool created with a given tickSpacing event TickSpacingEnabled( int24 indexed tickSpacing, uint24 indexed fee ); function master() external view returns (address); /// @notice The address of the pool implementation contract used to deploy proxies / clones /// @return The address of the pool implementation contract function poolImplementation() external view returns (address); //function feeProvider() external view returns (address); function feeManager() external view returns (address); function feeCollector() external view returns (address); function poolCreator() external view returns (address); function gaugeFactory() external view returns (address); /// @notice Returns a default fee for a tick spacing. /// @dev Use getFee for the most up to date fee for a given pool. /// A tick spacing can never be removed, so this value should be hard coded or cached in the calling context /// @param tickSpacing The enabled tick spacing. Returns 0 if not enabled /// @return fee The default fee for the given tick spacing function defaultSwapFeeByTickSpacing(int24 tickSpacing) external view returns (uint24 fee); /// @notice Returns the pool address for a given pair of tokens and a tick spacing, or address 0 if it does not exist /// @dev tokenA and tokenB may be passed in either token0/token1 or token1/token0 order /// @param tokenA The contract address of either token0 or token1 /// @param tokenB The contract address of the other token /// @param tickSpacing The tick spacing of the pool /// @return pool The pool address function getPool(address tokenA, address tokenB, int24 tickSpacing) external view returns (address pool); /// @notice Returns a list of enabled tick spacings. Used to iterate through pools created by the factory /// @dev Tick spacings cannot be removed. Tick spacings are not ordered /// @return List of enabled tick spacings function tickSpacings() external view returns (int24[] memory); /// @notice Return address of pool created by this factory given its `index` /// @param index Index of the pool /// @return The pool address in the given index function allPools(uint256 index) external view returns (address); /// @notice Returns the number of pools created from this factory /// @return Number of pools created from this factory function allPoolsLength() external view returns (uint256); function isPool(address pool) external view returns (bool); /// @notice Used in VotingEscrow to determine if a contract is a valid pool of the factory /// @param pool The address of the pool to check /// @return Whether the pool is a valid pool of the factory function isPair(address pool) external view returns (bool); /// @notice Get swap & flash fee for a given pool. Accounts for default and dynamic fees /// @dev Swap & flash fee is denominated in pips. i.e. 1e-6 /// @param pool The pool to get the swap & flash fee for /// @return The swap & flash fee for the given pool function getSwapFee( address pool, address sender, address tokenIn, address tokenOut, bytes memory data ) external view returns (uint24); function getProtocolFee(address pool) external view returns (uint24); /// @notice Creates a pool for the given two tokens and fee /// @param tokenA One of the two tokens in the desired pool /// @param tokenB The other of the two tokens in the desired pool /// @param tickSpacing The desired tick spacing for the pool /// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96 /// @dev tokenA and tokenB may be passed in either order: token0/token1 or token1/token0. The call will /// revert if the pool already exists, the tick spacing is invalid, or the token arguments are invalid /// @return pool The address of the newly created pool function createPool( address tokenA, address tokenB, int24 tickSpacing, uint160 sqrtPriceX96 ) external returns (address pool); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Permissioned pool actions /// @notice Contains pool methods that may only be called by the factory owner interface ICLPoolOwnerActions { /// @notice Collect the gauge fee accrued to the pool /// @return amount The gauge fee collected in token function collectFee(bool isTokenZero) external returns (uint128 amount); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; /// @title Periphery Payments /// @notice Functions to ease deposits and withdrawals of ETH interface IPeripheryPayments { /// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH. /// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users. /// @param amountMinimum The minimum amount of WETH9 to unwrap /// @param recipient The address receiving ETH function unwrapWETH9(uint256 amountMinimum, address recipient) external payable; /// @notice Refunds any ETH balance held by this contract to the `msg.sender` /// @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps /// that use ether for the input amount function refundETH() external payable; /// @notice Transfers the full amount of a token held by this contract to recipient /// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users /// @param token The contract address of the token which will be transferred to `recipient` /// @param amountMinimum The minimum amount of token required for a transfer /// @param recipient The destination address of the token function sweepToken(address token, uint256 amountMinimum, address recipient) external payable; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Immutable state /// @notice Functions that return immutable state of the router interface IPeripheryImmutableState { /// @return Returns the address of the CL factory function factory() external view returns (address); /// @return Returns the address of WETH9 function WETH9() external view returns (address); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0 <0.8.0; /// @title Math library for computing sqrt prices from ticks and vice versa /// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports /// prices between 2**-128 and 2**128 library TickMath { /// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128 int24 internal constant MIN_TICK = -887272; /// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128 int24 internal constant MAX_TICK = -MIN_TICK; /// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK) uint160 internal constant MIN_SQRT_RATIO = 4295128739; /// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK) uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342; /// @notice Calculates sqrt(1.0001^tick) * 2^96 /// @dev Throws if |tick| > max tick /// @param tick The input tick for the above formula /// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the ratio of the two assets (token1/token0) /// at the given tick function getSqrtRatioAtTick(int24 tick) internal pure returns (uint160 sqrtPriceX96) { uint256 absTick = tick < 0 ? uint256(-int256(tick)) : uint256(int256(tick)); require(absTick <= uint256(MAX_TICK), "T"); uint256 ratio = absTick & 0x1 != 0 ? 0xfffcb933bd6fad37aa2d162d1a594001 : 0x100000000000000000000000000000000; if (absTick & 0x2 != 0) ratio = (ratio * 0xfff97272373d413259a46990580e213a) >> 128; if (absTick & 0x4 != 0) ratio = (ratio * 0xfff2e50f5f656932ef12357cf3c7fdcc) >> 128; if (absTick & 0x8 != 0) ratio = (ratio * 0xffe5caca7e10e4e61c3624eaa0941cd0) >> 128; if (absTick & 0x10 != 0) ratio = (ratio * 0xffcb9843d60f6159c9db58835c926644) >> 128; if (absTick & 0x20 != 0) ratio = (ratio * 0xff973b41fa98c081472e6896dfb254c0) >> 128; if (absTick & 0x40 != 0) ratio = (ratio * 0xff2ea16466c96a3843ec78b326b52861) >> 128; if (absTick & 0x80 != 0) ratio = (ratio * 0xfe5dee046a99a2a811c461f1969c3053) >> 128; if (absTick & 0x100 != 0) ratio = (ratio * 0xfcbe86c7900a88aedcffc83b479aa3a4) >> 128; if (absTick & 0x200 != 0) ratio = (ratio * 0xf987a7253ac413176f2b074cf7815e54) >> 128; if (absTick & 0x400 != 0) ratio = (ratio * 0xf3392b0822b70005940c7a398e4b70f3) >> 128; if (absTick & 0x800 != 0) ratio = (ratio * 0xe7159475a2c29b7443b29c7fa6e889d9) >> 128; if (absTick & 0x1000 != 0) ratio = (ratio * 0xd097f3bdfd2022b8845ad8f792aa5825) >> 128; if (absTick & 0x2000 != 0) ratio = (ratio * 0xa9f746462d870fdf8a65dc1f90e061e5) >> 128; if (absTick & 0x4000 != 0) ratio = (ratio * 0x70d869a156d2a1b890bb3df62baf32f7) >> 128; if (absTick & 0x8000 != 0) ratio = (ratio * 0x31be135f97d08fd981231505542fcfa6) >> 128; if (absTick & 0x10000 != 0) ratio = (ratio * 0x9aa508b5b7a84e1c677de54f3e99bc9) >> 128; if (absTick & 0x20000 != 0) ratio = (ratio * 0x5d6af8dedb81196699c329225ee604) >> 128; if (absTick & 0x40000 != 0) ratio = (ratio * 0x2216e584f5fa1ea926041bedfe98) >> 128; if (absTick & 0x80000 != 0) ratio = (ratio * 0x48a170391f7dc42444e8fa2) >> 128; if (tick > 0) ratio = type(uint256).max / ratio; // this divides by 1<<32 rounding up to go from a Q128.128 to a Q128.96. // we then downcast because we know the result always fits within 160 bits due to our tick input constraint // we round up in the division so getTickAtSqrtRatio of the output price is always consistent sqrtPriceX96 = uint160((ratio >> 32) + (ratio % (1 << 32) == 0 ? 0 : 1)); } /// @notice Calculates the greatest tick value such that getRatioAtTick(tick) <= ratio /// @dev Throws in case sqrtPriceX96 < MIN_SQRT_RATIO, as MIN_SQRT_RATIO is the lowest value getRatioAtTick may /// ever return. /// @param sqrtPriceX96 The sqrt ratio for which to compute the tick as a Q64.96 /// @return tick The greatest tick for which the ratio is less than or equal to the input ratio function getTickAtSqrtRatio(uint160 sqrtPriceX96) internal pure returns (int24 tick) { // second inequality must be < because the price can never reach the price at the max tick require(sqrtPriceX96 >= MIN_SQRT_RATIO && sqrtPriceX96 < MAX_SQRT_RATIO, "R"); uint256 ratio = uint256(sqrtPriceX96) << 32; uint256 r = ratio; uint256 msb = 0; assembly { let f := shl(7, gt(r, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(6, gt(r, 0xFFFFFFFFFFFFFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(5, gt(r, 0xFFFFFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(4, gt(r, 0xFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(3, gt(r, 0xFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(2, gt(r, 0xF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(1, gt(r, 0x3)) msb := or(msb, f) r := shr(f, r) } assembly { let f := gt(r, 0x1) msb := or(msb, f) } if (msb >= 128) r = ratio >> (msb - 127); else r = ratio << (127 - msb); int256 log_2 = (int256(msb) - 128) << 64; assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(63, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(62, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(61, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(60, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(59, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(58, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(57, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(56, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(55, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(54, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(53, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(52, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(51, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(50, f)) } int256 log_sqrt10001 = log_2 * 255738958999603826347141; // 128.128 number int24 tickLow = int24((log_sqrt10001 - 3402992956809132418596140100660247210) >> 128); int24 tickHi = int24((log_sqrt10001 + 291339464771989622907027621153398088495) >> 128); tick = tickLow == tickHi ? tickLow : getSqrtRatioAtTick(tickHi) <= sqrtPriceX96 ? tickHi : tickLow; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity >=0.7.5; /// @title EIP-721 Metadata Update Extension interface IERC4906 { /// @dev This event emits when the metadata of a token is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFT. event MetadataUpdate(uint256 _tokenId); /// @dev This event emits when the metadata of a range of tokens is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFTs. event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; import "./IERC721.sol"; /// @title ERC721 with permit /// @notice Extension to ERC721 that includes a permit function for signature based approvals interface IERC721Permit is IERC721 { /// @notice The permit typehash used in the permit signature /// @return The typehash for the permit function PERMIT_TYPEHASH() external pure returns (bytes32); /// @notice The domain separator used in the permit signature /// @return The domain seperator used in encoding of permit signature function DOMAIN_SEPARATOR() external view returns (bytes32); /// @notice Approve of a specific token ID for spending by spender via signature /// @param spender The account that is being approved /// @param tokenId The ID of the token that is being approved for spending /// @param deadline The deadline timestamp by which the call must be mined for the approve to work /// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s` /// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s` /// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v` function permit(address spender, uint256 tokenId, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external payable; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title BitMath /// @dev This library provides functionality for computing bit properties of an unsigned integer library BitMath { /// @notice Returns the index of the most significant bit of the number, /// where the least significant bit is at index 0 and the most significant bit is at index 255 /// @dev The function satisfies the property: /// x >= 2**mostSignificantBit(x) and x < 2**(mostSignificantBit(x)+1) /// @param x the value for which to compute the most significant bit, must be greater than 0 /// @return r the index of the most significant bit function mostSignificantBit(uint256 x) internal pure returns (uint8 r) { require(x > 0); if (x >= 0x100000000000000000000000000000000) { x >>= 128; r += 128; } if (x >= 0x10000000000000000) { x >>= 64; r += 64; } if (x >= 0x100000000) { x >>= 32; r += 32; } if (x >= 0x10000) { x >>= 16; r += 16; } if (x >= 0x100) { x >>= 8; r += 8; } if (x >= 0x10) { x >>= 4; r += 4; } if (x >= 0x4) { x >>= 2; r += 2; } if (x >= 0x2) r += 1; } /// @notice Returns the index of the least significant bit of the number, /// where the least significant bit is at index 0 and the most significant bit is at index 255 /// @dev The function satisfies the property: /// (x & 2**leastSignificantBit(x)) != 0 and (x & (2**(leastSignificantBit(x)) - 1)) == 0) /// @param x the value for which to compute the least significant bit, must be greater than 0 /// @return r the index of the least significant bit function leastSignificantBit(uint256 x) internal pure returns (uint8 r) { require(x > 0); r = 255; if (x & type(uint128).max > 0) { r -= 128; } else { x >>= 128; } if (x & type(uint64).max > 0) { r -= 64; } else { x >>= 64; } if (x & type(uint32).max > 0) { r -= 32; } else { x >>= 32; } if (x & type(uint16).max > 0) { r -= 16; } else { x >>= 16; } if (x & type(uint8).max > 0) { r -= 8; } else { x >>= 8; } if (x & 0xf > 0) { r -= 4; } else { x >>= 4; } if (x & 0x3 > 0) { r -= 2; } else { x >>= 2; } if (x & 0x1 > 0) r -= 1; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.4.0 <0.8.0; /// @title Contains 512-bit math functions /// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision /// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits library FullMath { /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 /// @param a The multiplicand /// @param b The multiplier /// @param denominator The divisor /// @return result The 256-bit result /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv function mulDiv(uint256 a, uint256 b, uint256 denominator) internal pure returns (uint256 result) { // 512-bit multiply [prod1 prod0] = a * b // Compute the product mod 2**256 and mod 2**256 - 1 // then 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(a, b, not(0)) prod0 := mul(a, b) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division if (prod1 == 0) { require(denominator > 0); assembly { result := div(prod0, denominator) } return result; } // 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] // Compute remainder using mulmod uint256 remainder; assembly { remainder := mulmod(a, b, denominator) } // Subtract 256 bit number from 512 bit number assembly { prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator // Compute largest power of two divisor of denominator. // Always >= 1. uint256 twos = -denominator & denominator; // Divide denominator by power of two assembly { denominator := div(denominator, twos) } // Divide [prod1 prod0] by the factors of two assembly { prod0 := div(prod0, twos) } // Shift in bits from prod1 into prod0. For this we need // to flip `twos` such that it is 2**256 / twos. // If twos is zero, then it becomes one assembly { twos := add(div(sub(0, twos), twos), 1) } 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 // correct for four bits. That is, denominator * inv = 1 mod 2**4 uint256 inv = (3 * denominator) ^ 2; // Now use 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. inv *= 2 - denominator * inv; // inverse mod 2**8 inv *= 2 - denominator * inv; // inverse mod 2**16 inv *= 2 - denominator * inv; // inverse mod 2**32 inv *= 2 - denominator * inv; // inverse mod 2**64 inv *= 2 - denominator * inv; // inverse mod 2**128 inv *= 2 - denominator * inv; // 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 precoditions 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 * inv; return result; } /// @notice Calculates ceil(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 /// @param a The multiplicand /// @param b The multiplier /// @param denominator The divisor /// @return result The 256-bit result function mulDivRoundingUp(uint256 a, uint256 b, uint256 denominator) internal pure returns (uint256 result) { result = mulDiv(a, b, denominator); if (mulmod(a, b, denominator) > 0) { require(result < type(uint256).max); result++; } } }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; library HexStrings { bytes16 internal constant ALPHABET = "0123456789abcdef"; /// @notice Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. /// @dev Credit to Open Zeppelin under MIT license https://github.com/OpenZeppelin/openzeppelin-contracts/blob/243adff49ce1700e0ecb99fe522fb16cff1d1ddc/contracts/utils/Strings.sol#L55 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] = ALPHABET[value & 0xf]; value >>= 4; } require(value == 0, "HLI"); // hex length insufficient return string(buffer); } function toHexStringNoPrefix(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length); for (uint256 i = buffer.length; i > 0; i--) { buffer[i - 1] = ALPHABET[value & 0xf]; value >>= 4; } return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = bytes1(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @title SignedSafeMath * @dev Signed math operations with safety checks that revert on error. */ library SignedSafeMath { int256 constant private _INT256_MIN = -2**255; /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } require(!(a == -1 && b == _INT256_MIN), "SignedSafeMath: multiplication overflow"); int256 c = a * b; require(c / a == b, "SignedSafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two signed integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(int256 a, int256 b) internal pure returns (int256) { require(b != 0, "SignedSafeMath: division by zero"); require(!(b == -1 && a == _INT256_MIN), "SignedSafeMath: division overflow"); int256 c = a / b; return c; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a), "SignedSafeMath: subtraction overflow"); return c; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a), "SignedSafeMath: addition overflow"); return c; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.5.0; library AddressStringUtil { // converts an address to the uppercase hex string, extracting only len bytes (up to 20, multiple of 2) function toAsciiString(address addr, uint256 len) internal pure returns (string memory) { require(len % 2 == 0 && len > 0 && len <= 40, 'AddressStringUtil: INVALID_LEN'); bytes memory s = new bytes(len); uint256 addrNum = uint256(addr); for (uint256 i = 0; i < len / 2; i++) { // shift right and truncate all but the least significant byte to extract the byte at position 19-i uint8 b = uint8(addrNum >> (8 * (19 - i))); // first hex character is the most significant 4 bits uint8 hi = b >> 4; // second hex character is the least significant 4 bits uint8 lo = b - (hi << 4); s[2 * i] = char(hi); s[2 * i + 1] = char(lo); } return string(s); } // hi and lo are only 4 bits and between 0 and 16 // this method converts those values to the unicode/ascii code point for the hex representation // uses upper case for the characters function char(uint8 b) private pure returns (bytes1 c) { if (b < 10) { return bytes1(b + 0x30); } else { return bytes1(b + 0x37); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; pragma abicoder v2; import "./IVotingEscrow.sol"; interface IVoter { function ve() external view returns (IVotingEscrow); function vote(uint256 _tokenId, address[] calldata _poolVote, uint256[] calldata _weights) external; function gauges(address _pool) external view returns (address); function gaugeToFees(address _gauge) external view returns (address); function gaugeToBribes(address _gauge) external view returns (address); function createGauge(address _poolFactory, address _pool) external returns (address); function distribute(address gauge) external; function factoryRegistry() external view returns (address); /// @dev Utility to distribute to gauges of pools in array. /// @param _gauges Array of gauges to distribute to. function distribute(address[] memory _gauges) external; function isAlive(address _gauge) external view returns (bool); function killGauge(address _gauge) external; function emergencyCouncil() external view returns (address); /// @notice Claim emissions from gauges. /// @param _gauges Array of gauges to collect emissions from. function claimRewards(address[] memory _gauges) external; /// @notice Claim fees for a given NFT. /// @dev Utility to help batch fee claims. /// @param _fees Array of FeesVotingReward contracts to collect from. /// @param _tokens Array of tokens that are used as fees. /// @param _tokenId Id of veNFT that you wish to claim fees for. function claimFees(address[] memory _fees, address[][] memory _tokens, uint256 _tokenId) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; interface IVotingEscrow { function team() external returns (address); /// @notice Deposit `_value` tokens for `msg.sender` and lock for `_lockDuration` /// @param _value Amount to deposit /// @param _lockDuration Number of seconds to lock tokens for (rounded down to nearest week) /// @return TokenId of created veNFT function createLock(uint256 _value, uint256 _lockDuration) external returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "viaIR": false, "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "isSystem": false, "forceEvmla": false }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"name":"WETH9","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint256","name":"chainId","type":"uint256"}],"name":"flipRatio","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeCurrencyLabel","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenRatioPriority","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract INonfungiblePositionManager","name":"positionManager","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000a59b351675f116b6c3316ddd02d05c0aa954add141b68908ce9c91bba0600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x00040000000000020000006003100270000008d60430019700030000004103550002000000010355000008d60030019d00000001002001900000000a0000c13d00000000010000192354001c0000040f000000a001000039000000400010043f000008d701000041000000800010043f0000000001000416000000000001004b0000001a0000c13d0000014000000443000008d80100004100000160001004430000002001000039000001000010044300000001010000390000012000100443000008d901000041000023550001042e0000000001000019000023560001043000250000000000020000000002000416000000000001004b0000002f0000613d000000a001000039000000400010043f000008d701000041000000800010043f000000000002004b000000360000c13d0000014000000443000008d80100004100000160001004430000002001000039000001000010044300000001010000390000012000100443000008d901000041000023550001042e0000008001000039000000400010043f000000000002004b000000360000c13d0000000002000031000000030020008c000000380000213d000000000100001900002356000104300000000201000367000000000301043b000000e003300270000008da0030009c000000680000a13d000008db0030009c000000900000613d000008dc0030009c000000af0000613d000008dd0030009c000000360000c13d000008e00020009c000000360000213d000000430020008c000000360000a13d0000000402100370000000000202043b000008e20020009c000000360000813d000008e1032001970000002401100370000000000201043b000008e301000041000000800010043f002200000002001d000000840020043f000008e4010000410000000000100443002300000003001d00000004003004430000000001000414000008d60010009c000008d601008041000000c001100210000008e5011001c700008002020000392354234f0000040f00000001002001900000065b0000613d000000000101043b000000000001004b000000360000613d00000000010004140000002302000029000000040020008c000000ee0000c13d0000000103000031000001130000013d000008de0030009c000000d50000613d000008df0030009c000000360000c13d000008e00020009c000000360000213d000000630020008c000000360000a13d0000000402100370000000000202043b002300000002001d000008e20020009c000000360000813d0000002401100370000000000101043b002200000001001d000008e10010009c000000360000213d000008ef0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000008d60010009c000008d601008041000000c001100210000008f0011001c700008005020000392354234f0000040f00000001002001900000065b0000613d0000002202000029000008e102200197000000000101043b000008e101100197000000000012004b000001780000c13d000000640100008a000001820000013d000008e00020009c000000360000213d000000430020008c000000360000a13d0000000401100370000000000101043b002300000001001d000008e20010009c000000360000813d000008ef0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000008d60010009c000008d601008041000000c001100210000008f0011001c700008005020000392354234f0000040f00000001002001900000065b0000613d0000002302000029000008e103200197000000000101043b000008e101100197000000000013004b000000e30000c13d000000640200008a000001ca0000013d000000c001000039000000400010043f0000000302000039000000800020043f0000090402000041000000a00020043f000000800200003900000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000000c80000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000000be0000413d000000c80000a13d000000000312001900000000000304350000001f0220003900000a52022001970000000001210019000000400200043d0000000001210049000008d60010009c000008d6010080410000006001100210000008d60020009c000008d6020080410000004002200210000000000121019f000023550001042e0000000001000412002500000001001d002400000000003d000080050100003900000044030000390000000004000415000000250440008a0000000504400210000008ef02000041235423360000040f000008e101100197000000800010043f00000a5101000041000023550001042e0000012c02000039000008f10030009c000001ca0000613d000008f20030009c000001ca0000613d0000012c0200008a000008f30030009c000000000200c019000008f40030009c000000c802006039000001ca0000013d000008d60010009c000008d601008041000000c001100210000008e6011001c72354234f0000040f00000080090000390000006003100270000008d603300197000001800030008c000001800400003900000000040340190000001f0540018f000001e0064001900000008004600039000001020000613d000000000701034f000000007807043c0000000009890436000000000049004b000000fe0000c13d000000000005004b0000010f0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000001990000613d0000001f0130003900000a5202100197000000400100043d0000000002120019002100000002001d000000400020043f000008e00030009c000000360000213d0000017f0030008c000000360000a13d0000000023010434000008e80030009c000000360000213d0000000002020433000008e20020009c000000360000813d00000040021000390000000002020433002000000002001d000008e10020009c000000360000213d00000060021000390000000002020433001f00000002001d000008e10020009c000000360000213d00000080021000390000000003020433000008e900300198000008ea040000410000000004006019000008eb02300197001d00000002001d001c00000004001d000000000224019f001e00000003001d000000000023004b000000360000c13d000000a0021000390000000003020433001908e90030019c000008ea040000410000000004006019000008eb02300197001a00000002001d001800000004001d000000000224019f001b00000003001d000000000023004b000000360000c13d000000c0021000390000000003020433001508e90030019c000008ea040000410000000004006019000008eb02300197001600000002001d001400000004001d000000000224019f001700000003001d000000000023004b000000360000c13d000000e0021000390000000002020433000008ec0020009c000000360000213d00000140021000390000000002020433000008ec0020009c000000360000213d00000160011000390000000001010433000008ec0010009c000000360000213d000008ed0100004100000021020000290000000000120435000000400100043d001300000001001d000008e4010000410000000000100443000000230100002900000004001004430000000001000414000008d60010009c000008d601008041000000c001100210000008e5011001c700008002020000392354234f0000040f00000001002001900000065b0000613d000000000101043b000000000001004b000000360000613d00000000010004140000002302000029000000040020008c000001ce0000c13d0000000103000031000001fe0000013d0000012c01000039000008f10020009c000001820000613d000008f20020009c000001820000613d0000012c0100008a000008f30020009c000000000100c019000008f40020009c000000c801006039002200000001001d000008ef0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000008d60010009c000008d601008041000000c001100210000008f0011001c700008005020000392354234f0000040f00000001002001900000065b0000613d0000002302000029000008e102200197000000000101043b000008e101100197000000000012004b000001b10000c13d000000640100008a000001bb0000013d0000001f0430018f000008e702300198000001a20000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b0000019e0000c13d000000000004004b000001af0000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000002356000104300000012c01000039000008f10020009c000001bb0000613d000008f20020009c000001bb0000613d0000012c0100008a000008f30020009c000000000100c019000008f40020009c000000c8010060390000002203000029000000000031004b0000000002000019000008f602002041000008f603300197000008f601100197000000000431013f000000000031004b0000000001000019000008f601004041000008f60040009c000000000102c019000000000001004b0000000002000039000000010200c039000000400100043d00000000002104350000002002000039000000ca0000013d000000130300002900000021023000690000000402200039000008d60030009c000008d6030080410000004003300210000008d60020009c000008d6020080410000006002200210000000000232019f000008d60010009c000008d601008041000000c001100210000000000121019f00000023020000292354234f0000040f00000013090000290000006003100270000008d603300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000000004690019000001ed0000613d000000000701034f000000007807043c0000000009890436000000000049004b000001e90000c13d000000000005004b000001fa0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000002410000613d0000001f0130003900000a5201100197000000400200043d0000000001210019000000400010043f000008e00030009c000000360000213d0000001f0030008c000000360000a13d0000000002020433000008e20020009c000000360000813d0000002003000029000008e1043001970000001f03000029000008e105300197000008e1062001970000006002100039000000400020043f00000040021000390000001e030000290000000000320435000000200210003900000000005204350000000000410435000000400300043d0000002401300039001300000005001d0000000000510435000008ee0100004100000000001304350000000401300039001200000004001d00000000004104350000001c01000029000008e900100198000008ea0100004100000000010060190000001d021001af001d00000003001d0000004401300039001c00000002001d0000000000210435000008e401000041000000400200043d002100000002001d0000000000100443002300000006001d00000004006004430000000001000414000008d60010009c000008d601008041000000c001100210000008e5011001c700008002020000392354234f0000040f00000001002001900000065b0000613d000000000101043b000000000001004b000000360000613d00000000010004140000002302000029000000040020008c000002590000c13d0000000103000031000002890000013d0000001f0430018f000008e7023001980000024a0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000002460000c13d000000000004004b000002570000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000006001300210000023560001043000000021030000290000001d023000690000006402200039000008d60030009c000008d6030080410000004003300210000008d60020009c000008d6020080410000006002200210000000000232019f000008d60010009c000008d601008041000000c001100210000000000121019f00000023020000292354234f0000040f00000021090000290000006003100270000008d603300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000000004690019000002780000613d000000000701034f000000007807043c0000000009890436000000000049004b000002740000c13d000000000005004b000002850000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000002be0000613d000000200030008c000000360000413d000000400100043d0000000023010434002100000003001d000001a003100039000000400030043f0000008003100039000000600400003900000000004304350000006003100039001d00000004001d00000000004304350000018003100039000000000003043500000160031000390000000000030435000001400310003900000000000304350000012003100039000000000003043500000100031000390000000000030435000000e0031000390000000000030435000000c0031000390000000000030435000000a00310003900000000000304350000004003100039000000000003043500000000000204350000000000010435000008ef0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000008d60010009c000008d601008041000000c001100210000008f0011001c700008005020000392354234f0000040f00000001002001900000065b0000613d000000000101043b000008e101100197000000130010006b000002d60000c13d000000640100008a000002e30000013d0000001f0430018f000008e702300198000002c70000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000002c30000c13d000000000004004b000002d40000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000002356000104300011012c0000003d0000001301000029000008f10010009c000002e40000613d0000001301000029000008f20010009c000002e40000613d0000012c0100008a0000001302000029000008f30020009c000000000100c019000008f40020009c000000c801006039001100000001001d000008ef0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000008d60010009c000008d601008041000000c001100210000008f0011001c700008005020000392354234f0000040f00000001002001900000065b0000613d000000000101043b000008e101100197000000120010006b000002f80000c13d000000640100008a000003050000013d0013012c0000003d0000001201000029000008f10010009c000003060000613d0000001201000029000008f20010009c000003060000613d0000012c0100008a0000001202000029000008f30020009c000000000100c019000008f40020009c000000c801006039001300000001001d000000400200043d000008f501000041001000000002001d0000000000120435000000400100043d002300000001001d000008e40100004100000000001004430000002101000029000008e101100197001200000001001d00000004001004430000000001000414000008d60010009c000008d601008041000000c001100210000008e5011001c700008002020000392354234f0000040f00000011040000290000001305000029000000000045004b0000000003000019000008f603002041000008f604400197000008f606500197000000000546013f000f00000004001d000d00000006001d000000000046004b0000000004000019000008f604004041000e00000005001d000008f60050009c000000000403c019000000000004004b0000001f050000290000002004000029000000000405c019002100000004001d0000000003050019000000200300c029002000000003001d00000001002001900000065b0000613d000000000101043b000000000001004b000000360000613d00000000010004140000001202000029000000040020008c0000033c0000c13d00000001030000310000036d0000013d000000230300002900000010023000690000000402200039000008d60030009c000008d6030080410000004003300210000008d60020009c000008d6020080410000006002200210000000000232019f000008d60010009c000008d601008041000000c001100210000000000121019f00000012020000292354234f0000040f0000006003100270000008d603300197000000c00030008c000000c00400003900000000040340190000001f0540018f000000e00640019000000023046000290000035c0000613d000000000701034f000000007807043c00000023090000290000000009890436002300000009001d000000000049004b000003560000c13d000000000005004b000003690000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000003c00000613d0000001f0130003900000a5202100197000000400100043d0000000002120019001f00000002001d000000400020043f000008e00030009c000000360000213d000000bf0030008c000000360000a13d0000000023010434000008e20030009c000000360000813d0000000004020433000008e900400198000008ea030000410000000003006019000008eb02400197001000000002001d000c00000003001d000000000223019f000b00000004001d000000000024004b000000360000c13d000000400210003900000000020204330000ffff0020008c000000360000213d000000600210003900000000020204330000ffff0020008c000000360000213d000000800210003900000000020204330000ffff0020008c000000360000213d000000a0011000390000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000360000c13d0000001f02000029000001a001200039000000400010043f0000004001200039000a00000001001d000000210300002900000000003104350000002001200039000900000001001d0000002003000029000000000031043500000022010000290000000000120435000008ef0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000008d60010009c000008d601008041000000c001100210000008f0011001c700008005020000392354234f0000040f00000001002001900000065b0000613d000000400200043d0000002003200039000000000101043b000008e101100197000000200010006b000003d80000c13d0000004001200039000000400010043f00000003010000390000000000120435000009040100004100000000001304350000049c0000013d0000001f0430018f000008e702300198000003c90000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000003c50000c13d000000000004004b000003d60000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000012043500000060013002100000235600010430000000040100003900000000001204350000002401200039000000400010043f0000000001030433000008f701100197000008f8061001c70000000000630435000000400100043d0000000002020433000000200020008c00000000050200190000000004010019000003ee0000413d0000000004010019000000000502001900000000360304340000000004640436000000200550008a000000200050008c000003e80000813d000000000603043300000003035002100000010003300089000000010330020f000000000005004b00000000030060190000000005300089000000000556016f000000010330008a0000000006040433000000000336016f000000000353019f0000000000340435000000400400043d00000000030004140000002005000029000000040050008c000004020000c13d00000001020000390000000103000031000004160000013d00000000011200190000000001410049000008d60010009c000008d6010080410000006001100210000008d60040009c000008d6040080410000004002400210000000000121019f000008d60030009c000008d603008041000000c002300210000000000121019f00000020020000292354234f0000040f000000010220018f00030000000103550000006001100270000108d60010019d000008d603100197000000000003004b0000041a0000c13d0000008001000039000004390000013d0000003f0130003900000a5201100197000000400500043d0000000001150019000000400010043f001d00000005001d000000000135043600000a52043001980000001f0530018f000000000341001900000003060003670000042c0000613d000000000706034f0000000008010019000000007907043c0000000008980436000000000038004b000004280000c13d000000000005004b000004390000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000002004b000004620000613d0000001d020000290000000002020433000000000002004b000004620000613d000000200020008c000004600000c13d0000000002010433000000400100043d000000200300003900000000053104360000004003100039000000400030043f00000000030000310000000204300367000000000304043b000000000035043500000000060000190000000003000019000004580000013d00000000083500190000000009080433000008fa09900197000008fb07700197000000000779019f000000000078043500000001033000390000001e0060008c0000000106600039000005440000213d000000030760021000000000077201cf000008f90070009c000004550000413d0000000008010433000000000083004b0000044e0000413d000005410000013d000000410020008c000005780000813d000000400100043d0000002002100039000000400020043f0000000000010435000000400200043d000000060100003900000000011204360000004003200039000000400030043f0000000003010433000008ff03300197000000000400003100000002044003670000000004400370000000000404043b0000090004400197000000000334019f00000000003104350000002103200039000000000400001900000001054002100000000006020433000000000065004b000005410000813d00000003064002100000009806600089000000200660024f00000004076002700000000f0770018f000000f80870021000000901098001c7000009020880009a000000090070008c000000000809a01900000000075100190000000009070433000008fa09900197000000000889019f000000000087043500000001075001bf0000000008020433000000000087004b000005410000813d0000000e0760018f000000f806600210000009030660019700000901086001c7000009020660009a000000090070008c000000000608a01900000000055300190000000007050433000008fa07700197000000000667019f0000000000650435000000010040008c0000000104400039000004760000a13d0000001f010000290000006001100039002200000001001d0000000000210435000008ef0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000008d60010009c000008d601008041000000c001100210000008f0011001c700008005020000392354234f0000040f00000001002001900000065b0000613d000000400200043d0000002003200039000000000101043b000008e101100197000000210010006b000004bb0000c13d0000004001200039000000400010043f0000000301000039000000000012043500000904010000410000000000130435000005de0000013d000000040100003900000000001204350000002401200039000000400010043f0000000001030433000008f701100197000008f8061001c70000000000630435000000400100043d0000000002020433000000200020008c00000000050200190000000004010019000004d10000413d0000000004010019000000000502001900000000360304340000000004640436000000200550008a000000200050008c000004cb0000813d000000000603043300000003035002100000010003300089000000010330020f000000000005004b00000000030060190000000005300089000000000556016f000000010330008a0000000006040433000000000336016f000000000353019f0000000000340435000000400400043d00000000030004140000002105000029000000040050008c000004e50000c13d00000001020000390000000104000031000004f90000013d00000000011200190000000001410049000008d60010009c000008d6010080410000006001100210000008d60040009c000008d6040080410000004002400210000000000121019f000008d60030009c000008d603008041000000c002300210000000000121019f00000021020000292354234f0000040f000000010220018f00030000000103550000006001100270000108d60010019d000008d604100197000000000004004b000004fe0000c13d000000600300003900000080010000390000051c0000013d0000003f0140003900000a5201100197000000400300043d0000000001130019000000400010043f000000000143043600000a52054001980000001f0640018f000000000451001900000003070003670000050f0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b0000050b0000c13d000000000006004b0000051c0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000005a40000613d0000000002030433000000000002004b000005a40000613d000000200020008c000005a20000c13d0000000002010433000000400100043d000000200300003900000000053104360000004003100039000000400030043f00000000030000310000000204300367000000000304043b0000000000350435000000000600001900000000030000190000053a0000013d00000000083500190000000009080433000008fa09900197000008fb07700197000000000779019f000000000078043500000001033000390000001e0060008c00000001066000390000065c0000213d000000030760021000000000077201cf000008f90070009c000005370000413d0000000008010433000000000083004b000005300000413d000000010100008a00000000000104350000000000000431000008fc0030009c000000360000813d0000001f0230003900000a5205200197000000400200043d00000000063204360000000005560019000000400050043f000000000003004b0000059e0000613d00000a52073001980000001f0830018f0000000005760019000005570000613d000000000904034f000000009a09043c0000000006a60436000000000056004b000005530000c13d000000000008004b000005640000613d000000000474034f0000000306800210000000000705043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000045043500000000040000190000000005010433000000000054004b000005410000813d0000000005020433000000000054004b000005410000813d000000200540003900000000061500190000000006060433000008fb0660019700000000052500190000000007050433000008fa07700197000000000667019f00000000006504350000000104400039000000000034004b000005650000413d0000059e0000013d0000000003010433000008fd0030009c000000360000813d000000000212001900000000041300190000002003400039000000000023004b000000360000213d0000000001040433000008fe0010009c000000360000213d0000000005310019000000000052004b000000360000413d000000400200043d00000000011204360000000004040433000000000004004b0000059d0000613d000000000500001900000000061500190000000007350019000000000707043300000000007604350000002005500039000000000045004b0000058c0000413d00000000011400190000001f034001900000059d0000613d0000000004310049000000030130021000000100031000890000000015040434000000000535022f00000000033501cf0000000000340435000000400010043f0000000001020433000000000001004b000004660000613d0000049c0000013d000000410020008c000006900000813d000000400100043d0000002002100039000000400020043f0000000000010435000000400200043d000000060100003900000000011204360000004003200039000000400030043f0000000003010433000008ff03300197000000000400003100000002044003670000000004400370000000000404043b0000090004400197000000000334019f00000000003104350000002103200039000000000400001900000001054002100000000006020433000000000065004b000005410000813d00000003064002100000009806600089000000210660024f00000004076002700000000f0770018f000000f80870021000000901098001c7000009020880009a000000090070008c000000000809a01900000000075100190000000009070433000008fa09900197000000000889019f000000000087043500000001075001bf0000000008020433000000000087004b000005410000813d0000000e0760018f000000f806600210000009030660019700000901086001c7000009020660009a000000090070008c000000000608a01900000000055300190000000007050433000008fa07700197000000000667019f0000000000650435000000010040008c0000000104400039000005b80000a13d0000001f010000290000008001100039000800000001001d00000000002104350000090501000041000000400200043d001d00000002001d0000000000120435000000400100043d002300000001001d000008e4010000410000000000100443000000200100002900000004001004430000000001000414000008d60010009c000008d601008041000000c001100210000008e5011001c700008002020000392354234f0000040f00000001002001900000065b0000613d000000000101043b000000000001004b000000360000613d00000000010004140000002002000029000000040020008c000005fe0000c13d00000001030000310000062f0000013d00000023030000290000001d023000690000000402200039000008d60030009c000008d6030080410000004003300210000008d60020009c000008d6020080410000006002200210000000000232019f000008d60010009c000008d601008041000000c001100210000000000121019f00000020020000292354234f0000040f0000006003100270000008d603300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000023046000290000061e0000613d000000000701034f000000007807043c00000023090000290000000009890436002300000009001d000000000049004b000006180000c13d000000000005004b0000062b0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000006ba0000613d0000001f0130003900000a5202100197000000400100043d0000000002120019000000400020043f000008e00030009c000000360000213d0000001f0030008c000000360000a13d0000000001010433000001000010008c000000360000813d0000001f02000029000000a002200039000700000002001d00000000001204350000090501000041000000400200043d002000000002001d0000000000120435000000400100043d002300000001001d000008e4010000410000000000100443000000210100002900000004001004430000000001000414000008d60010009c000008d601008041000000c001100210000008e5011001c700008002020000392354234f0000040f00000001002001900000065b0000613d000000000101043b000000000001004b000000360000613d00000000010004140000002102000029000000040020008c000006d20000c13d0000000103000031000007030000013d000000000001042f000008fc0030009c000000360000813d0000001f0230003900000a5205200197000000400200043d00000000063204360000000005560019000000400050043f000000000003004b000006b60000613d00000a52073001980000001f0830018f00000000057600190000066f0000613d000000000904034f000000009a09043c0000000006a60436000000000056004b0000066b0000c13d000000000008004b0000067c0000613d000000000474034f0000000306800210000000000705043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000045043500000000040000190000000005010433000000000054004b000005410000813d0000000005020433000000000054004b000005410000813d000000200540003900000000061500190000000006060433000008fb0660019700000000052500190000000007050433000008fa07700197000000000667019f00000000006504350000000104400039000000000034004b0000067d0000413d000006b60000013d0000000003010433000008fd0030009c000000360000813d000000000212001900000000041300190000002003400039000000000023004b000000360000213d0000000001040433000008fe0010009c000000360000213d0000000005310019000000000052004b000000360000413d000000400200043d00000000011204360000000004040433000000000004004b000006b50000613d000000000500001900000000061500190000000007350019000000000707043300000000007604350000002005500039000000000045004b000006a40000413d00000000011400190000001f03400190000006b50000613d0000000004310049000000030130021000000100031000890000000015040434000000000535022f00000000033501cf0000000000340435000000400010043f0000000001020433000000000001004b000005a80000613d000005de0000013d0000001f0430018f000008e702300198000006c30000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000006bf0000c13d000000000004004b000006d00000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000012043500000060013002100000235600010430000000230300002900000020023000690000000402200039000008d60030009c000008d6030080410000004003300210000008d60020009c000008d6020080410000006002200210000000000232019f000008d60010009c000008d601008041000000c001100210000000000121019f00000021020000292354234f0000040f0000006003100270000008d603300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002304600029000006f20000613d000000000701034f000000007807043c00000023090000290000000009890436002300000009001d000000000049004b000006ec0000c13d000000000005004b000006ff0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000009830000613d0000001f0130003900000a5202100197000000400100043d0000000002120019000000400020043f000008e00030009c000000360000213d0000001f0030008c000000360000a13d0000000001010433000001000010008c000000360000813d0000001f03000029000000c002300039000600000002001d000000000012043500000140013000390000000b0200002900000000002104350000001302000029000000110020006c0000000001000019000008f6010020410000000d040000290000000f0040006c0000000002000019000008f6020040410000000e04000029000008f60040009c000000000201c0190000018001300039000500000001001d000000120400002900000000004104350000016001300039001300000001001d0000001e0400002900000000004104350000012001300039001100000001001d000000170400002900000000004104350000010001300039000f00000001001d0000001b040000290000000000410435000000000002004b0000000001000039000000010100c039000000e002300039000e00000002001d0000000000120435000000000b03043300000008010000290000000001010433000400000001001d00000022010000290000000001010433000300000001001d0000000a010000290000000004010433000000090100002900000000070104330000000601000039000000400200043d0000014005200039001200000001001d00000000001504350000018001200039000000400010043f002300000002001d00000160022000390000000001020433000008ff06100197000000000100003100000002031003670000000001300370000000000101043b0000090001100197000000000661019f0000000000620435000008e1027001970000000009050433000000000009004b0000076c0000613d00000023060000290000015f066000390000004408200270000000010a90008a000000000c0504330000000000ca004b000005410000813d0000000009960019000000000c090433000008fa0cc00197000000030d800210000000780dd0018f000009060dd0021f000009070dd00197000000000cdc019f0000000000c90435000000040880027000000000000a004b00000000090a00190000075b0000c13d00000023060000290000000005560436001d00000005001d000000400600043d000000060500003900000000055604360000004008600039000000400080043f0000000008050433000008ff08800197000000000881019f0000000000850435000008e105400197000000000a06043300000000000a004b0000078f0000613d0000001f086000390000008809500270000000010da0008a000000000c0604330000000000cd004b000005410000813d000000000aa80019000000000c0a0433000008fa0cc00197000000030e900210000000780ee0018f000009060ee0021f000009070ee00197000000000cec019f0000000000ca0435000000040990027000000000000d004b000000000a0d00190000077e0000c13d0000001d080000290000000000680435000000400600043d000000060800003900000000088604360000004009600039000000400090043f0000000009080433000008ff09900197000000000991019f00000000009804350000000009060433000000000009004b000007af0000613d0000001f08600039000000010a90008a000000000c0604330000000000ca004b000005410000813d0000000009980019000000000c090433000008fa0cc00197000000030d200210000000780dd0018f000009060dd0021f000009070dd00197000000000cdc019f0000000000c90435000000040220027000000000000a004b00000000090a00190000079e0000c13d00000023020000290000004002200039000100000002001d0000000000620435000000400200043d000000060600003900000000066204360000004008200039000000400080043f0000000008060433000008ff08800197000000000181019f00000000001604350000000006020433000000000006004b000007d20000613d0000001f012000390000002205500270000000010860008a0000000009020433000000000098004b000005410000813d00000000066100190000000009060433000008fa09900197000000030a500210000000780aa0018f000009060aa0021f000009070aa001970000000009a9019f00000000009604350000000405500270000000000008004b0000000006080019000007c10000c13d00000023010000290000006001100039000200000001001d00000000002104350000001001700270000000ff0110018f00000000011b00a9000000ff1010011a00000102011000c90000fffe0110018f000000ff0110011a00000010021000390000000001000019000000000502001900000000080100190000000a0050008c0000000a0550011a0000000101100039000007e00000813d000008fc0010009c000000360000813d00000a5205800197000000400600043d000000000916043600000000055600190000004005500039000000400050043f000000000001004b000008050000613d00000a520a1001980000001f0d10018f0000000005a90019000007f80000613d000000000c03034f00000000ce0c043c0000000009e90436000000000059004b000007f40000c13d00000000000d004b000008050000613d0000000009a3034f000000030ad00210000000000c050433000000000cac01cf000000000cac022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009c9019f00000000009504350000002305000029000b00800050003d0000001f096000390000000005060433000000000058004b000005410000813d000000000a08001900000000011900190000000a0020008c0000000a8220011a000000f808800210000000000c010433000008fa0cc001970000000008c8019f00000901088001c700000000008104350000000108a0008a00000000010a0019000008080000813d0000000b0100002900000000006104350000001001400270000000ff0110018f00000000011b00a9000000ff1010011a00000180011000c9000000ff0110011a00000064021000390000000001000019000000000602001900000000090100190000000a0060008c0000000a0660011a0000000101100039000008230000813d000008fc0010009c000000360000813d00000a5206900197000000400800043d000000000a18043600000000066800190000004006600039000000400060043f000000000001004b000008480000613d00000a520d1001980000001f0e10018f0000000006da00190000083b0000613d000000000c03034f00000000c50c043c000000000a5a043600000000006a004b000008370000c13d00000000000e004b000008480000613d0000000005d3034f000000030ae00210000000000c060433000000000cac01cf000000000cac022f000000000505043b000001000aa000890000000005a5022f0000000005a501cf0000000005c5019f00000000005604350000002305000029001e00a00050003d0000001f0a8000390000000005080433000000000059004b000005410000813d000000000609001900000000011a00190000000a0020008c0000000a9220011a000000f809900210000000000c010433000008fa0cc001970000000009c9019f00000901099001c70000000000910435000000010960008a00000000010600190000084b0000813d0000001e0100002900000000008104350000002001700270000000ff0110018f00000000011b00a9000000ff1010011a00000102011000c90000fffe0110018f000000ff0110011a000000100810003900000000010000190000000002080019000000000a0100190000000a0020008c0000000a0220011a0000000101100039000008670000813d000008fc0010009c000000360000813d00000a5202a00197000000400900043d000000000d19043600000000022900190000004002200039000000400020043f000000000001004b0000088c0000613d00000a52061001980000001f0e10018f00000000026d00190000087f0000613d000000000c03034f00000000c50c043c000000000d5d043600000000002d004b0000087b0000c13d00000000000e004b0000088c0000613d000000000563034f0000000306e00210000000000c020433000000000c6c01cf000000000c6c022f000000000505043b0000010006600089000000000565022f00000000056501cf0000000005c5019f00000000005204350000002302000029002000c00020003d0000001f02900039000000000509043300000000005a004b000005410000813d00000000060a001900000000011200190000000a0080008c0000000aa880011a000000f80aa00210000000000c010433000008fa0cc00197000000000aca019f000009010aa001c70000000000a10435000000010a60008a00000000010600190000088f0000813d000000200100002900000000009104350000002001400270000000ff0110018f00000000011b00a9000000ff1010011a00000180011000c9000000ff0110011a000000640810003900000000010000190000000002080019000000000f0100190000000a0020008c0000000a0220011a0000000101100039000008aa0000813d000008fc0010009c000000360000813d00000a5202f00197000000400a00043d00000000091a043600000000022a00190000004002200039000000400020043f000000000001004b000008cf0000613d00000a52061001980000001f0d10018f0000000002690019000008c20000613d000000000c03034f00000000c50c043c0000000009590436000000000029004b000008be0000c13d00000000000d004b000008cf0000613d000000000563034f0000000306d00210000000000902043300000000096901cf000000000969022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000595019f00000000005204350000002302000029000000e0092000390000001f02a0003900000000050a043300000000005f004b000005410000813d00000000060f001900000000011200190000000a0080008c0000000ac880011a000000f80cc00210000000000d010433000008fa0dd00197000000000cdc019f000009010cc001c70000000000c10435000000010ff0008a0000000001060019000008d20000813d0000000000a904350000003001700270000000ff0110018f00000000011b00a9000000ff1010011a00000102011000c90000fffe0110018f000000ff0110011a000000100710003900000000010000190000000002070019000000000f0100190000000a0020008c0000000a0220011a0000000101100039000008ed0000813d000008fc0010009c000000360000813d00000a5202f00197000000400a00043d00000000081a043600000000022a00190000004002200039000000400020043f000000000001004b000009120000613d00000a52061001980000001f0d10018f0000000002680019000009050000613d000000000c03034f00000000c50c043c0000000008580436000000000028004b000009010000c13d00000000000d004b000009120000613d000000000563034f0000000306d00210000000000802043300000000086801cf000000000868022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000585019f0000000000520435000000230200002900000100082000390000001f02a0003900000000050a043300000000005f004b000005410000813d00000000060f001900000000011200190000000a0070008c0000000ac770011a000000f80cc00210000000000d010433000008fa0dd00197000000000cdc019f000009010cc001c70000000000c10435000000010ff0008a0000000001060019000009150000813d0000000000a804350000003001400270000000ff0110018f00000000011b00a9000000ff1010011a00000180011000c9000000ff0110011a000000640410003900000000010000190000000002040019000000000a0100190000000a0020008c0000000a0220011a00000001011000390000092f0000813d000008fc0010009c000000360000813d00000a5202a00197000000400700043d000000000d17043600000000022700190000004002200039000000400020043f000000000001004b000009540000613d00000a52061001980000001f0e10018f00000000026d0019000009470000613d000000000c03034f00000000c50c043c000000000d5d043600000000002d004b000009430000c13d00000000000e004b000009540000613d000000000563034f0000000306e00210000000000c020433000000000c6c01cf000000000c6c022f000000000505043b0000010006600089000000000565022f00000000056501cf0000000005c5019f00000000005204350000002302000029000d01200020003d0000001f02700039000000000507043300000000005a004b000005410000813d00000000060a001900000000011200190000000a0040008c0000000aa440011a000000f80aa00210000000000c010433000008fa0cc00197000000000aca019f000009010aa001c70000000000a10435000000010a60008a0000000001060019000009570000813d0000000d01000029000000000071043500000023010000290000000002010433000000400100043d000000a0041000390000090806000041000000000064043500000080041000390000090906000041000000000064043500000060041000390000090a06000041000000000064043500000040041000390000090b06000041000000000064043500000020041000390000090c0600004100000000006404350000002004200039000000a1011000390000000002020433000000200020008c0000099b0000813d000000000a0200190000000007010019000009a20000013d0000001f0430018f000008e7023001980000098c0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000009880000c13d000000000004004b000009990000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000002356000104300000000007010019000000000a02001900000000450404340000000007570436000000200aa0008a0000002000a0008c0000099d0000813d0000000306a002100000010006600089000000010660020f00000000000a004b00000000060060190000000004040433000000000a6000890000000004a4016f000000010660008a000000000a07043300000000066a016f000000000446019f000000000047043500000000011200190000090d020000410000000000210435000000400d00043d0000000002d10049000000170220008a00000000002d043500000029041000390000000902100039000000400020043f00000000060d0433000000000006004b000009c00000c13d000000400040043f0000000001000019002100000002001d00000a2e0000013d0000006906100039000000400060043f000000400500003900000000005204350000090e02000041000000000024043500000049021000390000090f04000041000000000042043500000000020d04330000000202200039000000030220011a00000002022002100000002007200039000008fc0070009c000000360000813d0000003f0420003900000a5206400197000000400400043d002100000004001d000000200f40003900000000066f0019000000400060043f000000000007004b000009f00000613d00000a52067001980000001f0e70018f00000000076f0019000009e30000613d000000000c03034f000000000a0f001900000000c50c043c000000000a5a043600000000007a004b000009df0000c13d00000000000e004b000009f00000613d000000000563034f0000000306e00210000000000a070433000000000a6a01cf000000000a6a022f000000000505043b0000010006600089000000000565022f00000000056501cf0000000005a5019f00000000005704350000002104000029000000000024043500000000060d04330000000002d6001900000000002d004b00000a240000813d0000000a0110003900000000070d00190000000307700039000000000407043300000012054002700000003f0550018f00000000051500190000000005050433000000f80550021000000000060f0433000008fa06600197000000000556019f00000000005f04350000000c054002700000003f0550018f00000000051500190000000005050433000000f8055002100000000106f00039000000000a060433000008fa0aa0019700000000055a019f000000000056043500000006054002700000003f0550018f00000000051500190000000005050433000000f8055002100000000206f00039000000000a060433000008fa0aa0019700000000055a019f00000000005604350000003f0440018f00000000041400190000000004040433000000f8044002100000000305f000390000000006050433000008fa06600197000000000446019f0000000000450435000000040ff00039000000000027004b000009f80000413d00000000060d0433000000031060011a000000010010008c00000a2c0000613d000000020010008c00000a2f0000c13d00000910010000410000000102f0008a00000a2e0000013d00000911010000410000000202f0008a00000000001204350000001d01000029000000000701043300000000010904330000000b020000290000000005020433000000400200043d00000080062000390000091209000041000000000096043500000060062000390000091309000041000000000096043500000040062000390000090b09000041000000000096043500000020062000390000090c090000410000000000960435000000830220003900000020095000390000000005050433000000200050008c00000a490000813d000000000d050019000000000a02001900000a500000013d000000000a020019000000000d0500190000000094090434000000000a4a0436000000200dd0008a0000002000d0008c00000a4b0000813d0000000306d002100000010006600089000000010660020f00000000000d004b00000000060060190000000009090433000000000c6000890000000009c9016f000000010660008a000000000c0a043300000000066c016f000000000696019f00000000006a0435000000000225001900000914050000410000000000520435000000200510003900000006022000390000000001010433000000200010008c00000a680000813d000000000a010019000000000902001900000a6f0000013d0000000009020019000000000a01001900000000540504340000000009490436000000200aa0008a0000002000a0008c00000a6a0000813d0000000306a002100000010006600089000000010660020f00000000000a004b00000000060060190000000005050433000000000a6000890000000005a5016f000000010660008a000000000a09043300000000066a016f000000000556019f0000000000590435000000000121001900000915020000410000000000210435000000200570003900000013011000390000000002070433000000200020008c00000a870000813d0000000009020019000000000701001900000a8e0000013d0000000007010019000000000902001900000000540504340000000007470436000000200990008a000000200090008c00000a890000813d00000003069002100000010006600089000000010660020f000000000009004b000000000600601900000000050504330000000009600089000000000595016f000000010660008a0000000009070433000000000669016f000000000556019f000000000057043500000000011200190000090d020000410000000000210435000000400500043d0000000002510049000000170220008a000000000025043500000029061000390000000902100039000000400020043f0000000007050433000000000007004b00000aac0000c13d000000400060043f0000000001000019000000000702001900000b180000013d0000006907100039000000400070043f000000400400003900000000004204350000090e02000041000000000026043500000049021000390000090f06000041000000000062043500000000020504330000000202200039000000030220011a0000000202200210000000200a200039000008fc00a0009c000000360000813d0000003f0620003900000a5206600197000000400700043d00000020097000390000000006690019000000400060043f00000000000a004b00000adb0000613d00000a5206a001980000001f0da0018f000000000a69001900000ace0000613d000000000c03034f000000000e09001900000000cf0c043c000000000efe04360000000000ae004b00000aca0000c13d00000000000d004b00000adb0000613d000000000663034f000000030cd00210000000000d0a0433000000000dcd01cf000000000dcd022f000000000606043b000001000cc000890000000006c6022f0000000006c601cf0000000006d6019f00000000006a0435000000000027043500000000060504330000000002560019000000000025004b00000b0e0000813d0000000a01100039000000000a050019000000030aa0003900000000040a043300000012064002700000003f0660018f00000000061600190000000006060433000000f806600210000000000c090433000008fa0cc0019700000000066c019f00000000006904350000000c064002700000003f0660018f00000000061600190000000006060433000000f806600210000000010c900039000000000d0c0433000008fa0dd0019700000000066d019f00000000006c043500000006064002700000003f0660018f00000000061600190000000006060433000000f806600210000000020c900039000000000d0c0433000008fa0dd0019700000000066d019f00000000006c04350000003f0440018f00000000041400190000000004040433000000f8044002100000000306900039000000000c060433000008fa0cc0019700000000044c019f0000000000460435000000040990003900000000002a004b00000ae20000413d0000000006050433000000031060011a000000010010008c00000b160000613d000000020010008c00000b190000c13d0000091001000041000000010290008a00000b180000013d0000091101000041000000020290008a00000000001204350000000101000029000000000501043300000000010804330000001e020000290000000009020433000000400d00043d0000008002d00039000009120600004100000000006204350000006002d00039000009130600004100000000006204350000004002d000390000090b0600004100000000006204350000002002d000390000090c0600004100000000006204350000008306d0003900000020029000390000000008090433000000200a80008c00000b330000813d000000000a080019000000000906001900000b3e0000013d000000000202043300000000002604350000004002900039000000a309d000390000002000a0008c00000b3e0000413d00000000240204340000000009490436000000200aa0008a0000002000a0008c00000b390000813d000000030ca00210000001000cc00089000000010cc0020f00000000000a004b000000000c0060190000000002020433000000000ac000890000000002a2016f000000010ac0008a000000000c090433000000000aca016f00000000022a019f0000000000290435000000000268001900000914060000410000000000620435000000200610003900000006022000390000000001010433000000200010008c00000b560000813d0000000009010019000000000802001900000b5d0000013d0000000008020019000000000901001900000000640604340000000008480436000000200990008a000000200090008c00000b580000813d000000030a900210000001000aa00089000000010aa0020f000000000009004b000000000a00601900000000060604330000000009a00089000000000696016f0000000109a0008a000000000a08043300000000099a016f000000000669019f0000000000680435000000000121001900000915020000410000000000210435000000200650003900000013011000390000000002050433000000200020008c00000b750000813d0000000008020019000000000501001900000b7c0000013d0000000005010019000000000802001900000000640604340000000005450436000000200880008a000000200080008c00000b770000813d00000003098002100000010009900089000000010990020f000000000008004b000000000900601900000000060604330000000008900089000000000686016f000000010890008a0000000009050433000000000889016f000000000668019f000000000065043500000000011200190000090d020000410000000000210435000000400600043d0000000002610049000000170220008a000000000026043500000029021000390000000905100039000000400050043f0000000008060433000000000008004b00000b990000c13d000000400020043f000000000005043500000c060000013d0000006908100039000000400080043f000000400400003900000000004504350000090e05000041000000000052043500000049021000390000090f05000041000000000052043500000000020604330000000202200039000000030220011a00000002022002100000002009200039000008fc0090009c000000360000813d0000003f0520003900000a520a500197000000400500043d0000002008500039000000000aa800190000004000a0043f000000000009004b00000bc80000613d00000a520a9001980000001f0d90018f0000000009a8001900000bbb0000613d000000000c03034f000000000e08001900000000cf0c043c000000000efe043600000000009e004b00000bb70000c13d00000000000d004b00000bc80000613d000000000aa3034f000000030cd00210000000000d090433000000000dcd01cf000000000dcd022f000000000a0a043b000001000cc00089000000000aca022f000000000aca01cf000000000ada019f0000000000a90435000000000025043500000000090604330000000002690019000000000026004b00000bfb0000813d0000000a01100039000000000906001900000003099000390000000004090433000000120a4002700000003f0aa0018f000000000a1a0019000000000a0a0433000000f80aa00210000000000c080433000008fa0cc00197000000000aac019f0000000000a804350000000c0a4002700000003f0aa0018f000000000a1a0019000000000a0a0433000000f80aa00210000000010c800039000000000d0c0433000008fa0dd00197000000000aad019f0000000000ac0435000000060a4002700000003f0aa0018f000000000a1a0019000000000a0a0433000000f80aa00210000000020c800039000000000d0c0433000008fa0dd00197000000000aad019f0000000000ac04350000003f0440018f00000000041400190000000004040433000000f804400210000000030a800039000000000c0a0433000008fa0cc0019700000000044c019f00000000004a04350000000408800039000000000029004b00000bcf0000413d0000000009060433000000031090011a000000010010008c00000c030000613d000000020010008c00000c060000c13d000000010180008a000009100200004100000c050000013d000000020180008a00000911020000410000000000210435000000020100002900000000010104330000000d02000029000000000602043300000020020000290000000008020433000000400200043d0000008009200039000009120a0000410000000000a904350000006009200039000009130a0000410000000000a9043500000040092000390000090b0a0000410000000000a9043500000020092000390000090c0a0000410000000000a90435000000830220003900000020098000390000000008080433000000200080008c00000c210000813d000000000d080019000000000a02001900000c280000013d000000000a020019000000000d0800190000000094090434000000000a4a0436000000200dd0008a0000002000d0008c00000c230000813d000000030cd00210000001000cc00089000000010cc0020f00000000000d004b000000000c0060190000000009090433000000000dc000890000000009d9016f000000010cc0008a000000000d0a0433000000000ccd016f00000000099c019f00000000009a0435000000000228001900000914080000410000000000820435000000200860003900000006022000390000000006060433000000200060008c00000c400000813d000000000a060019000000000902001900000c470000013d0000000009020019000000000a06001900000000840804340000000009490436000000200aa0008a0000002000a0008c00000c420000813d000000030ca00210000001000cc00089000000010cc0020f00000000000a004b000000000c0060190000000008080433000000000ac000890000000008a8016f000000010ac0008a000000000c090433000000000aac016f00000000088a019f0000000000890435000000000a260019000009160200004100000000002a043500000020081000390000001302a000390000000006010433000000200960008c00000c5f0000813d0000000009060019000000000102001900000c6a0000013d0000000004080433000000000042043500000040081000390000003301a00039000000200090008c00000c6a0000413d00000000840804340000000001410436000000200990008a000000200090008c00000c650000813d000000030a900210000001000aa00089000000010aa0020f000000000009004b000000000a00601900000000080804330000000009a00089000000000898016f0000000109a0008a000000000a0104330000000009a9016f000000000889019f000000000081043500000000082600190000090d010000410000000000180435000000400100043d0000000002180049000000170220008a000000000021043500000029068000390000000902800039000000400020043f0000000009010433000000000009004b00000c870000c13d000000400060043f000000000002043500000cf40000013d0000006909800039000000400090043f000000400400003900000000004204350000090e02000041000000000026043500000049028000390000090f06000041000000000062043500000000020104330000000202200039000000030220011a0000000209200210000000200a900039000008fc00a0009c000000360000813d0000003f0290003900000a520c200197000000400200043d0000002006200039000000000cc600190000004000c0043f00000000000a004b00000cb60000613d00000a520da001980000001f0ea0018f000000000ad6001900000ca90000613d000000000c03034f000000000f06001900000000c40c043c000000000f4f04360000000000af004b00000ca50000c13d00000000000e004b00000cb60000613d0000000003d3034f0000000304e00210000000000c0a0433000000000c4c01cf000000000c4c022f000000000303043b0000010004400089000000000343022f00000000034301cf0000000003c3019f00000000003a04350000000000920435000000000a01043300000000091a0019000000000091004b00000ce90000813d0000000a08800039000000000a010019000000030aa0003900000000030a043300000012043002700000003f0440018f00000000048400190000000004040433000000f804400210000000000c060433000008fa0cc0019700000000044c019f00000000004604350000000c043002700000003f0440018f00000000048400190000000004040433000000f804400210000000010c600039000000000d0c0433000008fa0dd0019700000000044d019f00000000004c043500000006043002700000003f0440018f00000000048400190000000004040433000000f804400210000000020c600039000000000d0c0433000008fa0dd0019700000000044d019f00000000004c04350000003f0330018f00000000038300190000000003030433000000f8033002100000000304600039000000000c040433000008fa0cc0019700000000033c019f0000000000340435000000040660003900000000009a004b00000cbd0000413d000000000a0104330000000310a0011a000000010010008c00000cf10000613d000000020010008c00000cf40000c13d000000010160008a000009100300004100000cf30000013d000000020160008a0000091103000041000000000031043500000023010000290000000001010433000000400300043d000000960630003900000917080000410000000000860435000000600630003900000918080000410000000000860435000000a2063000390000091908000041000000000086043500000040063000390000091a08000041000000000086043500000020063000390000091b080000410000000000860435000000e8063000390000091c080000410000000000860435000000c8063000390000091d08000041000000000086043500000076063000390000091e080000410000000000860435000000a8063000390000091f08000041000000000086043500000021040000290000002006400039000000f3033000390000000004040433000000200040008c00000d1b0000813d0000000009040019000000000803001900000d220000013d00000000080300190000000009040019000000006a0604340000000008a80436000000200990008a000000200090008c00000d1d0000813d000000030a900210000001000aa00089000000010aa0020f000000000009004b000000000a00601900000000060604330000000009a00089000000000696016f0000000109a0008a000000000a08043300000000099a016f000000000669019f000000000068043500000000043400190000002006400039000009200300004100000000003604350000092106000041000000000064043500000020087000390000003e044000390000000006070433000000200060008c00000d3d0000813d0000000009060019000000000704001900000d440000013d00000000070400190000000009060019000000008a0804340000000007a70436000000200990008a000000200090008c00000d3f0000813d000000030a900210000001000aa00089000000010aa0020f000000000009004b000000000a00601900000000080804330000000009a00089000000000898016f0000000109a0008a000000000a07043300000000099a016f000000000889019f00000000008704350000000004460019000000200640003900000000003604350000092203000041000000000034043500000020065000390000003e034000390000000004050433000000200040008c00000d5e0000813d0000000007040019000000000503001900000d650000013d0000000005030019000000000704001900000000680604340000000005850436000000200770008a000000200070008c00000d600000813d00000003087002100000010008800089000000010880020f000000000007004b000000000800601900000000060604330000000007800089000000000676016f000000010780008a0000000008050433000000000778016f000000000667019f000000000065043500000000033400190000002404300039000009230500004100000000005404350000092404000041000000000043043500000004043000390000092505000041000000000054043500000020042000390000003f033000390000000002020433000000200020008c00000d830000813d0000000006020019000000000503001900000d8a0000013d0000000005030019000000000602001900000000470404340000000005750436000000200660008a000000200060008c00000d850000813d00000003076002100000010007700089000000010770020f000000000006004b000000000700601900000000040404330000000006700089000000000464016f000000010670008a0000000007050433000000000667016f000000000446019f00000000004504350000000003320019000000800230003900000926040000410000000000420435000000f90230003900000927040000410000000000420435000001980230003900000928040000410000000000420435000001e0043000390000092902000041000000000024043500000060043000390000092a05000041000000000054043500000040043000390000092b05000041000000000054043500000020043000390000092c050000410000000000540435000000d9043000390000092d050000410000000000540435000000b9043000390000092e05000041000000000054043500000178043000390000092f050000410000000000540435000001580430003900000930050000410000000000540435000001380430003900000931050000410000000000540435000001c00430003900000932050000410000000000540435000002210430003900000933050000410000000000540435000002010430003900000934050000410000000000540435000000990430003900000935050000410000000000540435000001180430003900000936050000410000000000540435000001a00430003900000937050000410000000000540435000001e10430003900000938050000410000000000540435000009390400004100000000004304350000029e043000390000093a0500004100000000005404350000027e043000390000093b0500004100000000005404350000025e043000390000093c0500004100000000005404350000023e043000390000093d050000410000000000540435000002f0043000390000093e050000410000000000540435000002d0043000390000093f050000410000000000540435000002b00430003900000940050000410000000000540435000003990430003900000941050000410000000000540435000003790430003900000942050000410000000000540435000003590430003900000943050000410000000000540435000003390430003900000944050000410000000000540435000003190430003900000945050000410000000000540435000002f90430003900000946050000410000000000540435000004170430003900000947050000410000000000540435000003f70430003900000948050000410000000000540435000003d70430003900000949050000410000000000540435000003b7043000390000094a05000041000000000054043500000488043000390000094b05000041000000000054043500000468043000390000094c05000041000000000054043500000448043000390000094d05000041000000000054043500000428043000390000094e050000410000000000540435000004fd043000390000094f050000410000000000540435000004dd0430003900000950050000410000000000540435000004bd04300039000009510500004100000000005404350000049d0430003900000952050000410000000000540435000005a3043000390000095305000041000000000054043500000583043000390000095405000041000000000054043500000563043000390000095505000041000000000054043500000543043000390000095605000041000000000054043500000523043000390000095705000041000000000054043500000503043000390000095805000041000000000054043500000627043000390000095905000041000000000054043500000607043000390000095a050000410000000000540435000005e7043000390000095b050000410000000000540435000005c7043000390000095c050000410000000000540435000005a7043000390000095d0500004100000000005404350000062c043000390000095e05000041000000000054043500000649043000390000095f050000410000000000540435000000200410003900000655033000390000000001010433000000200010008c00000e4d0000813d0000000006010019000000000503001900000e540000013d0000000005030019000000000601001900000000470404340000000005750436000000200660008a000000200060008c00000e4f0000813d00000003076002100000010007700089000000010770020f000000000006004b000000000700601900000000040404330000000006700089000000000464016f000000010670008a0000000007050433000000000667016f000000000446019f00000000004504350000000003310019000000200130003900000960040000410000000000410435000000710130003900000961040000410000000000410435000000bf01300039000009620400004100000000004104350000011c0130003900000000002104350000015d01300039000009630200004100000000002104350000005101300039000009640200004100000000002104350000009f0130003900000965020000410000000000210435000000fc01300039000009660200004100000000002104350000013d0130003900000967020000410000000000210435000001cf0130003900000968020000410000000000210435000001af01300039000009690200004100000000002104350000018f013000390000096a02000041000000000021043500000031013000390000096b0200004100000000002104350000007f013000390000096c020000410000000000210435000000dc013000390000096d0200004100000000002104350000011d013000390000096e0200004100000000002104350000016f013000390000096f02000041000000000021043500000970010000410000000000130435000000400200043d0000000001230049000001c401100039000d00000002001d000000000d120436000001e402300039000000400020043f0000001c0000006b000002040130003900000ea80000c13d0000022404300039000000400040043f0000000104000039000000000042043500000204033000390000090104000041000000000043043500000ee30000013d00000000040000190000001c0600002900000000050400190000000a0060008c0000000a0660011a000000010440003900000eaa0000813d000008fc0040009c000000360000813d000000000042043500000a520650019700000000066300190000022406600039000000400060043f000000000004004b00000ed10000613d00000a52074001980000001f0840018f00000000060000310000000209600367000000000671001900000ec40000613d000000000a09034f000000000c01001900000000ae0a043c000000000cec043600000000006c004b00000ec00000c13d000000000008004b00000ed10000613d000000000779034f0000000308800210000000000906043300000000098901cf000000000989022f000000000707043b0000010008800089000000000787022f00000000078701cf000000000797019f000000000076043500000203033000390000001c0600002900000000070500190000000005020433000000000057004b000005410000813d00000000044300190000000a0060008c0000000a5660011a000000f8055002100000000008040433000008fa08800197000000000585019f00000901055001c70000000000540435000000010570008a000000000407001900000ed30000813d000000400300043d000000e00430003900000971050000410000000000540435000000c00430003900000972050000410000000000540435000000a0043000390000097305000041000000000054043500000080043000390000097405000041000000000054043500000060043000390000097505000041000000000054043500000040043000390000097605000041000000000054043500000020043000390000097705000041000000000054043500000003040000290000002005400039000000e7033000390000000004040433000000200040008c00000f020000813d0000000007040019000000000603001900000f090000013d0000000006030019000000000704001900000000580504340000000006860436000000200770008a000000200070008c00000f040000813d00000003087002100000010008800089000000010880020f000000000007004b000000000800601900000000050504330000000007800089000000000575016f000000010780008a0000000008060433000000000778016f000000000557019f00000000005604350000000003340019000009780400004100000000004304350000000404000029000000200540003900000001033000390000000004040433000000200040008c00000f220000813d0000000007040019000000000603001900000f290000013d0000000006030019000000000704001900000000580504340000000006860436000000200770008a000000200070008c00000f240000813d00000003087002100000010008800089000000010880020f000000000007004b000000000800601900000000050504330000000007800089000000000575016f000000010780008a0000000008060433000000000778016f000000000557019f0000000000560435000000000334001900000060043000390000097905000041000000000054043500000040043000390000097a05000041000000000054043500000020043000390000097b0500004100000000005404350000097c04000041000000000043043500000074033000390000000002020433000000200020008c00000f490000813d0000000005020019000000000403001900000f500000013d0000000004030019000000000502001900000000160104340000000004640436000000200550008a000000200050008c00000f4b0000813d00000003065002100000010006600089000000010660020f000000000005004b000000000600601900000000010104330000000005600089000000000151016f000000010560008a0000000006040433000000000556016f000000000115019f000000000014043500000000013200190000006b021000390000097d0300004100000000003204350000004b021000390000097e0300004100000000003204350000002b021000390000097f030000410000000000320435000009800200004100000000002104350000000b02100039000009810300004100000000003204350000000c02000029000008e900200198000008ea02000041000000000200601900000010022001af0000001803000029000008e900300198000008ea0300004100000000030060190000001a063001af000008f604600197000008f603200197000000000543013f000000000043004b0000000004000019000008f604002041000c00000006001d000000000062004b0000000006000019000008f606004041000008f60050009c000000000406c019000000400600043d00000000056100490000005e05500039001800000006001d000000000f560436000000000004004b00000f8b0000613d000000010200008a00000f9d0000013d0000001404000029000008e900400198000008ea04000041000000000400601900000016044001af000000000042004b0000000002000019000008f602002041000008f604400197000000000543013f000000000043004b0000000003000019000008f603004041000008f60050009c000000000302c019000000000003004b0000000002000039000000010200c0390020007e0010003d0000008000200190000000800300008a00000000030060190000007f0220018f000000000723019f000000010070008c00000faa0000613d00000a530070009c00000fad0000c13d0000000a03000039000009830200004100000faf0000013d0000098402000041000000080300003900000faf0000013d00000982020000410000000503000039000000be04100039000000400040043f000000200400002900000000003404350000009e0110003900000000002104350000001c0000006b000005410000613d00000017030000290000001b0230006a000008eb03200197000008e900200198000008ea020000410000000002006019000000000332019f000000010400008a002300000004001d0000001c0040006b00000fc50000c13d000008f602000041000008f60030009c00000fd20000613d0000001c02000029000008f64220012c000008f60440c099000008f65330012c000000000323013f000008f60550c09900000000024500d9000000ff033002120000000004230049000000000334019f0000000003026019000000000002004b000000000203c019000008eb03200197000008e900200198000008ea020000410000000002006019000000000332019f00000985040000410000001a02000039000008e00030009c00000ff40000213d000000050030008c00000ff40000413d00000986040000410000001902000039000000090030008c00000ff40000413d0000098704000041000000110030008c00000ff40000413d0000098804000041000000210030008c00000ff40000413d0000098904000041000000410030008c00000ff40000413d000000810030008c00000ff20000413d000001000030008c0000098c040000410000098b040020410000001a02000039000000180200203900000ff40000013d0000098a040000410000001802000039000000400500043d0000004003500039000000400030043f00000020035000390000000000430435001e00000005001d0000000000250435000000400e00043d0000004002e00039000000400020043f0000002004e000390000098d020000410000000000240435000000020200003900000000002e0435000000400800043d0000004002800039000000400020043f0000098e06000041000000200280003900000000006204350000000305000039002100000008001d0000000000580435000000400900043d0000004006900039000000400060043f0000098f06000041000000200a90003900000000006a04350000000000590435000000400c00043d0000004006c00039000000400060043f00000990080000410000002006c000390000000000860435001d0000000c001d00000000005c0435000000010070008c0000101f0000613d00000a530070009c000010740000c13d00000a530070009c0000001d0400002900000000020400190000002102006029002100000002001d000000000e09c019000000400200043d0000002004200039000009910500004100000000005404350000002c022000390000002007e0003900000000040e0433000000200040008c000000000904001900000000060200190000000008070019000010390000413d00000000080700190000000006020019000000000904001900000000850804340000000006560436000000200990008a000000200090008c000010340000813d000000030a900210000001000aa00089000000010aa0020f000000000009004b000000000a00601900000000080804330000000009a00089000000000898016f0000000109a0008a000000000a06043300000000099a016f000000000889019f00000000008604350000000002240019000009920400004100000000004204350000002104000029000000200640003900000008022000390000000004040433000000200040008c000000000a040019000000000802001900000000090600190000105a0000413d00000000090600190000000008020019000000000a04001900000000950904340000000008580436000000200aa0008a0000002000a0008c000010550000813d000000030ca00210000001000cc00089000000010cc0020f00000000000a004b000000000c0060190000000009090433000000000ac000890000000009a9016f000000010ac0008a000000000c080433000000000aac016f00000000099a019f0000000000980435000000000224001900000020042000390000099308000041000000000084043500000994040000410000000000420435000000270220003900000000040e0433000000200040008c000010f60000813d00000000090400190000000008020019000010fd0000013d000000400700043d0000002008700039000009910c0000410000000000c804350000002c08700039000000000e0e04330000002000e0008c000000000c0e00190000000007080019000010850000413d0000000007080019000000000c0e001900000000450404340000000007570436000000200cc0008a0000002000c0008c000010800000813d0000000305c002100000010005500089000000010550020f00000000000c004b00000000050060190000000004040433000000000c5000890000000004c4016f000000010550008a000000000c07043300000000055c016f000000000445019f000000000047043500000000048e001900000992050000410000000000540435000000080440003900000021050000290000000005050433000000200050008c00000000080500190000000007040019000010a30000413d00000000070400190000000008050019000000002c0204340000000007c70436000000200880008a000000200080008c0000109e0000813d000000030c800210000001000cc00089000000010cc0020f000000000008004b000000000c00601900000000020204330000000008c00089000000000282016f0000000108c0008a000000000c07043300000000088c016f000000000228019f00000000002704350000000002450019000009970400004100000000004204350000001b042000390000099105000041000000000054043500000027022000390000000004090433000000200040008c00000000070400190000000005020019000010c30000413d0000000005020019000000000704001900000000a80a04340000000005850436000000200770008a000000200070008c000010be0000813d00000003087002100000010008800089000000010880020f000000000007004b000000000800601900000000070a04330000000009800089000000000797016f000000010880008a0000000009050433000000000889016f000000000778019f000000000075043500000000022400190000099204000041000000000042043500000008022000390000001d040000290000000004040433000000200040008c00000000070400190000000005020019000010e10000413d0000000005020019000000000704001900000000680604340000000005850436000000200770008a000000200070008c000010dc0000813d00000003087002100000010008800089000000010880020f000000000007004b000000000800601900000000060604330000000007800089000000000676016f000000010780008a0000000008050433000000000778016f000000000667019f00000000006504350000000004240019000009970200004100000000002404350000001b02400039000000400600043d0000000004640049000000050440008a000011330000013d0000000008020019000000000904001900000000750704340000000008580436000000200990008a000000200090008c000010f80000813d000000030a900210000001000aa00089000000010aa0020f000000000009004b000000000a00601900000000070704330000000009a00089000000000797016f0000000109a0008a000000000a08043300000000099a016f000000000779019f0000000000780435000000000224001900000992040000410000000000420435000000080220003900000021040000290000000004040433000000200040008c000011150000813d000000000704001900000000050200190000111c0000013d0000000005020019000000000704001900000000680604340000000005850436000000200770008a000000200070008c000011170000813d00000003087002100000010008800089000000010880020f000000000007004b000000000800601900000000060604330000000007800089000000000676016f000000010780008a0000000008050433000000000778016f000000000667019f00000000006504350000000004240019000000200240003900000995050000410000000000520435000009960200004100000000002404350000002a02400039000000400600043d00000000046400490000000a044000390000000005460436000000400020043f0000002004200039000009980700004100000000007404350000002d0220003900000020040000290000000004040433000000200040008c000000000904001900000000070200190000000008010019000011480000413d000000000801001900000000070200190000000009040019000000008a0804340000000007a70436000000200990008a000000200090008c000011430000813d000000030a900210000001000aa00089000000010aa0020f000000000009004b000000000a00601900000000080804330000000009a00089000000000898016f0000000109a0008a000000000a07043300000000099a016f000000000889019f0000000000870435000000000224001900000062042000390000099907000041000000000074043500000042042000390000099a07000041000000000074043500000022042000390000099b0700004100000000007404350000099c04000041000000000042043500000002042000390000099d07000041000000000074043500000079022000390000001e040000290000000004040433000000200040008c000000000904001900000000070200190000000008030019000011740000413d000000000803001900000000070200190000000009040019000000008a0804340000000007a70436000000200990008a000000200090008c0000116f0000813d000000030a900210000001000aa00089000000010aa0020f000000000009004b000000000a00601900000000080804330000000009a00089000000000898016f0000000109a0008a000000000a07043300000000099a016f000000000889019f0000000000870435000000000224001900000040042000390000099e07000041000000000074043500000020042000390000099f0700004100000000007404350000005404200039000009a0070000410000000000740435000009a1040000410000000000420435000000650220003900000020040000290000000004040433000000200040008c000011950000813d000000000804001900000000070200190000119c0000013d0000000007020019000000000804001900000000190104340000000007970436000000200880008a000000200080008c000011970000813d00000003098002100000010009900089000000010990020f000000000008004b000000000900601900000000010104330000000008900089000000000181016f000000010890008a0000000009070433000000000889016f000000000118019f000000000017043500000000012400190000002202100039000009a20400004100000000004204350000006b02100039000009a30400004100000000004204350000004b02100039000009a40400004100000000004204350000099c02000041000000000021043500000002021000390000099d0400004100000000004204350000002b02100039000009a50400004100000000004204350000007002100039000009a604000041000000000042043500000079011000390000001e020000290000000002020433000000200020008c000011c60000813d00000000070200190000000004010019000011cd0000013d0000000004010019000000000702001900000000380304340000000004840436000000200770008a000000200070008c000011c80000813d00000003087002100000010008800089000000010880020f000000000007004b000000000800601900000000030304330000000007800089000000000373016f000000010780008a0000000008040433000000000778016f000000000337019f000000000034043500000000011200190000004002100039000009a70300004100000000003204350000002002100039000009a8030000410000000000320435000009a902000041000000000021043500000048011000390000000002060433000000200020008c000011ea0000813d00000000040200190000000003010019000011f10000013d0000000003010019000000000402001900000000560504340000000003630436000000200440008a000000200040008c000011ec0000813d00000003064002100000010006600089000000010660020f000000000004004b000000000600601900000000040504330000000005600089000000000454016f000000010560008a0000000006030433000000000556016f000000000445019f00000000004304350000000003120019000000400200043d0000000001230049000000200110008a001000000002001d0000000002120436000000400030043f00000000000b004b002100000003001d0000002004300039000012120000c13d00000021050000290000004001500039000000400010043f000000200150003900000901030000410000000000310435000000010100003900000000001504350000124f0000013d000000000100001900000000050b001900000000030100190000000a0050008c0000000a0550011a0000000101100039000012140000813d000008fc0010009c000000360000813d00000a52053001970000002106000029000000000016043500000000055600190000004005500039000000400050043f000000000001004b0000123c0000613d00000a52061001980000001f0710018f0000000005000031000000020850036700000000056400190000122f0000613d000000000908034f000000000a040019000000009c09043c000000000aca043600000000005a004b0000122b0000c13d000000000007004b0000123c0000613d000000000668034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f000000000065043500000021050000290000001f05500039000000000603001900000021030000290000000003030433000000000036004b000005410000813d00000000011500190000000a00b0008c0000000a3bb0011a000000f8033002100000000007010433000008fa07700197000000000373019f00000901033001c70000000000310435000000010360008a00000000010600190000123e0000813d000000400300043d0000002001300039000000400010043f002000000003001d00000000000304350000000c03000029000008f60030009c000012640000413d000000400500043d0000004001500039000000400010043f0000002001500039000009aa0300004100000000003104350000000103000039002000000005001d00000000003504350000001b030000290000000003300089001a08eb0030019b001908e90030019b000000190000006b000008ea0300004100000000030060190000001a073001b0000012720000c13d000000400500043d0000004003500039000000400030043f00000020035000390000090106000041000000000063043500000001030000390000000000350435000012ac0000013d0000000008000019000000000507001900000000090800190000000a0050008c0000000a0550011a0000000108800039000012740000813d000008fc0080009c000000360000813d00000a5203900197000000400500043d000000000a85043600000000033500190000004003300039000000400030043f000000000008004b0000129b0000613d001e0a520080019c0000001f0c80018f000000000300003100000002033003670000001e06a000290000128e0000613d000000000e03034f00000000eb0e043c000000000aba043600000000006a004b0000128a0000c13d00000000000c004b0000129b0000613d0000001e03300360000000030ac00210000000000b060433000000000bab01cf000000000bab022f000000000303043b000001000aa000890000000003a3022f0000000003a301cf0000000003b3019f00000000003604350000001f065000390000000003050433000000000039004b000005410000813d000000000a09001900000000038600190000000a0070008c0000000a8770011a000000f8088002100000000009030433000008fa09900197000000000898019f00000901088001c700000000008304350000000109a0008a00000000080a00190000129c0000813d000000400300043d000000200630003900000020030000290000000003030433000000200030008c000012b50000813d00000000080300190000000007060019000012bc0000013d0000000007060019000000000803001900000000190104340000000007970436000000200880008a000000200080008c000012b70000813d00000003098002100000010009900089000000010990020f000000000008004b000000000900601900000000010104330000000008900089000000000181016f000000010890008a0000000009070433000000000889016f000000000118019f0000000000170435000000000136001900000020065000390000000003050433000000200030008c000012d10000813d00000000070300190000000005010019000012d80000013d0000000005010019000000000703001900000000680604340000000005850436000000200770008a000000200070008c000012d30000813d00000003087002100000010008800089000000010880020f000000000007004b000000000800601900000000060604330000000007800089000000000676016f000000010780008a0000000008050433000000000778016f000000000667019f00000000006504350000000005130019000000400300043d0000000001350049000000200110008a001a00000003001d00000000091304360000002001500039000000400010043f002000000005001d00000000000504350000001403000029000008e900300198000012ff0000613d000000400500043d0000004001500039000000400010043f0000002001500039000009aa0300004100000000003104350000000103000039002000000005001d000000000035043500000017030000290000000003300089001608eb0030019b001508e90030019b000000150000006b000008ea03000041000000000300601900000016073001b00000130d0000c13d000000400500043d0000004003500039000000400030043f00000020035000390000090106000041000000000063043500000001030000390000000000350435000013490000013d00000000080000190000000003070019000000000a0800190000000a0030008c0000000a0330011a00000001088000390000130f0000813d000008fc0080009c000000360000813d00000a5203a00197000000400500043d000000000b85043600000000033500190000004003300039000000400030043f000000000008004b000013380000613d00000a5206800198001e001f008001930000000003000031000000020c300367001d00000006001d00000000066b00190000132a0000613d00000000030c034f000000003e03043c000000000beb043600000000006b004b000013260000c13d0000001e0000006b000013380000613d0000001d03c003600000001e0b000029000000030bb00210000000000c060433000000000cbc01cf000000000cbc022f000000000303043b000001000bb000890000000003b3022f0000000003b301cf0000000003c3019f00000000003604350000001f0650003900000000030a0019000000000a0504330000000000a3004b000005410000813d00000000088600190000000a0070008c0000000aa770011a000000f80aa00210000000000b080433000008fa0bb00197000000000aba019f000009010aa001c70000000000a80435000000010a30008a0000000008030019000013390000813d000000400300043d000000200630003900000020030000290000000003030433000000200030008c000013520000813d00000000080300190000000007060019000013590000013d00000000070600190000000008030019000000001a0104340000000007a70436000000200880008a000000200080008c000013540000813d000000030a800210000001000aa00089000000010aa0020f000000000008004b000000000a00601900000000010104330000000008a00089000000000181016f0000000108a0008a000000000a07043300000000088a016f000000000118019f0000000000170435000000000136001900000020065000390000000003050433000000200030008c0000136e0000813d00000000070300190000000005010019000013750000013d0000000005010019000000000703001900000000680604340000000005850436000000200770008a000000200070008c000013700000813d000000170a0000290000001b08a00029000008eb0a800197000008e900800198000008ea0800004100000000080060190000000008a8019f000008f6a880012c000008f60aa0c099000008f60b00004100000002cbb0011b0000000008b8013f000008f60cc0c099000000030b700210000001000bb00089000000010bb0020f000000000007004b000000000b00601900000000060604330000000007b00089000000000676016f0000000107b0008a000000000b05043300000000077b016f000000000667019f00000000006504350000000005ca00d9000000ff068002120000000007560049000000000667019f0000000006056019000000000005004b000000000506c019000008eb06500197000008e900500198000008ea050000410000000005006019000000000565019f000008f608500197000008f606800167000008f60080009c000000000b000019000008f60b004041000009ab0050009c0000000007000019000008f607002041000008f60060009c000000000b07c0190000000007130019000000400c00043d0000000001c70049000000200110008a000000000a1c0436000000400070043f0000001a010000290000000001010433001b00000001001d00000021010000290000000003010433000000400170003900170000000c001d000000000c0c043300190000000c001d000000400010043f001c00000007001d000000200770003900000000000b004b000013e80000613d000009ae0050009c0000000001000019000008f601004041000008f60080009c000000000b000019000008f60b002041000008f60060009c000000000b01c01900000000000b004b000013ef0000c13d00000a540050009c0000000001000019000008f601004041000008f60080009c000000000b000019000008f60b002041000008f60060009c000000000b01c01900000000000b004b000013f70000c13d00000002010000390000001c0b00002900000000001b043500000a550050009c0000000001000019000008f601004041000008f60080009c0000000008000019000008f608002041000008f60060009c000000000801c019000000000008004b000013ff0000c13d000008e00050009c000014030000213d000013880050008c000014070000413d000061a80050008c0000140b0000413d000009b90050009c0000140f0000413d000009bb0050009c000009bd01008041000009b4010040410000000000170435000009bc01000041000014120000013d00000001050000390000001c010000290000000000510435000009ac010000410000000000170435000009ad01000041000014130000013d00000001010000390000001c050000290000000000150435000009ac010000410000000000170435000009af010000410000000405000039000014130000013d00000001010000390000001c050000290000000000150435000009ac010000410000000000170435000009b0010000410000000505000039000014130000013d000009b1010000410000000000170435000009b201000041000014120000013d000009b3010000410000000000170435000009b401000041000014120000013d000009b5010000410000000000170435000009b601000041000014120000013d000009b7010000410000000000170435000009b801000041000014120000013d000009b2010000410000000000170435000009ba010000410000000205000039000000400800043d0000004006800039000000400060043f000000200e80003900000000001e0435001600000008001d000000000058043500000007013000c9000000380110003a000014270000c13d000000400300043d0000004001300039000000400010043f0000002001300039000009010500004100000000005104350000000101000039001d00000003001d0000000000130435000014670000013d0000000008000019000000000301001900000000050800190000000a0030008c0000000a0330011a0000000108800039000014290000813d000008fc0080009c000000360000813d00000a5206500197000000400300043d000000000c830436001d00000003001d00000000066300190000004006600039000000400060043f000000000008004b000014540000613d00000a52038001980020001f008001930000000006000031001e00020060036b001500000003001d00000000063c0019000014450000613d0000001e0b00035f00000000b30b043c000000000c3c043600000000006c004b000014410000c13d000000200000006b000014540000613d0000001e0b00035f0000001503b00360000000200b000029000000030bb00210000000000c060433000000000cbc01cf000000000cbc022f000000000303043b000001000bb000890000000003b3022f0000000003b301cf0000000003c3019f00000000003604350000001d030000290000001f063000390000001d030000290000000003030433000000000035004b000005410000813d000000000b05001900000000058600190000000a0010008c0000000a8110011a000000f808800210000000000c050433000008fa0cc001970000000008c8019f00000901088001c700000000008504350000000105b0008a00000000080b0019000014560000813d0000001b0100002900000007011000c9000000620110003a000014750000c13d000000400300043d0000004001300039000000400010043f0000002001300039000009010500004100000000005104350000000101000039001e00000003001d0000000000130435000014b50000013d0000000008000019000000000601001900000000050800190000000a0060008c0000000a0660011a0000000108800039000014770000813d000008fc0080009c000000360000813d00000a5206500197000000400300043d000000000c830436001e00000003001d00000000066300190000004006600039000000400060043f000000000008004b000014a20000613d00000a52068001980020001f008001930000000003000031001b00020030036b001500000006001d00000000066c0019000014930000613d0000001b0b00035f00000000b30b043c000000000c3c043600000000006c004b0000148f0000c13d000000200000006b000014a20000613d0000001b0b00035f0000001503b00360000000200b000029000000030bb00210000000000c060433000000000cbc01cf000000000cbc022f000000000303043b000001000bb000890000000003b3022f0000000003b301cf0000000003c3019f00000000003604350000001e030000290000001f063000390000001e030000290000000003030433000000000035004b000005410000813d000000000c05001900000000058600190000000a0010008c0000000a8110011a000000f808800210000000000b050433000008fa0bb001970000000008b8019f00000901088001c700000000008504350000000105c0008a00000000080c0019000014a40000813d000000190100002900000007011000c9000000620810003a000014c30000c13d000000400300043d0000004001300039000000400010043f0000002001300039000009010500004100000000005104350000000101000039002000000003001d0000000000130435000015030000013d0000000006000019000000000108001900000000050600190000000a0010008c0000000a0110011a0000000106600039000014c50000813d000008fc0060009c000000360000813d00000a520b500197000000400300043d0000000001630436002000000003001d000000000bb30019000000400bb000390000004000b0043f000000000006004b000014f00000613d00000a520b600198001b001f006001930000000003000031001900020030036b00150000000b001d000000000cb10019000014e10000613d000000190b00035f00000000b30b043c00000000013104360000000000c1004b000014dd0000c13d0000001b0000006b000014f00000613d000000190300035f00000015013003600000001b030000290000000303300210000000000b0c0433000000000b3b01cf000000000b3b022f000000000101043b0000010003300089000000000131022f00000000013101cf0000000001b1019f00000000001c043500000020010000290000001f0110003900000020030000290000000003030433000000000035004b000005410000813d000000000c05001900000000056100190000000a0080008c0000000a6880011a000000f806600210000000000b050433000008fa0bb001970000000006b6019f00000901066001c700000000006504350000000105c0008a00000000060c0019000014f20000813d000000400100043d0000004005100039000009be0600004100000000006504350000002005100039000009bf0600004100000000006504350000004d05100039000009c00600004100000000006504350000001d0300002900000020063000390000005a051000390000000003030433000000200030008c000015160000813d000000000103001900000000080500190000151d0000013d00000000080500190000000001030019000000006b0604340000000008b80436000000200110008a000000200010008c000015180000813d000000030b100210000001000bb00089000000010bb0020f000000000001004b000000000b00601900000000010604330000000006b00089000000000161016f0000000106b0008a000000000b08043300000000066b016f000000000116019f000000000018043500000000015300190000002003100039000009c1050000410000000000530435000000bd03100039000009c20500004100000000005304350000009d03100039000009c30500004100000000005304350000007d03100039000009c40500004100000000005304350000005d03100039000009c50500004100000000005304350000003d03100039000009c6050000410000000000530435000009c7030000410000000000310435000000c40310003900000021010000290000000005010433000000200050008c000015470000813d000000000105001900000000060300190000154e0000013d0000000006030019000000000105001900000000480404340000000006860436000000200110008a000000200010008c000015490000813d00000003081002100000010008800089000000010880020f000000000001004b000000000800601900000000010404330000000004800089000000000141016f000000010480008a0000000008060433000000000448016f000000000114019f000000000016043500000000013500190000002b03100039000009c8040000410000000000430435000009800300004100000000003104350000000b03100039000009bf0400004100000000004304350000003803100039000009c00400004100000000004304350000001e04000029000000200540003900000045031000390000000004040433000000200040008c000015700000813d00000000010400190000000006030019000015770000013d0000000006030019000000000104001900000000580504340000000006860436000000200110008a000000200010008c000015720000813d00000003081002100000010008800089000000010880020f000000000001004b000000000800601900000000010504330000000005800089000000000151016f000000010580008a0000000008060433000000000558016f000000000115019f000000000016043500000000013400190000002003100039000009c1040000410000000000430435000000bd03100039000009c90400004100000000004304350000009d03100039000009ca0400004100000000004304350000007d03100039000009c40400004100000000004304350000005d03100039000009c50400004100000000004304350000003d03100039000009c6040000410000000000430435000009c7030000410000000000310435000000ca031000390000001a010000290000000004010433000000200040008c000015a10000813d00000000010400190000000005030019000015a80000013d0000000005030019000000000104001900000000960904340000000005650436000000200110008a000000200010008c000015a30000813d00000003061002100000010006600089000000010660020f000000000001004b000000000600601900000000010904330000000008600089000000000181016f000000010660008a0000000008050433000000000668016f000000000116019f000000000015043500000000013400190000002b03100039000009cb040000410000000000430435000009800300004100000000003104350000000b03100039000009bf0400004100000000004304350000003803100039000009c00400004100000000004304350000002005000029000000200450003900000045031000390000000001050433000000200010008c000015ca0000813d00000000060100190000000005030019000015d10000013d0000000005030019000000000601001900000000480404340000000005850436000000200660008a000000200060008c000015cc0000813d00000003086002100000010008800089000000010880020f000000000006004b000000000800601900000000040404330000000006800089000000000464016f000000010680008a0000000008050433000000000668016f000000000446019f000000000045043500000000013100190000002003100039000009c1040000410000000000430435000000bd03100039000009c90400004100000000004304350000009d03100039000009cc0400004100000000004304350000007d03100039000009c40400004100000000004304350000005d03100039000009c50400004100000000004304350000003d03100039000009c6040000410000000000430435000009c7030000410000000000310435000000ca0110003900000017030000290000000003030433000000200030008c000015fb0000813d00000000050300190000000004010019000016020000013d0000000004010019000000000503001900000000a60a04340000000004640436000000200550008a000000200050008c000015fd0000813d00000003065002100000010006600089000000010660020f000000000005004b000000000600601900000000050a04330000000008600089000000000585016f000000010660008a0000000008040433000000000668016f000000000556019f000000000054043500000000011300190000002003100039000009cd040000410000000000430435000000f80310003900000924040000410000000000430435000000d803100039000009ce040000410000000000430435000000b803100039000009cf0400004100000000004304350000009803100039000009d00400004100000000004304350000007803100039000009d10400004100000000004304350000005803100039000009d20400004100000000004304350000011c03100039000009d30400004100000000004304350000003803100039000009d4040000410000000000430435000000fc03100039000009d5040000410000000000430435000009d603000041000000000031043500000121011000390000001c030000290000000003030433000000200030008c000016380000813d000000000503001900000000040100190000163f0000013d0000000004010019000000000503001900000000760704340000000004640436000000200550008a000000200050008c0000163a0000813d00000003065002100000010006600089000000010660020f000000000005004b000000000600601900000000050704330000000007600089000000000575016f000000010660008a0000000007040433000000000667016f000000000556019f00000000005404350000000001130019000009d7030000410000000000310435000000040110003900000016030000290000000003030433000000200030008c000016570000813d000000000503001900000000040100190000165e0000013d0000000004010019000000000503001900000000e60e04340000000004640436000000200550008a000000200050008c000016590000813d00000003065002100000010006600089000000010660020f000000000005004b000000000600601900000000050e04330000000007600089000000000575016f000000010660008a0000000007040433000000000667016f000000000556019f000000000054043500000000061300190000002001600039000009d8030000410000000000310435000009d9010000410000000000160435000000400400043d0000000001460049000000160110003900000000011404360000003603600039000000400030043f000000d603600039000009da0500004100000000005304350000014303600039000009db050000410000000000530435000001b603600039000009dc050000410000000000530435000002470360003900000995050000410000000000530435000000b603600039000009dd0500004100000000005304350000009603600039000009de0500004100000000005304350000007603600039000009df0500004100000000005304350000005603600039000009e00500004100000000005304350000012303600039000009e10500004100000000005304350000010303600039000009e20500004100000000005304350000019603600039000009e30500004100000000005304350000017603600039000009e40500004100000000005304350000022703600039000009e50500004100000000005304350000020703600039000009e6050000410000000000530435000001e703600039000009e7050000410000000000530435000002d103600039000009e8050000410000000000530435000002b103600039000009e90500004100000000005304350000029103600039000009ea0500004100000000005304350000027103600039000009eb050000410000000000530435000000e303600039000009ec0500004100000000005304350000015603600039000009ed050000410000000000530435000001c703600039000009ee0500004100000000005304350000025103600039000009ef050000410000000000530435000000400500043d0000000003560049000002b5033000390000000003350436000002d507600039000000400070043f000002f5066000390000000d070000290000000007070433000000200070008c000016ca0000813d00000000090700190000000008060019000016d10000013d0000000008060019000000000907001900000000da0d04340000000008a80436000000200990008a000000200090008c000016cc0000813d000000030a900210000001000aa00089000000010aa0020f000000000009004b000000000a00601900000000090d0433000000000ba000890000000009b9016f000000010aa0008a000000000b080433000000000aab016f00000000099a019f0000000000980435000000000667001900000018070000290000000007070433000000200070008c000016e60000813d00000000090700190000000008060019000016ed0000013d0000000008060019000000000907001900000000fa0f04340000000008a80436000000200990008a000000200090008c000016e80000813d000000030a900210000001000aa00089000000010aa0020f000000000009004b000000000a00601900000000090f0433000000000ba000890000000009b9016f000000010aa0008a000000000b080433000000000aab016f00000000099a019f0000000000980435000000000667001900000010070000290000000007070433000000200070008c000017020000813d00000000090700190000000008060019000017090000013d00000000080600190000000009070019000000002a0204340000000008a80436000000200990008a000000200090008c000017040000813d000000030a900210000001000aa00089000000010aa0020f000000000009004b000000000a00601900000000020204330000000009a00089000000000292016f0000000109a0008a000000000a08043300000000099a016f000000000229019f000000000028043500000000026700190000000004040433000000200040008c0000171d0000813d00000000070400190000000006020019000017240000013d0000000006020019000000000704001900000000180104340000000006860436000000200770008a000000200070008c0000171f0000813d00000003087002100000010008800089000000010880020f000000000007004b000000000800601900000000010104330000000007800089000000000171016f000000010780008a0000000008060433000000000778016f000000000117019f000000000016043500000000012400190000000002050433000000200020008c000017380000813d000000000502001900000000040100190000173f0000013d0000000004010019000000000502001900000000360304340000000004640436000000200550008a000000200050008c0000173a0000813d00000003065002100000010006600089000000010660020f000000000005004b000000000600601900000000030304330000000005600089000000000353016f000000010560008a0000000006040433000000000556016f000000000335019f00000000003404350000000003120019000009f0010000410000000000130435000000400100043d00000000021300490000001a0220008a000000000021043500000026043000390000000602300039000000400020043f0000000005010433000000000005004b0000175d0000c13d000000400040043f0000000001000019001e00000002001d000017cd0000013d0000006605300039000000400050043f000000400500003900000000005204350000090e02000041000000000024043500000046023000390000090f04000041000000000042043500000000020104330000000202200039000000030220011a00000002042002100000002005400039000008fc0050009c000000360000813d0000003f0240003900000a5206200197000000400200043d001e00000002001d00000020022000390000000006620019000000400060043f000000000005004b0000178f0000613d00000a52065001980000001f0750018f000000000500003100000002085003670000000005620019000017820000613d000000000908034f000000000a020019000000009b09043c000000000aba043600000000005a004b0000177e0000c13d000000000007004b0000178f0000613d000000000668034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f00000000006504350000001e05000029000000000045043500000000050104330000000004150019000000000041004b000017c30000813d000000070330003900000000050100190000000305500039000000000605043300000012076002700000003f0770018f00000000073700190000000007070433000000f8077002100000000008020433000008fa08800197000000000778019f00000000007204350000000c076002700000003f0770018f00000000073700190000000007070433000000f80770021000000001082000390000000009080433000008fa09900197000000000779019f000000000078043500000006076002700000003f0770018f00000000073700190000000007070433000000f80770021000000002082000390000000009080433000008fa09900197000000000779019f00000000007804350000003f0660018f00000000063600190000000006060433000000f80660021000000003072000390000000008070433000008fa08800197000000000668019f00000000006704350000000402200039000000000045004b000017970000413d0000000005010433000000031050011a000000010010008c000017cb0000613d000000020010008c000017ce0000c13d0000091001000041000000010220008a000017cd0000013d0000091101000041000000020220008a000000000012043500000022010000290000000001010433002100000001001d0000000012010434000000000002004b000018310000613d00000000050000190000000004000019000000000300001900000000055100190000000005050433000008fb05500197000009f10050009c00000001033060390000000104400039000000ff0540018f000000000025004b000017d70000413d000000ff03300190000018310000613d0000000003320019000008fc0030009c000000360000813d0000001f0230003900000a5205200197000000400200043d00000000043204360000000005540019000000400050043f000000000003004b000018060000613d00000a52053001980000001f0630018f000000000300003100000002073003670000000003540019000017f90000613d000000000807034f0000000009040019000000008a08043c0000000009a90436000000000039004b000017f50000c13d000000000006004b000018060000613d000000000557034f0000000306600210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000053043500000021030000290000000008030433000000000008004b000018300000613d00000000030000190000000005000019000000000600001900000000073100190000000009070433000008fb09900197000009f10090009c0000181d0000c13d0000000008020433000000000086004b000005410000813d00000000086400190000000009080433000008fa09900197000009f2099001c70000000000980435000000010660003900000021080000290000000008080433000000000083004b000005410000813d0000000003020433000000000036004b000005410000813d00000000036400190000000008030433000008fa088001970000000007070433000008fb07700197000000000778019f000000000073043500000001066000390000000105500039000000ff0350018f00000021070000290000000008070433000000000083004b0000180d0000413d002100000002001d00000008010000290000000001010433002000000001001d0000000012010434000000000002004b000018940000613d00000000050000190000000004000019000000000300001900000000055100190000000005050433000008fb05500197000009f10050009c00000001033060390000000104400039000000ff0540018f000000000025004b0000183a0000413d000000ff03300190000018940000613d0000000003320019000008fc0030009c000000360000813d0000001f0230003900000a5205200197000000400200043d00000000043204360000000005540019000000400050043f000000000003004b000018690000613d00000a52053001980000001f0630018f0000000003000031000000020730036700000000035400190000185c0000613d000000000807034f0000000009040019000000008a08043c0000000009a90436000000000039004b000018580000c13d000000000006004b000018690000613d000000000557034f0000000306600210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000053043500000020030000290000000008030433000000000008004b000018930000613d00000000030000190000000005000019000000000600001900000000073100190000000009070433000008fb09900197000009f10090009c000018800000c13d0000000008020433000000000086004b000005410000813d00000000086400190000000009080433000008fa09900197000009f2099001c70000000000980435000000010660003900000020080000290000000008080433000000000083004b000005410000813d0000000003020433000000000036004b000005410000813d00000000036400190000000008030433000008fa088001970000000007070433000008fb07700197000000000778019f000000000073043500000001066000390000000105500039000000ff0350018f00000020070000290000000008070433000000000083004b000018700000413d002000000002001d00000013010000290000000004010433000008e900400198000008ea010000410000000001006019000008eb0240019700000000022101a0000005410000613d0000000e010000290000000001010433000000000001004b0000000f0500002900000011080000290000000008056019000008f66520012c000008f6036000990000000002060019000000000203c019000008f607000041000009f3a970012b000000000959013f000008f60aa0c099000000000a2a00d9000000ff029002120000000009a20049000000000929019f00000000090a60190000000002080433000008eb08200197000008e900200198000008ea020000410000000002006019000000000282019f00000000000a004b000000000a09c01900000000084a00a9000008eb09800197000008e900800198000008ea080000410000000008006019000000000898019f000000000082004b000018c30000c13d00000a2a03000041000000000001004b000018da0000c13d000018db0000013d000000000005004b0000000003066019000009f47670012b000000000556013f000008f60770c09900000000033700d9000000ff055002120000000006350049000000000556019f0000000005036019000000000003004b000000000305c01900000000034300a9000008eb04300197000008e900300198000008ea030000410000000003006019000000000343019f000000000032004b000018e30000c13d00000a2a03000041000000000001004b000018db0000c13d00000a2b03000041000000400200043d0000004001200039000000400010043f000000200b20003900000000003b04350000000301000039000000000012043500001b810000013d000008f603200197000008f60030009c000000010300008a000000000300c0190000000103300210000000ff04200270000000000334019f000000ff0000008b0000000003026019000000000432013f0000000005340049000009f50050009c00001c5b0000813d0000000100500190000009f704000041000009f604006041000009f8034000d100000080033002700000000200500190000000000403c019000009f9034000d100000080033002700000000400500190000000000403c019000009fa034000d100000080033002700000000800500190000000000403c019000009fb034000d100000080033002700000001000500190000000000403c019000009fc034000d100000080033002700000002000500190000000000403c019000009fd034000d100000080033002700000004000500190000000000403c019000009fe034000d100000080033002700000008000500190000000000403c019000009ff034000d100000080033002700000010000500190000000000403c01900000a00034000d100000080033002700000020000500190000000000403c01900000a01034000d100000080033002700000040000500190000000000403c01900000a02034000d100000080033002700000080000500190000000000403c01900000a03034000d100000080033002700000100000500190000000000403c01900000a04034000d100000080033002700000200000500190000000000403c01900000a05034000d100000080033002700000400000500190000000000403c01900000a06034000d100000080033002700000800000500190000000000403c01900000a07034000d1000000800330027000000a0800500198000000000403c01900000a09034000d1000000800330027000000a0a00500198000000000403c01900000a0b034000d1000000800330027000000a0c00500198000000000403c01900000a0d0050019800000a0e034000d1000000800430c270000008e00020009c000019430000213d000000000002004b000019430000613d00000a530440012900000007020000290000000005020433000000060200002900000000030204330000002002400270000008d600400198000000010220c039000000000001004b0000194f0000613d000008e10120019800001dc20000613d00000a0f02100129000000ff0150018f000000ff0330018f0000000004130049000008f605400197000008f60050009c000000010500008a000000000500c0190000000105500210000000ff06400270000000000556019f000000ff0000008b0000000005046019000008e102200197000000000013004b0000196b0000613d000000000454013f0000000004540049000000120040008c0000196b0000213d000000000013004b000000ff0140018f000000fe0640018f000000010440018f0000196d0000a13d000000020010008c000019710000813d00000001030000390000197b0000013d000000000102001900001a120000013d000000020010008c0000199d0000813d0000000101000039000019a90000013d0000000a0500003900000001030000390000000101600270000000010010019000000000065500a9000000010500603900000000033500a900000001011002720000000005060019000019740000c13d000000000002004b0000000001000019000019820000613d00000000012300a900000000022100d9000000000032004b00001cb30000c13d000000000004004b00001a120000613d00000a530010009c0000000002010019000000000200601900000a14242000d1000008ec3520012a000008ec065000d100000080033002100000008007400270000000000373019f000000000036004b000000010550208a0000008002200210000000000272019f000008ec035001970000000003320019000008ec5230012a00000a110440019700000a130030009c000019be0000213d0000008005500210000000000545019f000008ec062000d1000000000056004b000000010220208a000019bf0000013d0000000a0500003900000001010000390000000103600270000000010030019000000000065500a9000000010500603900000000011500a900000001033002720000000005060019000019a00000c13d000000000001004b00001dc20000613d00000000011200d9000000000004004b00001a120000613d00000a100210009c000000000201401900000a110020009c0000000002000039000000010200203900000a100010009c00000000030000390000000103008039000000000223016f0000000002210019000008ec4320012a00000a130020009c000019cb0000213d0000008004400210000008ec053000d1000000000045004b000000010330208a000019cc0000013d000000010220008a0000008003300210000000000343019f000008ec02200197000000000323001900000a14021000d1000000000323004b00000000040000390000000104004039000000000343004b000019d70000c13d000000800120027000001a120000013d000000010330008a0000008002200210000008ec03300197000000000323019f0000008002100210000000000323004b00000000040000390000000104004039000000000443004b000019e30000c13d00000a140120012a00001a120000013d000009f60030009c000000360000813d000008ec0110019700000a1b011000d10000007f0110027000000a1101100197000000000112004b000000010330408a00000080011002700000008002300210000000000112019f00001a120000013d00000a140040009c000000360000813d00000a145010012a000000020350027000000a156130012a0000007e0550021000000a1605500197000019ef0000013d00000a180060009c00000a170660009a000000010110008a000019f60000813d00000a110010009c000019eb0000213d0000008007600210000000000757019f0000007f08100210000000000078004b000019eb0000213d0000008003300210000000000353019f000008ec0110019700000a19011000d1000000000113001900000a155310012a00001a010000013d00000a180050009c00000a170550009a000000010330008a00001a070000813d00000a110030009c000019fd0000213d00000080065002100000007f07300210000000000067004b000019fd0000213d0000008001100210000008ec0330019700000a19033000d100000000011300190000007e01100270000000000112004b00000001044040390000000101100270000000ff02400210000000000112019f00000a1a011000d100000a530010009c0000000002010019000000000200601900000000422200a9000008ec6340012a000000800520027000000a130040009c00001a200000213d0000008006600210000000000656019f000008ec073000d1000000000067004b000000010330208a00001a210000013d000000010330008a0000008004400210000000000454019f000008ec033001970000000004340019000008ec5340012a000008ec0220019700000a130040009c00001a2f0000213d0000008005500210000000000525019f000008ec063000d1000000000056004b000000010330208a00001a300000013d000000010330008a0000008004400210000000000224019f000008ec03300197000000000232001900000000041100a9000000000242004b00000000030000390000000103004039000000000332004b000000400240027000001a3f0000613d000008fc0030009c000000360000813d000000c003300210000000000223019f00000a530020009c0000000003020019000000000300601900000a1c0010009c00001a5a0000813d00000a20353000d1000008ec4630012a000008ec076000d100000080044002100000008008500270000000000484019f000000000047004b000000010660208a0000008003300210000000000383019f000008ec046001970000000004430019000008ec6340012a00000a210550019700000a130040009c00001a740000213d0000008006600210000000000656019f000008ec073000d1000000000067004b000000010330208a00001a750000013d00000a1d433000d100000080053002700000008004400210000000000454019f00000a1e05300197000008ec4640012a0000008004400210000000000454019f000008ec056000d1000000000045004b000000010660208a000008ec04600197000000000434001900000a1d032000d1000000000434004b00000000050000390000000105004039000000000454004b00001a7f0000613d000009f60040009c000000360000813d000008ec0220019700000a1f022000d10000007f0220027000000a1e0220019700001a960000013d000000010330008a0000008004400210000000000454019f000008ec03300197000000000434001900000a20032000d1000000000434004b00000000050000390000000105004039000000000454004b00001a810000c13d000000800430027000001a9b0000013d000009f60040009c000000360000813d000008ec0220019700000a22052000d1000000800550027000000a23022000d1000000010220027000000a2402200197000000000252019f00000a25062001970000007f05200270000008ec0050009c00001a920000413d00000a270060009c00000a260660009a000000010550008a00001a8c0000413d0000008002200210000000ff0550021000000000022500190000007f02200270000000000223004b000000010440408a00000080022002700000008003400210000000000423019f000000000004004b00001aa00000c13d000000fa03000039000000000200001900001ab10000013d000000000200001900000000030400190000000a0030008c0000000a0330011a002300000002001d000000010220003900001aa20000813d0000002303000029000000fe0330018f000000060030008c00001abd0000413d0000002303000029000000fb03300039000000ff0330019000001ab10000c13d000000010500003900001abc0000013d0000000a060000390000000105000039000000010030019000000000076600a9000000010600603900000000055600a90000000103300272000000000607001900001ab30000c13d000000000005004b00001dc20000613d00000000045400d90000000a3b40011a000000040030008c000000010bb02039000000400400043d0000010003400039000000400030043f00000a1d00b0009c000000230200c029000000e00a40003900000000000a0435000000c003400039002300000003001d0000000000030435000000a0074000390000000000070435000000800840003900000000000804350000006005400039000000000005043500000040064000390000000000060435000000000c04043600000000000c0435000027100b006039000000ff0320018f00000a1c0010009c00001ae40000813d0000002c0030008c00001e0c0000813d0000003209300089001200000009001d00000000009c0435000000020900003900000000009804350000002c0330008900000000003704350000003102200089000000ff0220018f00001afc0000013d000000090030008c00001af10000813d000000060200003900000000002c043500000005020000390000000000260435000000040230008c00001e0c0000a13d000000050330008a000000000032004b00001dfe0000413d000000000025043500001afd0000013d000000fc03200039000000ff03300190001200000003001d00000000003c04350000000503000039000000000038043500001e0c0000613d000000fb02200039000000ff0220018f0000000000270435000000040200003900000000002604350000000000b4043500000a1c0010009c000000000100003900000001010040390000002302000029000000000012043500000000000a0435000000400200043d0000001203000029000000000b3204360000001f01300039000001e00110018f00000000011b0019000000400010043f00000a520e3001980000001f0c30018f0000000003eb00190000000001000031000000020d10036700001b170000613d000000000f0d034f00000000010b001900000000f90f043c0000000001910436000000000031004b00001b130000c13d00000000000c004b00001b240000613d0000000001ed034f0000000309c00210000000000c030433000000000c9c01cf000000000c9c022f000000000101043b0000010009900089000000000191022f00000000019101cf0000000001c1019f000000000013043500000000010a0433000000000001004b00001b300000613d0000000001020433000000000001004b000005410000613d00000000011200190000001f011000390000000003010433000008fa0330019700000a28033001c7000000000031043500000023010000290000000001010433000000000001004b00001b420000613d0000000001020433000000000001004b000005410000613d00000000030b0433000008fa0330019700000901033001c700000000003b0435000000010010008c000005410000613d00000021012000390000000003010433000008fa0330019700000a29033001c700000000003104350000000001080433000000ff0310018f0000000001070433000000ff0110018f000000000013004b00001b560000213d0000000001020433000000000013004b000005410000813d00000000013b00190000000008010433000008fa0880019700000901088001c7000000000081043500000001013000390000000008070433000000ff0880018f000000000083004b000000000301001900001b480000413d0000000003040433000000000003004b00001b810000613d00000000070604330000000001050433000000ff0810019000001b6d0000613d000000ff0170018f000000000081004b00001b6d0000c13d000000010170008a000000ff0110018f00000000001604350000000001020433000000000018004b000005410000813d00000000018b00190000000003010433000008fa0330019700000a29033001c7000000000031043500000000070604330000000003040433000000010170008a000000ff0110018f0000000000160435000000ff0170018f0000000007020433000000000071004b000005410000813d00000000011b00190000000007010433000008fa077001970000000a3030011a000000f803300210000000000373019f00000901033001c7000000000031043500000000010404330000000a0310011a00000000003404350000000a0010008c00001b590000813d00000013010000290000000004010433000008e900400198000008ea010000410000000001006019000008eb0340019700000000013101a0000005410000613d0000000e030000290000000005030433000000000005004b0000000f03000029000000000c030019000000110c006029000008f68710012c000008f6038000990000000001080019000000000103c019000008f609000041000009f3a690012b000000000676013f000008f60aa0c09900000000011a00d9000000ff06600212000000000a160049000000000a6a019f000000000a01601900000000060c0433000008eb0c600197000008e900600198000008ea0600004100000000060060190000000006c6019f000000000001004b00000000010ac01900000000014100a9000008eb0a100197000008e900100198000008ea0100004100000000010060190000000001a1019f000000000016004b00001bb00000c13d00000a2a03000041000000000005004b00001bc70000c13d00001bc80000013d000000000007004b0000000003086019000009f48190012b000000000171013f000008f60880c09900000000033800d9000000ff011002120000000007310049000000000117019f0000000001036019000000000003004b000000000301c01900000000014300a9000008eb03100197000008e900100198000008ea010000410000000001006019000000000131019f000000000016004b00001bd00000c13d00000a2a03000041000000000005004b00001bc80000c13d00000a2b03000041000000400500043d0000004001500039000000400010043f000000200f50003900000000003f04350000000301000039000000000015043500001ea00000013d000008f601600197000000010400008a000008f60010009c000000000100001900000000010460190000000101100210000000ff03600270000000000113019f000000ff0000008b0000000001066019000000000316013f0000000008130049000009f50080009c00001c5b0000813d0000000100800190000009f707000041000009f607006041000009f8017000d100000080011002700000000200800190000000000701c019000009f9017000d100000080011002700000000400800190000000000701c019000009fa017000d100000080011002700000000800800190000000000701c019000009fb017000d100000080011002700000001000800190000000000701c019000009fc017000d100000080011002700000002000800190000000000701c019000009fd017000d100000080011002700000004000800190000000000701c019000009fe017000d100000080011002700000008000800190000000000701c019000009ff017000d100000080011002700000010000800190000000000701c01900000a00017000d100000080011002700000020000800190000000000701c01900000a01017000d100000080011002700000040000800190000000000701c01900000a02017000d100000080011002700000080000800190000000000701c01900000a03017000d100000080011002700000100000800190000000000701c01900000a04017000d100000080011002700000200000800190000000000701c01900000a05017000d100000080011002700000400000800190000000000701c01900000a06017000d100000080011002700000800000800190000000000701c01900000a07017000d1000000800110027000000a0800800198000000000701c01900000a09017000d1000000800110027000000a0a00800198000000000701c01900000a0b017000d1000000800110027000000a0c00800198000000000701c01900000a0d0080019800000a0e017000d1000000800710c270000008e00060009c00001c310000213d000000000006004b00001c310000613d00000000077400d900000007010000290000000008010433000000060100002900000000060104330000002003700270000008d600700198000000010330c039000000000005004b00001c3d0000613d000008e10130019800001dc20000613d00000a0f03100129000000ff0580018f000000ff0760018f0000000008570049000008f601800197000008f60010009c000000000100001900000000010460190000000101100210000000ff06800270000000000116019f000000ff0000008b0000000001086019000008e106300197000000000057004b00001c590000613d000000000318013f0000000003130049000000120030008c00001c590000213d000000000057004b000000ff0130018f000000fe0530018f000000010730018f00001c620000a13d000000020010008c00001c660000813d000000010300003900001c700000013d000000000506001900001d1a0000013d000000400100043d000000440210003900000a2c030000410000000000320435000000240210003900000001030000390000216b0000013d000000020010008c00001c920000813d000000010300003900001c9e0000013d0000000a0800003900000001030000390000000105500270000000010050019000000000018800a9000000010800603900000000033800a90000000105500272000000000801001900001c690000c13d000000000006004b000000000500001900001c770000613d00000000056300a900000000016500d9000000000031004b00001cb30000c13d000000000007004b00001d1a0000613d000000000045004b0000000001050019000000000100601900000a14171000d1000008ec3610012a000008ec086000d100000080033002100000008009700270000000000393019f000000000038004b000000010660208a0000008001100210000000000191019f000008ec036001970000000006310019000008ec1360012a00000a110770019700000a130060009c00001cc60000213d0000008001100210000000000171019f000008ec083000d1000000000018004b000000010330208a00001cc70000013d0000000a0800003900000001030000390000000105500270000000010050019000000000018800a9000000010800603900000000033800a90000000105500272000000000801001900001c950000c13d000000000003004b00001dc20000613d00000000053600d9000000000007004b00001d1a0000613d00000a100150009c000000000105401900000a110010009c0000000001000039000000010100203900000a100050009c00000000030000390000000103008039000000000113016f0000000003150019000008ec1630012a00000a130030009c00001cd30000213d0000008001100210000008ec076000d1000000000017004b000000010660208a00001cd40000013d000000400100043d000000640210003900000a2e030000410000000000320435000000440210003900000a2f03000041000000000032043500000024021000390000002103000039000000000032043500000a2d020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000008401100039000021740000013d000000010330008a0000008001600210000000000171019f000008ec03300197000000000131001900000a14035000d1000000000131004b00000000060000390000000106004039000000000661004b00001cdf0000c13d000000800530027000001d1a0000013d000000010660008a0000008001300210000008ec03600197000000000113019f0000008006500210000000000161004b00000000030000390000000103004039000000000731004b00001ceb0000c13d00000a140560012a00001d1a0000013d000009f60060009c000000360000813d000008ec0150019700000a1b011000d10000007f0110027000000a1101100197000000000113004b000000010660408a00000080011002700000008003600210000000000513019f00001d1a0000013d00000a140070009c000000360000813d00000a141050012a000000020510027000000a159350012a0000007e0110021000000a160810019700001cf70000013d00000a180090009c00000a170990009a000000010330008a00001cfe0000813d00000a110030009c00001cf30000213d0000008001900210000000000181019f0000007f0a30021000000000001a004b00001cf30000213d0000008001500210000000000181019f000008ec0330019700000a19033000d1000000000331001900000a158530012a00001d090000013d00000a180080009c00000a170880009a000000010550008a00001d0f0000813d00000a110050009c00001d050000213d00000080018002100000007f09500210000000000019004b00001d050000213d0000008001300210000008ec0350019700000a19033000d100000000011300190000007e01100270000000000116004b00000001077040390000000101100270000000ff03700210000000000113019f00000a1a051000d1000000000045004b0000000001050019000000000100601900000000731100a9000008ec1670012a000000800830027000000a130070009c00001d280000213d0000008001100210000000000181019f000008ec096000d1000000000019004b000000010660208a00001d290000013d000000010660008a0000008001700210000000000181019f000008ec066001970000000007610019000008ec1670012a000008ec0330019700000a130070009c00001d370000213d0000008001100210000000000131019f000008ec086000d1000000000018004b000000010660208a00001d380000013d000000010660008a0000008001700210000000000131019f000008ec03600197000000000131001900000000035500a9000000000131004b00000000060000390000000106004039000000000161004b000000400630027000001d470000613d000008fc0010009c000000360000813d000000c001100210000000000661019f000000000046004b0000000001060019000000000100601900000a1c0050009c00001d620000813d00000a20181000d1000008ec3710012a000008ec097000d10000008003300210000000800a8002700000000003a3019f000000000039004b000000010770208a00000080011002100000000001a1019f000008ec037001970000000007310019000008ec1370012a00000a210880019700000a130070009c00001d7c0000213d0000008001100210000000000181019f000008ec093000d1000000000019004b000000010330208a00001d7d0000013d00000a1d311000d100000080071002700000008003300210000000000373019f00000a1e07100197000008ec3830012a0000008003300210000000000373019f000008ec078000d1000000000037004b000000010880208a000008ec03800197000000000113001900000a1d036000d1000000000131004b00000000070000390000000107004039000000000771004b00001d870000613d000009f60070009c000000360000813d000008ec0160019700000a1f011000d10000007f0110027000000a1e0110019700001d9e0000013d000000010330008a0000008001700210000000000181019f000008ec03300197000000000131001900000a20036000d1000000000131004b00000000070000390000000107004039000000000771004b00001d890000c13d000000800630027000001da30000013d000009f60070009c000000360000813d000008ec0160019700000a22061000d1000000800660027000000a23011000d1000000010110027000000a2401100197000000000661019f00000a25096001970000007f08600270000008ec0080009c00001d9a0000413d00000a270090009c00000a260990009a000000010880008a00001d940000413d0000008001600210000000ff0680021000000000011600190000007f01100270000000000113004b000000010770408a00000080011002700000008003700210000000000613019f000000000006004b00001da80000c13d000000fa03000039000000000e00001900001db70000013d000000000e000019000000000306001900000000040e00190000000a0030008c0000000a0330011a000000010ee0003900001daa0000813d000000fe0140018f000000060010008c00001dca0000413d000000fb01400039000000ff0310019000001db70000c13d000000010700003900001dc90000013d0000000a080000390000000107000039000000010030019000000000018800a9000000010800603900000000077800a90000000103300272000000000801001900001db90000c13d000000000007004b00001dc90000c13d000000400100043d000000440210003900000a3203000041000000000032043500000024021000390000001a030000390000216b0000013d00000000067600d90000000a3160011a000000040030008c0000000101102039000000400600043d0000010003600039000000400030043f00000a1d0010009c000000000e04c019000000e003600039001c00000003001d0000000000030435000000c003600039001d00000003001d0000000000030435000000a00960003900000000000904350000008003600039002300000003001d00000000000304350000006007600039000000000007043500000040086000390000000000080435000000000d06043600000000000d04350000271001006039000000ff04e0018f00000a1c0050009c00001df30000813d0000002c0040008c00001e0c0000813d000000320340008900000000003d0435000000020a000039000000230c0000290000000000ac04350000002c0440008900000000004904350000003104e00089000000ff0440018f00001e190000013d000000090040008c00001e050000813d000000060300003900000000003d0435000000050c0000390000000000c80435000000040c40008c00001e0c0000a13d000000050440008a00000000004c004b00001e130000813d000000400100043d000000440210003900000a3003000041000000000032043500000024021000390000001b030000390000216b0000013d000000fc03e00039000000ff0330019000000000003d04350000000504000039000000230a00002900000000004a043500001e150000c13d000000400100043d000000440210003900000a3103000041000000000032043500000024021000390000001e030000390000216b0000013d0000000000c7043500001e1a0000013d000000fb04e00039000000ff0440018f000000000049043500000004040000390000000000480435000000000016043500000a1c0050009c000000000100003900000001010040390000001d0400002900000000001404350000001c010000290000000000010435000000400500043d000000000f3504360000001f01300039000001e00110018f00000000011f0019000000400010043f00000a52013001980000001f0e30018f00000000031f00190000000004000031000000020c40036700001e340000613d000000000d0c034f00000000040f001900000000da0d043c0000000004a40436000000000034004b00001e300000c13d00000000000e004b00001e410000613d00000000011c034f0000000304e00210000000000a030433000000000a4a01cf000000000a4a022f000000000101043b0000010004400089000000000141022f00000000014101cf0000000001a1019f00000000001304350000001c010000290000000001010433000000000001004b00001e4e0000613d0000000001050433000000000001004b000005410000613d00000000011500190000001f011000390000000003010433000008fa0330019700000a28033001c700000000003104350000001d010000290000000001010433000000000001004b00001e600000613d0000000001050433000000000001004b000005410000613d00000000030f0433000008fa0330019700000901033001c700000000003f0435000000010010008c000005410000613d00000021015000390000000003010433000008fa0330019700000a29033001c7000000000031043500000023010000290000000001010433000000ff0310018f0000000001090433000000ff0110018f000000000013004b00001e750000213d0000000001050433000000000013004b000005410000813d00000000013f00190000000004010433000008fa0440019700000901044001c7000000000041043500000001013000390000000004090433000000ff0440018f000000000043004b000000000301001900001e670000413d0000000003060433000000000003004b00001ea00000613d00000000090804330000000001070433000000ff0a10019000001e8c0000613d000000ff0190018f0000000000a1004b00001e8c0000c13d000000010190008a000000ff0110018f0000000000180435000000000105043300000000001a004b000005410000813d0000000001af00190000000003010433000008fa0330019700000a29033001c7000000000031043500000000090804330000000003060433000000010190008a000000ff0110018f0000000000180435000000ff0190018f0000000004050433000000000041004b000005410000813d00000000011f00190000000004010433000008fa044001970000000a3030011a000000f803300210000000000343019f00000901033001c7000000000031043500000000010604330000000a0310011a00000000003604350000000a0010008c00001e780000813d000000400100043d000000200310003900000a3304000041000000000043043500000021040000290000000076040434000000000006004b00001eb40000613d0000002508100039000000000900001900000000018900190000000004970019000000000404043300000000004104350000002009900039000000000069004b00001eaa0000413d00001eb40000a13d00000000018600190000000000010435000000000336001900000005013000390000097804000041000000000041043500000020010000290000000076010434000000000006004b00001ec80000613d0000000608300039000000000900001900000000018900190000000004970019000000000404043300000000004104350000002009900039000000000069004b00001ebe0000413d00001ec80000a13d000000000186001900000000000104350000000003360019000000060130003900000a340400004100000000004104350000000002020433000000000002004b00001edb0000613d00000009063000390000000007000019000000000167001900000000047b0019000000000404043300000000004104350000002007700039000000000027004b00001ed10000413d00001edb0000a13d000000000162001900000000000104350000000001320019000000090210003900000a350300004100000000003204350000000002050433000000000002004b00001eee0000613d0000000b031000390000000005000019000000000435001900000000065f0019000000000606043300000000006404350000002005500039000000000025004b00001ee40000413d00001eee0000a13d000000000332001900000000000304350000000002120019000000400300043d0000000001320049000000150110008a001d00000003001d0000000001130436002300000001001d0000000b03200039000000400030043f000000220100002900000000040104330000000056040434000000000006004b00001f560000613d00000000090000190000000008000019000000000700001900000000019500190000000001010433000008fb01100197000009f10010009c00000001077060390000000108800039000000ff0980018f000000000069004b00001eff0000413d000000ff0170019000001f560000613d0000000008160019000008fc0080009c000000360000813d00000000008304350000001f0180003900000a52011001970000002b062000390000000001160019000000400010043f000000000008004b00001f2e0000613d00000a52078001980000001f0880018f00000000010000310000000209100367000000000276001900001f210000613d000000000a09034f000000000106001900000000ab0a043c0000000001b10436000000000021004b00001f1d0000c13d000000000008004b00001f2e0000613d000000000179034f0000000307800210000000000802043300000000087801cf000000000878022f000000000101043b0000010007700089000000000171022f00000000017101cf000000000181019f0000000000120435000000000a04043300000000000a004b00001f550000613d00000000080000190000000002000019000000000700001900000000098500190000000001090433000008fb01100197000009f10010009c00001f430000c13d0000000001030433000000000017004b000005410000813d0000000001760019000000000a010433000008fa0aa00197000009f20aa001c70000000000a104350000000107700039000000000a0404330000000000a8004b000005410000813d0000000001030433000000000017004b000005410000813d00000000017600190000000008010433000008fa088001970000000009090433000008fb09900197000000000898019f000000000081043500000001077000390000000102200039000000ff0820018f000000000a0404330000000000a8004b00001f340000413d0000000004030019000000080100002900000000050104330000000032050434000000000002004b00001fb50000613d00000000080000190000000007000019000000000600001900000000018300190000000001010433000008fb01100197000009f10010009c00000001066060390000000107700039000000ff0870018f000000000028004b00001f5e0000413d000000ff0160019000001fb50000613d0000000002120019000008fc0020009c000000360000813d0000001f0120003900000a5201100197000000400600043d00000000072604360000000001170019000000400010043f000000000002004b00001f8d0000613d00000a52082001980000001f0920018f0000000001000031000000020a100367000000000287001900001f800000613d000000000b0a034f000000000107001900000000bc0b043c0000000001c10436000000000021004b00001f7c0000c13d000000000009004b00001f8d0000613d00000000018a034f0000000308900210000000000902043300000000098901cf000000000989022f000000000101043b0000010008800089000000000181022f00000000018101cf000000000191019f0000000000120435000000000b05043300000000000b004b00001fb40000613d000000000900001900000000020000190000000008000019000000000a93001900000000010a0433000008fb01100197000009f10010009c00001fa20000c13d0000000001060433000000000018004b000005410000813d0000000001870019000000000b010433000008fa0bb00197000009f20bb001c70000000000b104350000000108800039000000000b0504330000000000b9004b000005410000813d0000000001060433000000000018004b000005410000813d00000000018700190000000009010433000008fa09900197000000000a0a0433000008fb0aa001970000000009a9019f000000000091043500000001088000390000000102200039000000ff0920018f000000000b0504330000000000b9004b00001f930000413d000000000506001900000005010000290000000002010433000000400700043d0000002a0100003900000000061704360000006001700039000000400010043f000000000100003100000002011003670021000000010353000000009301043c00000000003604350000004001700039000000000801043300000a3608800197000000000a09043b00000a370aa0019700000000088a019f00000000008104350000000001070433000000000001004b000005410000613d000008fa0330019700000901033001c70000000000360435000000010010008c000005410000613d000008e10820019700000021017000390000000002010433000008fa0220019700000a38022001c7000000000021043500000029020000390000000001070433000000000012004b000005410000813d000000000308001900000000012600190000000008010433000008fa08800197000000030a300210000000780aa0018f000009060aa0021f000009070aa001970000000008a8019f00000000008104350000000408300270000000010220008a000000020020008c00001fd70000813d000000100030008c000021650000813d000000400300043d000000400130003900000a39020000410000000000210435000000200230003900000a3a010000410000000000120435000000200a4000390000000008040433000000000008004b000020010000613d0000005703300039000000000b00001900000000013b0019000000000cab0019000000000c0c04330000000000c10435000000200bb0003900000000008b004b00001ff70000413d000020010000a13d0000000001380019000000000001043500000000022800190000003701200039000009aa0300004100000000003104350000000035050434000000000005004b000020140000613d0000003808200039000000000b00001900000000018b0019000000000cb30019000000000c0c04330000000000c10435000000200bb0003900000000005b004b0000200a0000413d000020140000a13d000000000185001900000000000104350000000002250019000000380120003900000a3b0300004100000000003104350000005f0120003900000a3c0300004100000000003104350000003f0120003900000a3d030000410000000000310435000000790120003900000a3e0300004100000000003104350000000005070433000000000005004b000020300000613d0000008903200039000000000700001900000000013700190000000008670019000000000808043300000000008104350000002007700039000000000057004b000020260000413d000020300000a13d000000000135001900000000000104350000000001250019000000890210003900000a3f0300004100000000003204350000008b021000390000000003040433000000000003004b002200000023001d000020440000613d000000000400001900000000012400190000000005a40019000000000505043300000000005104350000002004400039000000000034004b0000203a0000413d000020440000a13d00000022010000290000000000010435000000400200043d00000022030000290000000001230049000000200110008a001c00000002001d0000000004120436000000400030043f0000001f01000029000000000a01043300000000000a004b0000002007300039000020580000c13d00000022020000290000004001200039000000400010043f0000090101000041000000000017043500000001010000390000000000120435000020930000013d000000000b00001900000000020a0019000000000c0b00190000000a0020008c0000000a0220011a000000010bb000390000205a0000813d000008fc00b0009c000000360000813d00000a5201c0019700000022020000290000000000b2043500000000011200190000004001100039000000400010043f00000000000b004b000020800000613d00000a5203b001980000001f05b0018f0000000002370019000020730000613d000000210800035f0000000001070019000000008d08043c0000000001d10436000000000021004b0000206f0000c13d000000000005004b000020800000613d000000210130035f0000000303500210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000012043500000022010000290000001f021000390000002201000029000000000101043300000000001c004b000005410000813d00000000030c00190000000001b200190000000a00a0008c0000000a5aa0011a000000f8055002100000000008010433000008fa08800197000000000585019f00000901055001c70000000000510435000000010cc0008a000000000b030019000020820000813d0000000801000029000000000a01043300000000c20a0434000000000002004b000020f00000613d00000000080000190000000005000019000000000300001900000000018c00190000000001010433000008fb01100197000009f10010009c00000001033060390000000105500039000000ff0850018f000000000028004b0000209b0000413d000000ff01300190000020f00000613d0000000002120019000008fc0020009c000000360000813d0000001f0120003900000a5201100197000000400d00043d000000000e2d043600000000011e0019000000400010043f000000000002004b000020c80000613d00000a52032001980000001f0520018f00000000023e0019000020bb0000613d000000210800035f00000000010e0019000000008b08043c0000000001b10436000000000021004b000020b70000c13d000000000005004b000020c80000613d000000210130035f0000000303500210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000012043500000000050a0433000000000005004b000020ef0000613d000000000f0000190000000002000019000000000b0000190000000008fc00190000000001080433000008fb01100197000009f10010009c000020dd0000c13d00000000010d043300000000001b004b000005410000813d0000000001be00190000000003010433000008fa03300197000009f2033001c70000000000310435000000010bb0003900000000050a043300000000005f004b000005410000813d00000000010d043300000000001b004b000005410000813d0000000001be00190000000003010433000008fa033001970000000005080433000008fb05500197000000000353019f0000000000310435000000010bb000390000000102200039000000ff0f20018f00000000050a043300000000005f004b000020ce0000413d000000000a0d001900000009010000290000000003010433000000400d00043d0000002a01000039000000000c1d04360000006001d00039000000400010043f000000210100035f000000000501043b00000000005c04350000004001d00039000000000201043300000a3608200197000000000209043b00000a3702200197000000000882019f000000000081043500000000010d0433000000000001004b000005410000613d000008fa0550019700000901055001c700000000005c0435000000010010008c000005410000613d000008e1083001970000002101d000390000000003010433000008fa0330019700000a38033001c70000000000310435000000290500003900000000010d0433000000000015004b000005410000813d000000000308001900000000015c00190000000008010433000008fa088001970000000309300210000000780990018f000009060990021f0000090709900197000000000898019f00000000008104350000000408300270000000010550008a000000020050008c000021100000813d000000100030008c000021650000813d0000000a010000290000000003010433000000400900043d0000002a0100003900000000081904360000006001900039000000400010043f0000004005900039000000000105043300000a3601100197000000000212019f000000210100035f000000000101043b000000000025043500000000001804350000000002090433000000000002004b000005410000613d000008fa0110019700000901011001c70000000000180435000000010020008c000005410000613d000008e10530019700000021019000390000000002010433000008fa0220019700000a38022001c7000000000021043500000029020000390000000001090433000000000012004b000005410000813d000000000305001900000000012800190000000005010433000008fa05500197000000030b300210000000780bb0018f000009060bb0021f000009070bb001970000000005b5019f00000000005104350000000405300270000000010220008a000000020020008c000021410000813d000000100030008c000021650000813d00000013010000290000000001010433000008eb02100197000008e900100198000008ea010000410000000001006019000000000f2101a00000217c0000c13d000000400e00043d0000004001e00039000000400010043f0000002001e0003900000901020000410000000000210435000000010100003900000000001e0435000021b70000013d000000400100043d000000440210003900000a4003000041000000000032043500000024021000390000000303000039000000000032043500000a2d020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000006401100039000008d60010009c000008d6010080410000006001100210000008d60020009c000008d6020080410000004002200210000000000121019f0000235600010430000000000200001900000000030f0019000000000b0200190000000a0030008c0000000a0330011a00000001022000390000217e0000813d000008fc0020009c000000360000813d00000a5201b00197000000400e00043d00000000032e043600000000011e00190000004001100039000000400010043f000000000002004b000021a60000613d00000a52012001980020001f00200193001f00000001001d0000000005130019000021970000613d000000210100035f000000001601043c0000000003630436000000000053004b000021930000c13d000000200000006b000021a60000613d0000001f03000029000000210130035f00000020030000290000000303300210000000000605043300000000063601cf000000000636022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000161019f00000000001504350000001f05e0003900000000010e043300000000001b004b000005410000813d00000000030b001900000000012500190000000a00f0008c0000000a2ff0011a000000f802200210000000000b010433000008fa0bb001970000000002b2019f00000901022001c70000000000210435000000010b30008a0000000002030019000021a70000813d000000400100043d000000200210003900000a4103000041000000000032043500000000050d0433000000000005004b000021ca0000613d0000002a03100039000000000b00001900000000013b00190000000006cb001900000000060604330000000000610435000000200bb0003900000000005b004b000021c00000413d000021ca0000a13d0000000001350019000000000001043500000000022500190000000a0120003900000a3f03000041000000000031043500000000350a0434000000000005004b000021dd0000613d0000000c0a200039000000000b0000190000000001ab00190000000006b3001900000000060604330000000000610435000000200bb0003900000000005b004b000021d30000413d000021dd0000a13d0000000001a50019000000000001043500000000022500190000000c0120003900000a410300004100000000003104350000000005090433000000000005004b000021f00000613d0000001603200039000000000900001900000000013900190000000006890019000000000606043300000000006104350000002009900039000000000059004b000021e60000413d000021f00000a13d000000000135001900000000000104350000000002250019000000160120003900000a4203000041000000000031043500000000350e0434000000000005004b000022030000613d0000002608200039000000000900001900000000018900190000000006930019000000000606043300000000006104350000002009900039000000000059004b000021f90000413d000022030000a13d000000000185001900000000000104350000000002250019000000260120003900000a4303000041000000000031043500000022010000290000000005010433000000000005004b000022170000613d0000003203200039000000000600001900000000013600190000000008670019000000000808043300000000008104350000002006600039000000000056004b0000220d0000413d000022170000a13d000000000135001900000000000104350000000005250019000000320150003900000a44020000410000000000210435000000b60150003900000a45020000410000000000210435000000960150003900000a46020000410000000000210435000000760150003900000a47020000410000000000210435000000560150003900000a48020000410000000000210435000000360150003900000a49020000410000000000210435000000400200043d0000000001250049000000b4011000390000000006120436000000d401500039000000400010043f000000f40750003900000a4a0100004100000000001704350000001d010000290000000008010433000000000008004b000022430000613d000000fc03500039000000000500001900000000013500190000002309500029000000000909043300000000009104350000002005500039000000000085004b000022390000413d000022430000a13d000000000138001900000000000104350000000001780019000000080310003900000a4b0500004100000000005304350000001c030000290000000005030433000000000005004b000022570000613d0000001a03100039000000000700001900000000083700190000000009740019000000000909043300000000009804350000002007700039000000000057004b0000224d0000413d000022570000a13d0000000003350019000000000003043500000000011500190000000002020433000000000002004b000022670000613d0000001a03100039000000000400001900000000053400190000000007460019000000000707043300000000007504350000002004400039000000000024004b0000225d0000413d000022670000a13d0000000003320019000000000003043500000000041200190000001a01400039000009f1020000410000000000210435000000400200043d0000000001240049000000050110008a00000000031204360000001b01400039000000400010043f0000003b0140003900000a4c0500004100000000005104350000000002020433000000000002004b000022830000613d0000003c04400039000000000500001900000000064500190000000007530019000000000707043300000000007604350000002005500039000000000025004b000022790000413d000022830000a13d000000000342001900000000000304350000000001120019000000010210003900000a4d0300004100000000003204350000000d0210003900000a4e0300004100000000003204350000001e020000290000000032020434000000000002004b0000229a0000613d0000002704100039000000000500001900000000064500190000000007530019000000000707043300000000007604350000002005500039000000000025004b000022900000413d0000229a0000a13d000000000342001900000000000304350000000005120019000000270150003900000a4f020000410000000000210435000000400400043d00000000014500490000000901100039000000000014043500000049015000390000002902500039000000400020043f0000000003040433000000000003004b000022ab0000c13d000000400010043f00000000000204350000231a0000013d0000008903500039000000400030043f000000400300003900000000003204350000090e02000041000000000021043500000069015000390000090f02000041000000000021043500000000010404330000000201100039000000030110011a00000002061002100000002007600039000008fc0070009c000000360000813d0000003f0160003900000a5203100197000000400200043d00000020012000390000000003310019000000400030043f000000000007004b000022da0000613d00000a52037001980000001f0870018f0000000007310019000022cd0000613d000000210900035f000000000a010019000000009b09043c000000000aba043600000000007a004b000022c90000c13d000000000008004b000022da0000613d000000210330035f0000000308800210000000000907043300000000098901cf000000000989022f000000000303043b0000010008800089000000000383022f00000000038301cf000000000393019f0000000000370435000000000062043500000000070404330000000006470019000000000064004b00000000030100190000230f0000813d0000002a05500039000000000301001900000000070400190000000307700039000000000807043300000012098002700000003f0990018f00000000095900190000000009090433000000f809900210000000000a030433000008fa0aa0019700000000099a019f00000000009304350000000c098002700000003f0990018f00000000095900190000000009090433000000f809900210000000010a300039000000000b0a0433000008fa0bb0019700000000099b019f00000000009a043500000006098002700000003f0990018f00000000095900190000000009090433000000f809900210000000020a300039000000000b0a0433000008fa0bb0019700000000099b019f00000000009a04350000003f0880018f00000000085800190000000008080433000000f8088002100000000309300039000000000a090433000008fa0aa0019700000000088a019f00000000008904350000000403300039000000000067004b000022e30000413d0000000007040433000000034070011a000000010040008c000023170000613d000000020040008c0000231a0000c13d000000010330008a0000091004000041000023190000013d000000020330008a00000911040000410000000000430435000000400300043d000000200430003900000a500500004100000000005404350000003d033000390000000002020433000000000002004b0000232e0000613d000000000400001900000000053400190000000006410019000000000606043300000000006504350000002004400039000000000024004b000023230000413d0000232e0000a13d000000000132001900000000000104350000232f0000013d0000000001230019000000400200043d0000000003210049000000200330008a0000000000320435000000400010043f000000b60000013d000000000001042f00000000050100190000000000200443000000040100003900000005024002700000000002020031000000000121043a0000002004400039000000000031004b000023390000413d000008d60030009c000008d60300804100000060013002100000000002000414000008d60020009c000008d602008041000000c002200210000000000112019f00000a56011001c700000000020500192354234f0000040f00000001002001900000234e0000613d000000000101043b000000000001042d000000000001042f00002352002104230000000102000039000000000001042d0000000002000019000000000001042d0000235400000432000023550001042e0000235600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff5aea5775959fbc2557cc8789bc1bf90a239d9a910000000000000000000000000000000000000000000000005aea5775959fbc2557cc8789bc1bf90a239d9a910000000200000000000000000000000000000080000001000000000000000000000000000000000000000000000000000000000000000000000000009d7b0ea7000000000000000000000000000000000000000000000000000000009d7b0ea800000000000000000000000000000000000000000000000000000000b7af3cdc00000000000000000000000000000000000000000000000000000000e9dc6375000000000000000000000000000000000000000000000000000000004aa4a4fc000000000000000000000000000000000000000000000000000000007e5af7717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000001000000000000000000000000000000000000000099fbab88000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002400000080000000000000000000000000000000000000000000000000000000000000000000000000ffffffe00000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000800000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffff00000000000000000000000000000000ffffffffffffffffffffffffffffffffc45a01550000000000000000000000000000000000000000000000000000000028af8d0b00000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000000000000000000000000000001d17cbcf0d6d143135ae902365d2e5e2a16538d40000000000000000000000003355df6d4c9c3035724fd0e3914de96a5a83aaf4000000000000000000000000bbeb516fb02a01611cbbe0453fe3c580d7281011000000000000000000000000493257fd37edb34451f62edf8d2a0c418852ba4c3850c7bd00000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff95d89b4100000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000001000000010000000000000000000000000000000000000000000000000000000100000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000c9000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000004554480000000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000030313233343536373839616263646566000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000230000000000000000000000000000000000000000000000000000000000000074683d27323930707827206865696768743d273530307078272066696c6c3d272f2f7777772e77332e6f72672f323030302f737667273e3c72656374207769646577426f783d2730203020323930203530302720786d6c6e733d27687474703a3c7376672077696474683d2732393027206865696768743d2735303027207669272f3e3c2f7376673e00000000000000000000000000000000000000000000004142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3d000000000000000000000000000000000000000000000000000000000000003d3d000000000000000000000000000000000000000000000000000000000000783d2700000000000000000000000000000000000000000000000000000000002f2f7777772e77332e6f72672f323030302f737667273e3c636972636c652063272063793d2700000000000000000000000000000000000000000000000000002720723d273132307078272066696c6c3d2723000000000000000000000000002720723d273130307078272066696c6c3d272300000000000000000000000000313939392f786c696e6b273e00000000000000000000000000000000000000002f2f7777772e77332e6f72672f323030302f73766722000000000000000000003c646566733e00000000000000000000000000000000000000000000000000006577426f783d2230203020323930203530302220786d6c6e733d22687474703a3c7376672077696474683d2232393022206865696768743d2235303022207669786d6c3b6261736536342c0000000000000000000000000000000000000000002270302220786c696e6b3a687265663d22646174613a696d6167652f7376672b20786d6c6e733a786c696e6b3d27687474703a2f2f7777772e77332e6f72672f3c66696c7465722069643d226631223e3c6665496d61676520726573756c743d65663d22646174613a696d6167652f7376672b786d6c3b6261736536342c0000222f3e3c6665496d61676520726573756c743d2270312220786c696e6b3a6872222f3e3c6665496d61676520726573756c743d2270322220786c696e6b3a687222646174613a696d6167652f7376672b786d6c3b6261736536342c000000000022202f3e000000000000000000000000000000000000000000000000000000003c6665496d61676520726573756c743d2270332220786c696e6b3a687265663d6e644f757422202f3e3c6665476175737369616e426c75722000000000000000222072783d223432222072793d22343222202f3e3c2f636c6970506174683e003132207a22202f3e0000000000000000000000000000000000000000000000003e00000000000000000000000000000000000000000000000000000000000000653d226f7665726c61792220696e323d2270332220726573756c743d22626c65636c7573696f6e2220696e323d22703222202f3e3c6665426c656e64206d6f6470302220696e323d22703122202f3e3c6665426c656e64206d6f64653d22657873223e3c726563742077696474683d2232393022206865696768743d223530302f3e3c2f66696c7465723e203c636c6970506174682069643d22636f726e65722030203120313220343630205634302041323820323820302030203120343020323820323820302030203120323530203438382048343020413238203238203020483235302041323820323820302030203120323738203430205634363020413334203435372e393439203234322e323120343633203235332034363322202f737464446576696174696f6e3d22323422202f3e3c2f66696c7465723e000000476175737369616e426c757220696e3d22536f75726365477261706869632220696e3d22626c656e644f75742220737464446576696174696f6e3d22343222203c706174682069643d22746578742d706174682d612220643d224d34302031323c706174682069643d226d696e696d61702220643d224d3233342034343443323c66696c7465722069643d22746f702d726567696f6e2d626c7572223e3c666522202f3e3c6665426c656e64206d6f64653d226f7665726c61792220696e3d22746f702d6f7061636974793d223122202f3e000000000000000000000000000066667365743d22302e30222073746f702d636f6c6f723d2277686974652220732231222078323d2230222079313d2231222079323d2230223e3c73746f70206f3c6c696e6561724772616469656e742069643d22677261642d7570222078313d4772616469656e743e0000000000000000000000000000000000000000000000697465222073746f702d6f7061636974793d223022202f3e3c2f6c696e6561723c73746f70206f66667365743d222e39222073746f702d636f6c6f723d2277687061636974793d223022202f3e3c2f6c696e6561724772616469656e743e00003d22302e39222073746f702d636f6c6f723d227768697465222073746f702d6f2073746f702d6f7061636974793d223122202f3e3c73746f70206f6666736574206f66667365743d22302e30222073746f702d636f6c6f723d22776869746522313d2230222078323d2231222079313d2230222079323d2231223e3c73746f703c6c696e6561724772616469656e742069643d22677261642d646f776e22207861642d75702922202f3e3c2f6d61736b3e0000000000000000000000000000006474683d223122206865696768743d2231222066696c6c3d2275726c282367726974733d226f626a656374426f756e64696e67426f78223e3c726563742077693c6d61736b2069643d22666164652d757022206d61736b436f6e74656e74556e677261642d646f776e2922202f3e3c2f6d61736b3e000000000000000000000077696474683d223122206865696768743d2231222066696c6c3d2275726c2823556e6974733d226f626a656374426f756e64696e67426f78223e3c72656374203c6d61736b2069643d22666164652d646f776e22206d61736b436f6e74656e742f6d61736b3e00000000000000000000000000000000000000000000000000003d223122206865696768743d2231222066696c6c3d22776869746522202f3e3c3d226f626a656374426f756e64696e67426f78223e3c726563742077696474683c6d61736b2069643d226e6f6e6522206d61736b436f6e74656e74556e697473656e743e0000000000000000000000000000000000000000000000000000000073746f702d6f7061636974793d223022202f3e3c2f6c696e65617247726164696f66667365743d222e3935222073746f702d636f6c6f723d22776869746522207768697465222073746f702d6f7061636974793d223122202f3e3c73746f70203e3c73746f70206f66667365743d22302e37222073746f702d636f6c6f723d223c6c696e6561724772616469656e742069643d22677261642d73796d626f6c22646566733e0000000000000000000000000000000000000000000000000000003d2275726c2823677261642d73796d626f6c2922202f3e3c2f6d61736b3e3c2f696474683d22323930707822206865696768743d223230307078222066696c6c6e74556e6974733d227573657253706163654f6e557365223e3c7265637420773c6d61736b2069643d22666164652d73796d626f6c22206d61736b436f6e74653c6720636c69702d706174683d2275726c2823636f726e65727329223e0000003c726563742066696c6c3d2200000000000000000000000000000000000000006865696768743d22353030707822202f3e0000000000000000000000000000006768743d22353030707822202f3e00000000000000000000000000000000000072616e73666f726d2d6f726967696e3a63656e74657220746f703b223e000000636974793d22302e383522202f3e3c2f673e00000000000000000000000000003d223070782220793d22307078222077696474683d22323930707822206865696e2d626c7572293b207472616e73666f726d3a7363616c6528312e35293b2074222077696474683d22323930707822206865696768743d22353030707822202f38307078222072793d223132307078222066696c6c3d222330303022206f70612c3235352c3235352c302e322922202f3e3c2f673e0000000000000000000000227267626128302c302c302c302922207374726f6b653d227267626128323535696768743d22353030222072783d223432222072793d223432222066696c6c3d3c72656374207374796c653d2266696c7465723a2075726c2823663129222078203c67207374796c653d2266696c7465723a75726c2823746f702d726567696f3c726563742066696c6c3d226e6f6e652220783d223070782220793d223070783c656c6c697073652063783d22353025222063793d22307078222072783d22313c7265637420783d22302220793d2230222077696474683d22323930222068652220783d223070782220793d22307078222077696474683d22323930707822202233367078223e0000000000000000000000000000000000000000000000000063652220666f6e742d7765696768743d223230302220666f6e742d73697a653d652220666f6e742d66616d696c793d2227417269616c272c206d6f6e6f73706165787420793d22373070782220783d2233327078222066696c6c3d22776869746474683d22323930707822206865696768743d22323030707822202f3e203c74742066696c6c3d226e6f6e652220783d223070782220793d22307078222077693c67206d61736b3d2275726c2823666164652d73796d626f6c29223e3c7265632f00000000000000000000000000000000000000000000000000000000000000666f6e742d73697a653d2233367078223e434c2d000000000000000000000000272c206d6f6e6f73706163652220666f6e742d7765696768743d22323030222066696c6c3d2277686974652220666f6e742d66616d696c793d2227417269616c3c2f746578743e3c7465787420793d2231313570782220783d2233327078222035352c3235352c3235352c302e322922202f3e000000000000000000000000006c3d227267626128302c302c302c302922207374726f6b653d227267626128326865696768743d22343638222072783d223236222072793d223236222066696c3c2f746578743e3c2f673e0000000000000000000000000000000000000000003c7265637420783d2231362220793d223136222077696474683d223235382220236e6f6e6500000000000000000000000000000000000000000000000000000023666164652d646f776e0000000000000000000000000000000000000000000023666164652d75700000000000000000000000000000000000000000000000004d312031433431203431203130352031303520313435203134350000000000004d312031433333203439203937203131332031343520313435000000000000004d312031433333203537203839203131332031343520313435000000000000004d312031433235203635203831203132312031343520313435000000000000004d312031433137203733203733203132392031343520313435000000000000004d312031433920383120363520313337203134352031343500000000000000004d312031433120393720343920313435203134352031343500000000000000004d31203143312038392035372e3520313435203134352031343500000000000037330000000000000000000000000000000000000000000000000000000000003139300000000000000000000000000000000000000000000000000000000000323137000000000000000000000000000000000000000000000000000000000033333400000000000000000000000000000000000000000000000000000000003c636972636c652063783d2200000000000000000000000000000000000000007078222063793d220000000000000000000000000000000000000000000000006c652063783d220000000000000000000000000000000000000000000000000070782220723d22347078222066696c6c3d22776869746522202f3e3c6369726322776869746522202f3e0000000000000000000000000000000000000000000070782220723d2232347078222066696c6c3d226e6f6e6522207374726f6b653d70782220723d22347078222066696c6c3d22776869746522202f3e00000000003c67206d61736b3d2275726c280000000000000000000000000000000000000066696c6c3d226e6f6e6522202f3e3c7061746820643d2200000000000000000078222077696474683d22313830707822206865696768743d22313830707822202c313839707829223e3c7265637420783d222d313670782220793d222d3136702922000000000000000000000000000000000000000000000000000000000000207374796c653d227472616e73666f726d3a7472616e736c6174652837327078652d6c696e656361703d22726f756e6422202f3e000000000000000000000000652d77696474683d2233327078222066696c6c3d226e6f6e6522207374726f6b3c2f673e3c67206d61736b3d2275726c2800000000000000000000000000000022207374726f6b653d227267626128302c302c302c302e332922207374726f6b2c313839707829223e00000000000000000000000000000000000000000000006522202f3e00000000000000000000000000000000000000000000000000000022313830707822206865696768743d223138307078222066696c6c3d226e6f6e3c7265637420783d222d313670782220793d222d31367078222077696474683d3c7061746820643d22000000000000000000000000000000000000000000000022202f3e3c2f673e000000000000000000000000000000000000000000000000696c6c3d226e6f6e6522207374726f6b652d6c696e656361703d22726f756e6422207374726f6b653d2272676261283235352c3235352c3235352c31292220662d00000000000000000000000000000000000000000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe17b738000000000000000000000000000000000000000000000000000000000000003700000000000000000000000000000000000000000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffedb0831302e350000000000000000000000000000000000000000000000000000000031342e32350000000000000000000000000000000000000000000000000000003130000000000000000000000000000000000000000000000000000000000000313800000000000000000000000000000000000000000000000000000000000031310000000000000000000000000000000000000000000000000000000000003231000000000000000000000000000000000000000000000000000000000000313300000000000000000000000000000000000000000000000000000000000032330000000000000000000000000000000000000000000000000000000000003135000000000000000000000000000000000000000000000000000000000000323500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000124f83236000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e848323700000000000000000000000000000000000000000000000000000000000032340000000000000000000000000000000000000000000000000000000000003970782c20333834707829223e00000000000000000000000000000000000000203c67207374796c653d227472616e73666f726d3a7472616e736c61746528323c726563742077696474683d22000000000000000000000000000000000000007078222066696c6c3d227267626128302c302c302c302e362922202f3e0000002f747370616e3e000000000000000000000000000000000000000000000000006c6c3d2272676261283235352c3235352c3235352c302e3629223e49443a203c7a653d2231327078222066696c6c3d227768697465223e3c747370616e206669696c793d2227417269616c272c206d6f6e6f73706163652220666f6e742d73693c7465787420783d22313270782220793d22313770782220666f6e742d66616d707822206865696768743d2232367078222072783d22387078222072793d22383970782c20343134707829223e0000000000000000000000000000000000000069636b3a203c2f747370616e3e000000000000000000000000000000000000006c6c3d2272676261283235352c3235352c3235352c302e3629223e4d696e20543970782c20343434707829223e000000000000000000000000000000000000006c6c3d2272676261283235352c3235352c3235352c302e3629223e4d6178205472616e736c6174652832323670782c20343333707829223e00000000000000003237203238222066696c6c3d226e6f6e6522207374726f6b653d2277686974654d38203943382e30303030342032322e393439342031362e32303939203238203c70617468207374726f6b652d6c696e656361703d22726f756e642220643d2274726f6b653d2272676261283235352c3235352c3235352c302e322922202f3e2072783d22387078222072793d22387078222066696c6c3d226e6f6e6522207374653364280000000000000000000000000000000000000000000000000000003c726563742077696474683d223336707822206865696768743d2233367078223c636972636c65207374796c653d227472616e73666f726d3a7472616e736c613c2f746578743e3c2f673e3c67207374796c653d227472616e73666f726d3a7470782c20000000000000000000000000000000000000000000000000000000007078222066696c6c3d227768697465222f3e3c2f673e0000000000000000000070782c2030707829222063783d22307078222063793d223070782220723d22342c3235352c302e322922202f3e000000000000000000000000000000000000004c32322e3339323320364c31342e343334312000000000000000000000000000382031342e343334314c362032322e333900000000000000000000000000000066696c6c3d226e6f6e6522207374726f6b653d2272676261283235352c3235356865696768743d2233367078222072783d22387078222072793d2238707822203670782c20333932707829223e3c726563742077696474683d223336707822203c67207374796c653d227472616e73666f726d3a7472616e736c6174652832322e35363538374c313820312e363037374c31332e373831392031302e32313831617465283670782c367078292220643d224d313220304c31322e3635323220393932334c31322e363532322031342e343334314c31322032344c31312e3334372e333932332031384c31332e373831392031332e373831394c31382032322e333037374c31312e3334373820392e35363538374c313220305a222066696c6c3d384c312e3630373720364c31302e323138312031302e323138314c3620312e36363538372031322e363532324c302031324c392e35363538372031312e3334373c2f673e000000000000000000000000000000000000000000000000000000002220726570656174436f756e743d22696e646566696e697465222f3e3c2f673e302031382031382220746f3d2233363020313820313822206475723d22313073227472616e73666f726d2220747970653d22726f74617465222066726f6d3d223c673e3c70617468207374796c653d227472616e73666f726d3a7472616e736c31312e333437384c32342031324c31342e343334312031322e363532324c323232334c31302e323138312031332e373831394c312e363037372031384c392e353c616e696d6174655472616e73666f726d206174747269627574654e616d653d3c2f7376673e000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000005c00000000000000000000000000000000000000000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff2761800000000000000000000000000000000000000000000000000000000000d89e800000000000000000000000000000000000000000000000000000000000d89e9000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000fffcb933bd6fad37aa2d162d1a59400100000000000000000000000000000000fff97272373d413259a46990580e213a00000000000000000000000000000000fff2e50f5f656932ef12357cf3c7fdcc00000000000000000000000000000000ffe5caca7e10e4e61c3624eaa0941cd000000000000000000000000000000000ffcb9843d60f6159c9db58835c92664400000000000000000000000000000000ff973b41fa98c081472e6896dfb254c000000000000000000000000000000000ff2ea16466c96a3843ec78b326b5286100000000000000000000000000000000fe5dee046a99a2a811c461f1969c305300000000000000000000000000000000fcbe86c7900a88aedcffc83b479aa3a400000000000000000000000000000000f987a7253ac413176f2b074cf7815e5400000000000000000000000000000000f3392b0822b70005940c7a398e4b70f300000000000000000000000000000000e7159475a2c29b7443b29c7fa6e889d900000000000000000000000000000000d097f3bdfd2022b8845ad8f792aa582500000000000000000000000000000000a9f746462d870fdf8a65dc1f90e061e50000000000000000000000000000000070d869a156d2a1b890bb3df62baf32f70000000000000000000000000000000031be135f97d08fd981231505542fcfa60000000000000000000000000000000009aa508b5b7a84e1c677de54f3e99bc9000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000005d6af8dedb81196699c329225ee60400000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000002216e584f5fa1ea926041bedfe98000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000048a170391f7dc42444e8fa20000000000000001000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000fffffffffffffffffffffffffffffffefffffffffffffffffffffffffffffffefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000000000000000003298b075b4b6a5240945790619b37fd4a00000000000000000000000000000000ca62c1d6d2da94902515e41866cdff5200000000000000000000000000000000c0000000000000000000000000000000ffffffffffffffffffffffffffffffff359d3e292d256b6fdaea1be7993200ae00000000000000000000000000000000359d3e292d256b6fdaea1be7993200ad359d3e292d256b6fdaea1be7993200ad800000000000000000000000000000001f514b8ee5362595de309a65c03ce543f7e851e1625ea646b8fe88b81023b92d14c583ada5b529204a2bc830cd9bfea500000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000186a000000000000000000000000000000000ffffffffffffffffffffffffffffffe00000000000000000000000000000c3500000000000000000000000000000000000000000000000000000000000047bf19673df52e37f2410011d10000000000000000000000000000000000000000000fffffffffffffffffffff000000000004b39efa971bf9208008e88000000000000000000000000000000000000000000000000000000000000000000000000009673df52e37f2410011d1000000000007fffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffff80000000000ffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffff25000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000004d494e00000000000000000000000000000000000000000000000000000000004d41580000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000007700000000000000000000000000000000000000000000000000000000000000536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f536166654d6174683a206164646974696f6e206f766572666c6f770000000000536166654d6174683a207375627472616374696f6e206f766572666c6f770000536166654d6174683a206469766973696f6e206279207a65726f000000000000434c202d20000000000000000000000000000000000000000000000000000000202d2000000000000000000000000000000000000000000000000000000000003c3e00000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000706f736974696f6e20696e20612053796e63537761702000000000000000000054686973204e465420726570726573656e74732061206c69717569646974792020706f6f6c2e2000000000000000000000000000000000000000000000000000206f722072656465656d2074686520706f736974696f6e2e5c6e000000000000546865206f776e6572206f662074686973204e46542063616e206d6f646966795c6e506f6f6c20416464726573733a20000000000000000000000000000000005c6e000000000000000000000000000000000000000000000000000000000000484c49000000000000000000000000000000000000000000000000000000000020416464726573733a20000000000000000000000000000000000000000000005c6e5469636b2053706163696e673a20000000000000000000000000000000005c6e546f6b656e2049443a2000000000000000000000000000000000000000005c6e5c6e00000000000000000000000000000000000000000000000000000000746f6b656e2073796d626f6c73206d617920626520696d6974617465642e000073206d617463682074686520657870656374656420746f6b656e732c206173206973204e46542e204d616b65207375726520746f6b656e20616464726573736520697320696d7065726174697665207768656e20617373657373696e67207468e29aa0efb88f20444953434c41494d45523a204475652064696c6967656e6365226e616d65223a22000000000000000000000000000000000000000000000000222c20226465736372697074696f6e223a2200000000000000000000000000007b000000000000000000000000000000000000000000000000000000000000002c2022696d616765223a20220000000000000000000000000000000000000000646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000227d000000000000000000000000000000000000000000000000000000000000646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000000000000000000000000000000000000000000020000000800000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9e58ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec7802000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a70549eaa2e0aacafeff1a4f010c0688b39b1087a75515df39a70449857992f3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.